-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
43 lines (38 loc) · 1.72 KB
/
Gemfile
File metadata and controls
43 lines (38 loc) · 1.72 KB
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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5'
gem 'mysql2', '~> 0.4.2'
gem 'sass-rails', '~> 5.0.4' # Use SCSS for stylesheets
gem 'uglifier', '>= 2.7.2' # Use Uglifier as compressor for JavaScript assets
gem 'coffee-rails', '~> 4.1.1' # Use CoffeeScript for .coffee assets and views
gem 'rest-client', '~> 1.8.0'
gem 'haml', '~> 4.0.7'
gem 'foundation-rails', '~> 5.5.3.2'
gem 'jquery-rails', '~> 4.0.5' # Use jquery as the JavaScript library
gem 'turbolinks', '~> 2.5.3' # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'rails_12factor', '~> 0.0.3'
gem 'sdoc', '~> 0.4.1', group: :doc # bundle exec rake doc:rails generates the API under doc/api.
gem 'money-rails', '~> 1.4.1'
group :test, :development do
gem 'dotenv-rails', '~> 2.0.2'
gem 'factory_girl_rails', '~> 4.5.0'
end
group :development do
gem 'better_errors', '~> 2.1.1'
gem 'binding_of_caller', '~> 0.7.2'
gem 'capistrano', '~> 3.4.0'
gem 'capistrano-rails', '~> 1.1.5'
gem 'pry-rails', '~> 0.3.4'
gem 'web-console', '~> 3.0.0' # Access an IRB console on exception pages or by using <%= console %> in views
end
group :test do
gem 'spring', '~> 1.6.1' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'rspec-rails', '~> 3.4.0'
gem 'vcr', '~> 3.0.1'
gem 'webmock', '~> 1.22.3'
gem 'cucumber-rails', '~> 1.4.2', :require => false
gem 'database_cleaner', '~> 1.5.1' # database_cleaner is not required, but highly recommended
gem 'site_prism', '~> 2.8'
gem 'selenium-webdriver', '~> 2.48', '>= 2.48.1'
end
gem 'pg', '~> 0.18.4', group: :production