@@ -16,7 +16,6 @@ gem 'uglifier', '>= 1.3.0'
16
16
gem 'coffee-rails' , '~> 4.1.0'
17
17
# See https://github.com/rails/execjs#readme for more supported runtimes
18
18
# gem 'therubyracer', platforms: :ruby
19
-
20
19
# Use jquery as the JavaScript library
21
20
gem 'jquery-rails'
22
21
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
@@ -25,19 +24,10 @@ gem 'turbolinks'
25
24
gem 'jbuilder' , '~> 2.0'
26
25
# bundle exec rake doc:rails generates the API under doc/api.
27
26
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
-
35
27
# Use ActiveModel has_secure_password
36
28
# gem 'bcrypt', '~> 3.1.7'
37
-
38
29
# Use Unicorn as the app server
39
30
# gem 'unicorn'
40
-
41
31
# Use Capistrano for deployment
42
32
# gem 'capistrano-rails', group: :development
43
33
@@ -48,11 +38,16 @@ group :development, :test do
48
38
gem 'web-console' , '~> 2.0'
49
39
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
50
40
gem 'spring'
51
- # Integration testing tool
41
+ # Use RSpec for BDD/TDD
42
+ gem 'rspec-rails'
43
+ # Acceptance testing framework
52
44
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
54
50
gem 'factory_girl_rails'
55
- # Use faker for faking test data
51
+ # Use faker for data population
56
52
gem 'faker'
57
53
end
58
-
0 commit comments