-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
101 lines (82 loc) · 2.24 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
source 'http://rubygems.org'
gem 'rails', '5.0.7.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
#gem 'pg'
gem 'mysql2', '~> 0.4.4'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass', '~> 3.4.23'
gem 'sass-rails', '~> 5.0.6'
gem 'coffee-rails', '~> 4.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
# Pretty printed test output
gem 'turn', '~> 0.8.3', :require => false
end
gem "therubyracer"
group :development, :test do
gem "create_deployment_record", git: 'https://github.com/IntersectAustralia/create_deployment_record.git'
gem "rspec-rails"
gem "factory_girl_rails"
gem "shoulda-matchers", '2.8'
gem 'xray-rails'
gem 'pry-rails'
# cucumber gems
gem "cucumber"
gem "capybara"
gem "database_cleaner"
gem "spork", '~> 0.9.0.rc'
gem "launchy" # So you can do Then show me the page
gem "minitest" # currently breaks without this
gem "minitest-reporters"
# Gems to allow RubyMine debugging
gem 'debase', '>=0.2.4'
gem 'ruby-debug-ide'
end
group :development do
gem "rails3-generators"
gem 'thin'
gem 'cheat'
end
group :test do
gem "cucumber-rails", require: false
end
#group :production do
gem 'google-analytics-rails'
#end
gem "iconv"
gem "haml"
gem "haml-rails"
gem "tabs_on_rails"
gem 'devise', '~> 4.7.1'
gem "email_spec", :group => :test
gem "cancancan"
gem "simplecov", :require => false, :group => :test
gem "simplecov-rcov", :require => false, :group => :test
gem "bootstrap-sass", '~> 3.4.1'
gem "paperclip", "~> 5.2.0"
gem 'delayed_job', '~> 4.1.2'
gem 'delayed_job_active_record'
gem 'daemons'
gem 'prawn'
gem 'prawn-table'
gem 'decent_exposure'
gem 'will_paginate', '> 3.0'
gem 'will_paginate-bootstrap'
gem 'whenever', require: false
gem 'jekyll', :require => false
gem 'highline' # This has (up until now) been implicitly included by capistrano
gem 'passenger', '~> 5.1.2', :require => false
gem 'rails_request_stats', group: :development