-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (38 loc) · 907 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
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '4.1.0'
gem 'sass-rails', '~> 4.0.3'
gem 'paperclip', github: 'thoughtbot/paperclip'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'tzinfo-data', platforms: [:mingw, :mswin]
gem 'bootstrap-sass'
gem 'devise'
gem 'pundit'
gem 'simple_form'
gem 'thin'
gem 'impressionist'
gem 'rspec-rails', '2.13.1'
gem 'prawn', '~> 1.3.0'
group :development, :test do
gem 'sqlite3'
end
group :production do
gem 'pg', '0.12.2'
gem 'rails_12factor', '0.0.2'
gem 'heroku', '~> 3.6.0'
end
group :test do
gem 'selenium-webdriver', '2.35.1'
gem 'capybara', '2.1.0'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :mri_21, :rbx]
gem 'quiet_assets'
gem 'rails_layout'
end