1source 'https://rubygems.org' |
|
3# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' |
|
4gem 'rails', '4.2.5' |
|
5# Use sqlite3 as the database for Active Record |
|
6gem 'sqlite3' |
|
7# Use SCSS for stylesheets |
|
8gem 'sass-rails', '~> 5.0' |
|
9# Use Uglifier as compressor for JavaScript assets |
|
10gem 'uglifier', '>= 1.3.0' |
|
11# Use CoffeeScript for .coffee assets and views |
|
12gem 'coffee-rails', '~> 4.1.0' |
|
13# See https://github.com/rails/execjs#readme for more supported runtimes |
|
14gem 'therubyracer', platforms: :ruby |
|
16# Use jquery as the JavaScript library |
|
17gem 'jquery-rails' |
|
18# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks |
|
19gem 'turbolinks' |
|
20# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder |
|
21gem 'jbuilder', '~> 2.0' |
|
22# bundle exec rake doc:rails generates the API under doc/api. |
|
23gem 'sdoc', '~> 0.4.0', group: :doc |
|
25# Use ActiveModel has_secure_password |
|
26gem 'bcrypt', '~> 3.1.7' |
|
28# Use Unicorn as the app server |
|
29# gem 'unicorn' |
|
31# Use Capistrano for deployment |
|
32# gem 'capistrano-rails', group: :development |
|
34group :development, :test do |
|
35 # Call 'byebug' anywhere in the code to stop execution and get a debugger console |
|
36 gem 'byebug' |
|
|
|
38 # RSpec |
|
39 gem 'rspec-rails', '~> 3.5.2' |
|
40 # Rails |
|
41 gem 'factory_girl_rails','~> 4.7.0' |
|
43 # metrics |
|
44 gem 'simplecov' |
|
45 gem 'simplecov-rcov-text' |
|
46 gem 'metric_fu' |
|
47end |
|
49group :development do |
|
50 # Access an IRB console on exception pages or by using <%= console %> in views |
|
51 gem 'web-console', '~> 2.0' |
|
53 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring |
|
54 gem 'spring' |
|
55end |
|
57group :test do |
|
58 # |
|
59 gem 'database_cleaner' |
|
60 #Email |
|
61 gem 'faker' |
|
62 # |
|
63 gem 'capybara' |
|
64 #,, |
|
65 gem 'launchy' |
|
66 # Capybara JavaScript |
|
67 gem 'selenium-webdriver' |
|
68end |