-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (45 loc) · 980 Bytes
/
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
source 'https://rubygems.org'
ruby '2.1.0'
gem 'rails', '4.1.0'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'devise'
gem 'foundation-rails'
gem 'haml-rails'
gem 'pg'
gem 'pundit'
gem 'simple_form'
gem 'filepicker-rails'
group :development do
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :mri_21, :rbx]
gem 'foreman'
gem 'html2haml'
gem 'quiet_assets'
gem 'rails_layout'
gem 'spring'
gem 'spring-commands-rspec'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'faker'
gem 'pry-rails'
gem 'dotenv-rails'
end
group :production do
gem 'puma'
end
group :test do
gem 'capybara'
gem 'capybara-webkit'
gem 'database_cleaner', '1.0.1'
gem 'email_spec'
gem 'shoulda-matchers', '~> 2.6.1', require: false
end