factory_girl_rails 4.7.0 → 4.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/Appraisals +3 -3
  3. data/Gemfile.lock +5 -5
  4. data/NEWS +9 -0
  5. data/README.md +9 -4
  6. data/bin/stubs/a2h +16 -0
  7. data/bin/stubs/appraisal +17 -0
  8. data/bin/stubs/aruba +16 -0
  9. data/bin/stubs/autospec +17 -0
  10. data/bin/stubs/bcat +16 -0
  11. data/bin/stubs/btee +16 -0
  12. data/bin/stubs/bundler +17 -0
  13. data/bin/stubs/cdiff +16 -0
  14. data/bin/stubs/cucumber +17 -0
  15. data/bin/stubs/decolor +16 -0
  16. data/bin/stubs/erubis +17 -0
  17. data/bin/stubs/htmldiff +17 -0
  18. data/bin/stubs/ldiff +17 -0
  19. data/bin/stubs/nokogiri +16 -0
  20. data/bin/stubs/rackup +17 -0
  21. data/bin/stubs/rails +17 -0
  22. data/bin/stubs/rake +17 -0
  23. data/bin/stubs/rake2thor +16 -0
  24. data/bin/stubs/rdiscount +16 -0
  25. data/bin/stubs/rdoc +16 -0
  26. data/bin/stubs/ri +16 -0
  27. data/bin/stubs/rspec +17 -0
  28. data/bin/stubs/setup +16 -0
  29. data/bin/stubs/sprockets +16 -0
  30. data/bin/stubs/thor +17 -0
  31. data/bin/stubs/tilt +16 -0
  32. data/factory_girl_rails.gemspec +6 -5
  33. data/gemfiles/rails3.2.gemfile.lock +177 -0
  34. data/gemfiles/rails4.1.gemfile.lock +175 -0
  35. data/gemfiles/rails4.2.gemfile.lock +192 -0
  36. data/gemfiles/rails5.0.gemfile +3 -3
  37. data/gemfiles/rails5.0.gemfile.lock +155 -0
  38. data/pkg/factory_girl_rails-4.5.0.gem +0 -0
  39. data/tmp/aruba/testapp/Gemfile +50 -0
  40. data/tmp/aruba/testapp/Gemfile.lock +188 -0
  41. data/tmp/aruba/testapp/README.md +24 -0
  42. data/tmp/aruba/testapp/Rakefile +6 -0
  43. data/tmp/aruba/testapp/app/assets/config/manifest.js +3 -0
  44. data/tmp/aruba/testapp/app/assets/javascripts/application.js +16 -0
  45. data/tmp/aruba/testapp/app/assets/javascripts/cable.js +13 -0
  46. data/tmp/aruba/testapp/app/assets/stylesheets/application.css +15 -0
  47. data/tmp/aruba/testapp/app/channels/application_cable/channel.rb +4 -0
  48. data/tmp/aruba/testapp/app/channels/application_cable/connection.rb +4 -0
  49. data/tmp/aruba/testapp/app/controllers/application_controller.rb +3 -0
  50. data/tmp/aruba/testapp/app/helpers/application_helper.rb +2 -0
  51. data/tmp/aruba/testapp/app/jobs/application_job.rb +2 -0
  52. data/tmp/aruba/testapp/app/mailers/application_mailer.rb +4 -0
  53. data/tmp/aruba/testapp/app/models/application_record.rb +3 -0
  54. data/tmp/aruba/testapp/app/models/user.rb +2 -0
  55. data/tmp/aruba/testapp/app/views/layouts/application.html.erb +14 -0
  56. data/tmp/aruba/testapp/app/views/layouts/mailer.html.erb +13 -0
  57. data/tmp/aruba/testapp/app/views/layouts/mailer.text.erb +1 -0
  58. data/tmp/aruba/testapp/bin/bundle +3 -0
  59. data/tmp/aruba/testapp/bin/rails +9 -0
  60. data/tmp/aruba/testapp/bin/rake +9 -0
  61. data/tmp/aruba/testapp/bin/setup +34 -0
  62. data/tmp/aruba/testapp/bin/spring +16 -0
  63. data/tmp/aruba/testapp/bin/update +29 -0
  64. data/tmp/aruba/testapp/config.ru +5 -0
  65. data/tmp/aruba/testapp/config/application.rb +16 -0
  66. data/tmp/aruba/testapp/config/boot.rb +3 -0
  67. data/tmp/aruba/testapp/config/cable.yml +9 -0
  68. data/tmp/aruba/testapp/config/database.yml +25 -0
  69. data/tmp/aruba/testapp/config/environment.rb +5 -0
  70. data/tmp/aruba/testapp/config/environments/development.rb +54 -0
  71. data/tmp/aruba/testapp/config/environments/production.rb +86 -0
  72. data/tmp/aruba/testapp/config/environments/test.rb +42 -0
  73. data/tmp/aruba/testapp/config/initializers/application_controller_renderer.rb +6 -0
  74. data/tmp/aruba/testapp/config/initializers/assets.rb +11 -0
  75. data/tmp/aruba/testapp/config/initializers/backtrace_silencers.rb +7 -0
  76. data/tmp/aruba/testapp/config/initializers/cookies_serializer.rb +5 -0
  77. data/tmp/aruba/testapp/config/initializers/filter_parameter_logging.rb +4 -0
  78. data/tmp/aruba/testapp/config/initializers/inflections.rb +16 -0
  79. data/tmp/aruba/testapp/config/initializers/mime_types.rb +4 -0
  80. data/tmp/aruba/testapp/config/initializers/new_framework_defaults.rb +24 -0
  81. data/tmp/aruba/testapp/config/initializers/session_store.rb +3 -0
  82. data/tmp/aruba/testapp/config/initializers/wrap_parameters.rb +14 -0
  83. data/tmp/aruba/testapp/config/locales/en.yml +23 -0
  84. data/tmp/aruba/testapp/config/puma.rb +47 -0
  85. data/tmp/aruba/testapp/config/routes.rb +3 -0
  86. data/tmp/aruba/testapp/config/secrets.yml +22 -0
  87. data/tmp/aruba/testapp/config/spring.rb +6 -0
  88. data/tmp/aruba/testapp/db/development.sqlite3 +0 -0
  89. data/tmp/aruba/testapp/db/migrate/1_create_users.rb +7 -0
  90. data/tmp/aruba/testapp/db/schema.rb +19 -0
  91. data/tmp/aruba/testapp/db/seeds.rb +7 -0
  92. data/tmp/aruba/testapp/db/test.sqlite3 +0 -0
  93. data/tmp/aruba/testapp/lib/some_railtie/factories.rb +5 -0
  94. data/tmp/aruba/testapp/lib/some_railtie/railties.rb +8 -0
  95. data/tmp/aruba/testapp/log/development.log +16 -0
  96. data/tmp/aruba/testapp/log/test.log +21 -0
  97. data/tmp/aruba/testapp/public/404.html +67 -0
  98. data/tmp/aruba/testapp/public/422.html +67 -0
  99. data/tmp/aruba/testapp/public/500.html +66 -0
  100. data/tmp/aruba/testapp/public/apple-touch-icon-precomposed.png +0 -0
  101. data/tmp/aruba/testapp/public/apple-touch-icon.png +0 -0
  102. data/tmp/aruba/testapp/public/favicon.ico +0 -0
  103. data/tmp/aruba/testapp/public/robots.txt +5 -0
  104. data/tmp/aruba/testapp/test/test_helper.rb +10 -0
  105. data/tmp/aruba/testapp/test/unit/user_test.rb +8 -0
  106. metadata +105 -9
  107. data/.gitignore +0 -9
  108. data/.travis.yml +0 -30
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rdoc' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rdoc', 'rdoc')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'ri' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rdoc', 'ri')
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'rspec' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("rspec-core", "rspec")
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'setup' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('factory_girl_rails', 'setup')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'sprockets' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('sprockets', 'sprockets')
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'thor' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("thor", "thor")
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'tilt' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('tilt', 'tilt')
@@ -1,19 +1,20 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{factory_girl_rails}
3
- s.version = '4.7.0'
3
+ s.version = '4.8.0'
4
4
  s.authors = ["Joe Ferris"]
