Skip to content

Commit 5b54667

Browse files
committedOct 13, 2015
Restructure Gemfile
1 parent 18cbfcf commit 5b54667

File tree

2 files changed

+10
-15
lines changed

2 files changed

+10
-15
lines changed
 

‎Gemfile

+9-14
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ gem 'uglifier', '>= 1.3.0'
1616
gem 'coffee-rails', '~> 4.1.0'
1717
# See https://github.com/rails/execjs#readme for more supported runtimes
1818
# gem 'therubyracer', platforms: :ruby
19-
2019
# Use jquery as the JavaScript library
2120
gem 'jquery-rails'
2221
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
@@ -25,19 +24,10 @@ gem 'turbolinks'
2524
gem 'jbuilder', '~> 2.0'
2625
# bundle exec rake doc:rails generates the API under doc/api.
2726
gem 'sdoc', '~> 0.4.0', group: :doc
28-
# rspec for BDD/TDD
29-
gem 'rspec-rails', '~> 3.3.0'
30-
# Use guard for automated testing
31-
gem 'guard-rspec'
32-
# Automatically reload browser when view files are modified
33-
gem 'guard-livereload'
34-
3527
# Use ActiveModel has_secure_password
3628
# gem 'bcrypt', '~> 3.1.7'
37-
3829
# Use Unicorn as the app server
3930
# gem 'unicorn'
40-
4131
# Use Capistrano for deployment
4232
# gem 'capistrano-rails', group: :development
4333

@@ -48,11 +38,16 @@ group :development, :test do
4838
gem 'web-console', '~> 2.0'
4939
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
5040
gem 'spring'
51-
# Integration testing tool
41+
# Use RSpec for BDD/TDD
42+
gem 'rspec-rails'
43+
# Acceptance testing framework
5244
gem 'capybara'
53-
# Use factorygirl for generating factory data
45+
# Use guard for automated testing
46+
gem 'guard-rspec'
47+
# Automatically reload browser when view files are modified
48+
gem 'guard-livereload'
49+
# Use factorygirl for generating factories
5450
gem 'factory_girl_rails'
55-
# Use faker for faking test data
51+
# Use faker for data population
5652
gem 'faker'
5753
end
58-

‎Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ DEPENDENCIES
242242
jquery-rails
243243
pg
244244
rails (= 4.2.3)
245-
rspec-rails (~> 3.3.0)
245+
rspec-rails
246246
sass-rails (~> 5.0)
247247
sdoc (~> 0.4.0)
248248
spring

0 commit comments

Comments
 (0)
Please sign in to comment.