-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
58 lines (51 loc) · 1.34 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
source 'https://rubygems.org'
# Gems rails wants automatically
gem 'rails', '4.0.13'
gem 'sqlite3'
gem 'sass'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '2.5.0'
gem 'coffee-rails', '4.0.1'
gem 'jquery-rails', '3.1.0'
# gem 'turbolinks', '2.2.1'
gem 'jbuilder', '1.5.3'
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.5'
# Other gems used by the project
gem 'will_paginate', '3.0.7'
gem 'chronic', '0.10.2'
gem 'simple_form', '3.1.0'
gem 'nested_form', '0.3.2'
gem 'cancancan', '1.9.2'
gem 'validates_timeliness', '3.0.14'
gem 'carrierwave', '0.10.0'
gem 'time_date_helpers', '0.0.2'
# Additional gems that are very useful in Rails development
group :development do
gem 'quiet_assets', '1.1.0'
gem 'thin', '1.6.3'
gem 'better_errors', '2.0.0'
gem 'binding_of_caller', '0.7.2'
gem 'meta_request', '0.3.4'
gem 'wirble', '0.1.3'
gem 'hirb', '0.7.2'
gem 'faker', '1.4.3'
end
# Gems used only in testing
group :test do
gem 'shoulda', '3.5.0'
gem 'shoulda-matchers', '2.7.0'
gem 'factory_girl_rails', '4.5.0'
gem 'mocha', '1.1.0', require: false
gem 'simplecov', '0.9.1'
gem 'turn', '0.9.7'
gem 'single_test', '0.6.0'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'launchy'
gem 'capybara'
end