5
5
  s.email = %q{jferris@thoughtbot.com}
6
6
  s.homepage = "http://github.com/thoughtbot/factory_girl_rails"
7
7
  s.summary = %q{factory_girl_rails provides integration between
8
- factory_girl and rails 3}
8
+ factory_girl and rails 3 or newer}
9
9
  s.description = %q{factory_girl_rails provides integration between
10
- factory_girl and rails 3 (currently just automatic factory definition
10
+ factory_girl and rails 3 or newer (currently just automatic factory definition
11
11
  loading)}
12
12
 
13
- s.files = `git ls-files`.split("\n")
13
+ s.files = Dir['**/*'].keep_if { |file| File.file?(file) }
14
14
  s.require_paths = ["lib"]
15
+ s.executables = []
15
16
  s.license = "MIT"
16
17
 
17
18
  s.add_runtime_dependency('railties', '>= 3.0.0')
18
- s.add_runtime_dependency('factory_girl', '~> 4.7.0')
19
+ s.add_runtime_dependency('factory_girl', '~> 4.8.0')
19
20
  end
@@ -0,0 +1,177 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_girl_rails (4.8.0)
5
+ factory_girl (~> 4.8.0)
6
+ railties (>= 3.0.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (3.2.22.2)
12
+ actionpack (= 3.2.22.2)
13
+ mail (~> 2.5.4)
14
+ actionpack (3.2.22.2)
15
+ activemodel (= 3.2.22.2)
16
+ activesupport (= 3.2.22.2)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ journey (~> 1.0.4)
20
+ rack (~> 1.4.5)
21
+ rack-cache (~> 1.2)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.2.1)
24
+ activemodel (3.2.22.2)
25
+ activesupport (= 3.2.22.2)
26
+ builder (~> 3.0.0)
27
+ activerecord (3.2.22.2)
28
+ activemodel (= 3.2.22.2)
29
+ activesupport (= 3.2.22.2)
30
+ arel (~> 3.0.2)
31
+ tzinfo (~> 0.3.29)
32
+ activeresource (3.2.22.2)
33
+ activemodel (= 3.2.22.2)
34
+ activesupport (= 3.2.22.2)
35
+ activesupport (3.2.22.2)
36
+ i18n (~> 0.6, >= 0.6.4)
37
+ multi_json (~> 1.0)
38
+ appraisal (2.1.0)
39
+ bundler
40
+ rake
41
+ thor (>= 0.14.0)
42
+ arel (3.0.3)
43
+ aruba (0.14.1)
44
+ childprocess (~> 0.5.6)
45
+ contracts (~> 0.9)
46
+ cucumber (>= 1.3.19)
47
+ ffi (~> 1.9.10)
48
+ rspec-expectations (>= 2.99)
49
+ thor (~> 0.19)
50
+ builder (3.0.4)
51
+ childprocess (0.5.9)
52
+ ffi (~> 1.0, >= 1.0.11)
53
+ coffee-rails (3.2.2)
54
+ coffee-script (>= 2.2.0)
55
+ railties (~> 3.2.0)
56
+ coffee-script (2.4.1)
57
+ coffee-script-source
58
+ execjs
59
+ coffee-script-source (1.10.0)
60
+ contracts (0.14.0)
61
+ cucumber (1.3.19)
62
+ builder (>= 2.1.2)
63
+ diff-lcs (>= 1.1.3)
64
+ gherkin (~> 2.12)
65
+ multi_json (>= 1.7.5, < 2.0)
66
+ multi_test (>= 0.1.2)
67
+ diff-lcs (1.2.5)
68
+ erubis (2.7.0)
69
+ execjs (2.7.0)
70
+ factory_girl (4.8.0)
71
+ activesupport (>= 3.0.0)
72
+ ffi (1.9.10)
73
+ gherkin (2.12.2)
74
+ multi_json (~> 1.3)
75
+ hike (1.2.3)
76
+ i18n (0.7.0)
77
+ journey (1.0.4)
78
+ jquery-rails (3.1.4)
79
+ railties (>= 3.0, < 5.0)
80
+ thor (>= 0.14, < 2.0)
81
+ json (1.8.3)
82
+ mail (2.5.4)
83
+ mime-types (~> 1.16)
84
+ treetop (~> 1.4.8)
85
+ mime-types (1.25.1)
86
+ multi_json (1.12.1)
87
+ multi_test (0.1.2)
88
+ polyglot (0.3.5)
89
+ power_assert (0.2.7)
90
+ rack (1.4.7)
91
+ rack-cache (1.6.1)
92
+ rack (>= 0.4)
93
+ rack-ssl (1.3.4)
94
+ rack
95
+ rack-test (0.6.3)
96
+ rack (>= 1.0)
97
+ rails (3.2.22.2)
98
+ actionmailer (= 3.2.22.2)
99
+ actionpack (= 3.2.22.2)
100
+ activerecord (= 3.2.22.2)
101
+ activeresource (= 3.2.22.2)
102
+ activesupport (= 3.2.22.2)
103
+ bundler (~> 1.0)
104
+ railties (= 3.2.22.2)
105
+ railties (3.2.22.2)
106
+ actionpack (= 3.2.22.2)
107
+ activesupport (= 3.2.22.2)
108
+ rack-ssl (~> 1.3.2)
109
+ rake (>= 0.8.7)
110
+ rdoc (~> 3.4)
111
+ thor (>= 0.14.6, < 2.0)
112
+ rake (11.2.2)
113
+ rdoc (3.12.2)
114
+ json (~> 1.4)
115
+ rspec-core (3.4.4)
116
+ rspec-support (~> 3.4.0)
117
+ rspec-expectations (3.4.0)
118
+ diff-lcs (>= 1.2.0, < 2.0)
119
+ rspec-support (~> 3.4.0)
120
+ rspec-mocks (3.4.1)
121
+ diff-lcs (>= 1.2.0, < 2.0)
122
+ rspec-support (~> 3.4.0)
123
+ rspec-rails (3.4.2)
124
+ actionpack (>= 3.0, < 4.3)
125
+ activesupport (>= 3.0, < 4.3)
126
+ railties (>= 3.0, < 4.3)
127
+ rspec-core (~> 3.4.0)
128
+ rspec-expectations (~> 3.4.0)
129
+ rspec-mocks (~> 3.4.0)
130
+ rspec-support (~> 3.4.0)
131
+ rspec-support (3.4.1)
132
+ sass (3.4.22)
133
+ sass-rails (3.2.6)
134
+ railties (~> 3.2.0)
135
+ sass (>= 3.1.10)
136
+ tilt (~> 1.3)
137
+ sprockets (2.2.3)
138
+ hike (~> 1.2)
139
+ multi_json (~> 1.0)
140
+ rack (~> 1.0)
141
+ tilt (~> 1.1, != 1.3.0)
142
+ sqlite3 (1.3.11)
143
+ test-unit (3.1.8)
144
+ power_assert
145
+ thor (0.19.1)
146
+ tilt (1.4.1)
147
+ treetop (1.4.15)
148
+ polyglot
149
+ polyglot (>= 0.3.1)
150
+ tzinfo (0.3.48)
151
+ uglifier (3.0.0)
152
+ execjs (>= 0.3.0, < 3)
153
+
154
+ PLATFORMS
155
+ ruby
156
+
157
+ DEPENDENCIES
158
+ activerecord-jdbcsqlite3-adapter
159
+ appraisal
160
+ aruba
161
+ coffee-rails
162
+ cucumber (= 1.3.19)
163
+ factory_girl_rails!
164
+ jdbc-sqlite3
165
+ jquery-rails
166
+ jruby-openssl
167
+ rails (~> 3.2.21)
168
+ rake
169
+ rspec-rails
170
+ sass-rails
171
+ sqlite3
172
+ test-unit
173
+ therubyrhino
174
+ uglifier
175
+
176
+ BUNDLED WITH
177
+ 1.13.6
@@ -0,0 +1,175 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_girl_rails (4.8.0)
5
+ factory_girl (~> 4.8.0)
6
+ railties (>= 3.0.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.1.15)
12
+ actionpack (= 4.1.15)
13
+ actionview (= 4.1.15)
14
+ mail (~> 2.5, >= 2.5.4)
15
+ actionpack (4.1.15)
16
+ actionview (= 4.1.15)
17
+ activesupport (= 4.1.15)
18
+ rack (~> 1.5.2)
19
+ rack-test (~> 0.6.2)
20
+ actionview (4.1.15)
21
+ activesupport (= 4.1.15)
22
+ builder (~> 3.1)
23
+ erubis (~> 2.7.0)
24
+ activemodel (4.1.15)
25
+ activesupport (= 4.1.15)
26
+ builder (~> 3.1)
27
+ activerecord (4.1.15)
28
+ activemodel (= 4.1.15)
29
+ activesupport (= 4.1.15)
30
+ arel (~> 5.0.0)
31
+ activesupport (4.1.15)
32
+ i18n (~> 0.6, >= 0.6.9)
33
+ json (~> 1.7, >= 1.7.7)
34
+ minitest (~> 5.1)
35
+ thread_safe (~> 0.1)
36
+ tzinfo (~> 1.1)
37
+ appraisal (2.1.0)
38
+ bundler
39
+ rake
40
+ thor (>= 0.14.0)
41
+ arel (5.0.1.20140414130214)
42
+ aruba (0.14.1)
43
+ childprocess (~> 0.5.6)
44
+ contracts (~> 0.9)
45
+ cucumber (>= 1.3.19)
46
+ ffi (~> 1.9.10)
47
+ rspec-expectations (>= 2.99)
48
+ thor (~> 0.19)
49
+ builder (3.2.2)
50
+ childprocess (0.5.9)
51
+ ffi (~> 1.0, >= 1.0.11)
52
+ coffee-rails (4.1.1)
53
+ coffee-script (>= 2.2.0)
54
+ railties (>= 4.0.0, < 5.1.x)
55
+ coffee-script (2.4.1)
56
+ coffee-script-source
57
+ execjs
58
+ coffee-script-source (1.10.0)
59
+ concurrent-ruby (1.0.2)
60
+ contracts (0.14.0)
61
+ cucumber (1.3.19)
62
+ builder (>= 2.1.2)
63
+ diff-lcs (>= 1.1.3)
64
+ gherkin (~> 2.12)
65
+ multi_json (>= 1.7.5, < 2.0)
66
+ multi_test (>= 0.1.2)
67
+ diff-lcs (1.2.5)
68
+ erubis (2.7.0)
69
+ execjs (2.7.0)
70
+ factory_girl (4.8.0)
71
+ activesupport (>= 3.0.0)
72
+ ffi (1.9.10)
73
+ gherkin (2.12.2)
74
+ multi_json (~> 1.3)
75
+ i18n (0.7.0)
76
+ jquery-rails (3.1.4)
77
+ railties (>= 3.0, < 5.0)
78
+ thor (>= 0.14, < 2.0)
79
+ json (1.8.3)
80
+ mail (2.6.4)
81
+ mime-types (>= 1.16, < 4)
82
+ mime-types (3.1)
83
+ mime-types-data (~> 3.2015)
84
+ mime-types-data (3.2016.0521)
85
+ minitest (5.9.0)
86
+ multi_json (1.12.1)
87
+ multi_test (0.1.2)
88
+ power_assert (0.2.7)
89
+ rack (1.5.5)
90
+ rack-test (0.6.3)
91
+ rack (>= 1.0)
92
+ rails (4.1.15)
93
+ actionmailer (= 4.1.15)
94
+ actionpack (= 4.1.15)
95
+ actionview (= 4.1.15)
96
+ activemodel (= 4.1.15)
97
+ activerecord (= 4.1.15)
98
+ activesupport (= 4.1.15)
99
+ bundler (>= 1.3.0, < 2.0)
100
+ railties (= 4.1.15)
101
+ sprockets-rails (~> 2.0)
102
+ railties (4.1.15)
103
+ actionpack (= 4.1.15)
104
+ activesupport (= 4.1.15)
105
+ rake (>= 0.8.7)
106
+ thor (>= 0.18.1, < 2.0)
107
+ rake (11.2.2)
108
+ rspec-core (3.4.4)
109
+ rspec-support (~> 3.4.0)
110
+ rspec-expectations (3.4.0)
111
+ diff-lcs (>= 1.2.0, < 2.0)
112
+ rspec-support (~> 3.4.0)
113
+ rspec-mocks (3.4.1)
114
+ diff-lcs (>= 1.2.0, < 2.0)
115
+ rspec-support (~> 3.4.0)
116
+ rspec-rails (3.4.2)
117
+ actionpack (>= 3.0, < 4.3)
118
+ activesupport (>= 3.0, < 4.3)
119
+ railties (>= 3.0, < 4.3)
120
+ rspec-core (~> 3.4.0)
121
+ rspec-expectations (~> 3.4.0)
122
+ rspec-mocks (~> 3.4.0)
123
+ rspec-support (~> 3.4.0)
124
+ rspec-support (3.4.1)
125
+ sass (3.4.22)
126
+ sass-rails (5.0.4)
127
+ railties (>= 4.0.0, < 5.0)
128
+ sass (~> 3.1)
129
+ sprockets (>= 2.8, < 4.0)
130
+ sprockets-rails (>= 2.0, < 4.0)
131
+ tilt (>= 1.1, < 3)
132
+ spring (1.7.1)
133
+ sprockets (3.6.2)
134
+ concurrent-ruby (~> 1.0)
135
+ rack (> 1, < 3)
136
+ sprockets-rails (2.3.3)
137
+ actionpack (>= 3.0)
138
+ activesupport (>= 3.0)
139
+ sprockets (>= 2.8, < 4.0)
140
+ sqlite3 (1.3.11)
141
+ test-unit (3.1.8)
142
+ power_assert
143
+ thor (0.19.1)
144
+ thread_safe (0.3.5)
145
+ tilt (2.0.5)
146
+ tzinfo (1.2.2)
147
+ thread_safe (~> 0.1)
148
+ uglifier (3.0.0)
149
+ execjs (>= 0.3.0, < 3)
150
+
151
+ PLATFORMS
152
+ ruby
153
+
154
+ DEPENDENCIES
155
+ activerecord-jdbcsqlite3-adapter
156
+ appraisal
157
+ aruba
158
+ coffee-rails
159
+ cucumber (= 1.3.19)
160
+ factory_girl_rails!
161
+ jdbc-sqlite3
162
+ jquery-rails
163
+ jruby-openssl
164
+ rails (~> 4.1.9)
165
+ rake
166
+ rspec-rails
167
+ sass-rails
168
+ spring
169
+ sqlite3
170
+ test-unit
171
+ therubyrhino
172
+ uglifier
173
+
174
+ BUNDLED WITH
175
+ 1.13.6