-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
82 lines (59 loc) · 1.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
source 'https://rubygems.org'
ruby "2.1.3"
gem 'rails', '4.0.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg', '0.17.0'
group :test do
gem 'selenium-webdriver', "2.40.0"
gem 'capybara', '2.1.0'
gem 'launchy', '2.4.2'
gem "database_cleaner", "1.2.0"
gem 'factory_girl_rails', '4.4.0'
gem 'shoulda', '3.5.0'
gem "chromedriver-helper", "0.0.6" #download chrome driver for selenium (test browsers calls in chrome instead of firefox)
#gem 'guard-rspec', '2.5.0'
end
group :development, :test do
gem 'rspec-rails', '2.14.1'
#gem 'spork-rails', '4.0.0'
gem "pry", "0.9.12.6"
gem "pry-nav", "0.2.3"
gem 'faker', '1.4.3'
end
# use unicorn for production and ubuntu
gem 'unicorn', '4.8.2'
# use thin for windows
#gem 'thin', '1.5.1'
gem 'execjs', '2.0.2'
gem 'therubyracer', :platform => 'ruby'
#gem 'therubyracer', '~> 0.10.2' #update to 0.11 crashes install
gem 'devise','3.2.3'
gem 'activeadmin', github: 'activeadmin'
gem 'sass-rails', '4.0.1'
gem 'sass','3.2.13'
gem 'sprockets', '2.11.0'
gem 'coffee-rails', '4.0.1'
gem 'uglifier', '2.1.1'
gem 'jquery-rails', '2.3.0'
gem 'nokogiri', '1.6.3'
gem 'figaro', '0.7.0' # used to conceal pw's and things. use rake figaro:heroku to push pw to heroku
gem 'rails_12factor', '0.0.2', group: :production
# used to upload images
gem 'paperclip', '4.1.1'
# Used by paperclip to store onto AWS S3
gem "aws-sdk", "1.38.0"
# Paginate for blog. Switched to Kaminari because of conflicts with ActiveAdmin. The fix to use will_paginate with Active Admin is here...http://activeadmin.info/docs/0-installation.html
#gem "will_paginate", "3.0.7"
gem "kaminari", "0.16.1"
# to get heroku db:push to work need taps
# gem 'sqlite3'
# gem 'taps'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'