-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
54 lines (40 loc) · 1.04 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
source 'https://rubygems.org'
gem 'rails', '4.1.0'
group :development do
gem 'sqlite3'
gem 'better_errors'
gem 'binding_of_caller'
gem 'capistrano', '~> 3.1.0'
gem 'capistrano-rails', '~> 1.1.0'
gem 'byebug'
end
gem "spring", group: [:development, :test]
group :test do
gem "rspec-rails"
gem "spring-commands-rspec"
gem "guard-rspec"
end
gem 'pg', group: :production
# Use sass, coffee and haml for simpler code
gem 'sass-rails', '~> 4.0.2'
gem 'haml'
gem 'haml-rails'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-datatables-rails', '~> 3.1.1'
gem 'jquery-rails', '>= 3.0.0'
gem 'jquery-ui-rails', '5.0.0'
gem "therubyracer"
gem "carrierwave"
# use yui and uglifier for asset compression
gem 'yui-compressor'
gem 'uglifier', '>= 1.3.0'
# timezone data
gem 'tzinfo-data'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
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', '~> 3.1.7'