-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
139 lines (98 loc) · 3.48 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.0'
# Use postgresql as the database for Active Record
gem 'pg'
group :development, :test do
# Use RSpec for testing
gem 'rspec-rails', '~> 3.1'
# Use Guard to run tests automatically
gem 'guard-rspec', '~> 4.0'
gem 'rb-readline', require: 'readline' # Use rb-readline to deal with locked string errors in guard (using zeus), require is for rails console to work properly
gem 'guard-rails' # For auto restarting the server
# Use Rack-Insight for debugging
#gem 'rack-insight', '0.5.27'
# Use spring as application preloader
gem 'spring'
gem "spring-commands-rspec" # Spring commands for rpsec
end
group :test do
gem 'selenium-webdriver', '~> 2.35'
gem 'capybara', '~> 2.1'
# Use database_cleaner to clean database during javascript tests
gem 'database_cleaner', '~> 1.2'
# Use launchy to auto open capybara pages for debugging
gem 'launchy'
# Gems needed for Guard on various platforms
# Uncomment/Comment out the lines for the gem(s) as needed
# OSX
# gem 'growl', '~> 1.0'
# Linux
gem 'libnotify', '~> 0.8'
# Windows
# gem 'rb-notifu', '~> 0.0'
# gem 'win32console', '~> 1.3'
# Use FactoryGirl for generating data for testing
gem 'factory_girl_rails', '~> 4.2'
end
group :development do
# Setup basic application layout
gem 'rails_layout'
# More detailed errors
gem 'better_errors'
gem 'binding_of_caller' # For interactive console in page when errors occur
gem 'annotate'
end
# Use pry as rails console
gem 'pry-rails'
# Use Foundation as front-end framework
gem 'foundation-rails', '~> 5.3'
gem 'foundation_rails_helper', github: 'benedictleejh/foundation_rails_helper' # Form styling in Foundation
gem 'foundation-icons-sass-rails' # Foundation Icons font
# Use Slim (http://slim-lang.com) as the rendering engine
# slim-rails is used for automatic view generation
gem 'slim-rails', '~> 3.0'
# Use kaminari for paging
gem 'kaminari', '~> 0.15'
# Fix dependency resolution errors between sprockets-rails and slim
gem 'tilt', '1.4.1'
# Use Ancestry for modelling tree data
gem 'ancestry', github: 'stefankroes/ancestry'
# Use d3-rails for data visualisation (tree)
gem 'd3-rails', '~> 3.3'
# Use ckeditor for rich text editing
gem 'ckeditor', '~> 4.0'
# Use gon to get rails variables in JS
gem 'gon', '~> 5.0'
# Use JsRoutes for named routes in JS
gem 'js-routes', '~> 1.0'
# Use PluggableJs to execute per page JS
gem "pluggable_js", "~> 2.0"
# Use browser to detect browser version
gem 'browser', '~> 0.2'
# Use devise for authentication
gem 'devise', '~> 3.1'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]