-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
59 lines (52 loc) · 1.29 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
source 'https://rubygems.org'
source 'https://rails-assets.org'
ruby '2.1.2'
gem 'rails', '4.1.4'
gem 'pg'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'spring', group: :development
# gem 'bcrypt', '~> 3.1.7'
gem 'unicorn'
gem 'dragonfly', '~> 1.0.5'
gem 'rails_12factor', group: :production
gem 'devise'
gem 'simple_form'
gem 'slim', '~> 2.0.3'
gem 'cocoon'
gem 'oembedr'
gem 'acts-as-taggable-on'
gem 'dragonfly-dropbox_data_store'
gem 'prawn', '~> 1.2.1'
gem 'prawn-table', '~> 0.1.0'
#CSV import gems
gem 'roo'
gem 'smarter_csv'
gem 'active_importer'
gem 'font-awesome-sass'
gem 'google_drive'
gem 'pry-byebug' , group: :development
gem 'bourbon'
gem 'neat'
gem 'bitters'
gem 'rspec-rails', '~> 3.0.1', group: [:development, :test]
gem 'authority'
gem 'faker'
gem 'annotate', '~> 2.6.5'
gem 'owlcarousel-rails'
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'guard', '~> 2.6.1'
gem 'guard-rspec'
end
# Guard with Mac OSX notifications, you can remove this gem if you don't use it.
gem 'terminal-notifier-guard', group: :development
gem 'pry-rails', group: :development