factory_girl_rails 4.4.0 → 4.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +4 -4
  2. data/Appraisals +18 -22
  3. data/CONTRIBUTING.md +27 -26
  4. data/Gemfile +18 -1
  5. data/Gemfile.lock +144 -0
  6. data/NEWS +15 -0
  7. data/README.md +51 -38
  8. data/bin/setup +16 -0
  9. data/bin/stubs/a2h +16 -0
  10. data/bin/stubs/appraisal +17 -0
  11. data/bin/stubs/aruba +16 -0
  12. data/bin/stubs/autospec +17 -0
  13. data/bin/stubs/bcat +16 -0
  14. data/bin/stubs/btee +16 -0
  15. data/bin/stubs/bundler +17 -0
  16. data/bin/stubs/cdiff +16 -0
  17. data/bin/stubs/cucumber +17 -0
  18. data/bin/stubs/decolor +16 -0
  19. data/bin/stubs/erubis +17 -0
  20. data/bin/stubs/htmldiff +17 -0
  21. data/bin/stubs/ldiff +17 -0
  22. data/bin/stubs/nokogiri +16 -0
  23. data/bin/stubs/rackup +17 -0
  24. data/bin/stubs/rails +17 -0
  25. data/bin/stubs/rake +17 -0
  26. data/bin/stubs/rake2thor +16 -0
  27. data/bin/stubs/rdiscount +16 -0
  28. data/bin/stubs/rdoc +16 -0
  29. data/bin/stubs/ri +16 -0
  30. data/bin/stubs/rspec +17 -0
  31. data/bin/stubs/setup +16 -0
  32. data/bin/stubs/sprockets +16 -0
  33. data/bin/stubs/thor +17 -0
  34. data/bin/stubs/tilt +16 -0
  35. data/factory_girl_rails.gemspec +6 -13
  36. data/features/fixture_replacement_config.feature +51 -11
  37. data/features/generators.feature +40 -14
  38. data/features/load_definitions.feature +8 -8
  39. data/features/step_definitions/appraisal.rb +1 -1
  40. data/features/step_definitions/rails_steps.rb +5 -23
  41. data/features/support/env.rb +2 -2
  42. data/gemfiles/rails3.2.gemfile +14 -8
  43. data/gemfiles/rails3.2.gemfile.lock +117 -100
  44. data/gemfiles/rails4.1.gemfile +23 -0
  45. data/gemfiles/rails4.1.gemfile.lock +183 -0
  46. data/gemfiles/rails4.2.gemfile +21 -0
  47. data/gemfiles/rails4.2.gemfile.lock +193 -0
  48. data/gemfiles/rails5.0.gemfile +22 -0
  49. data/gemfiles/rails5.0.gemfile.lock +156 -0
  50. data/lib/factory_girl_rails/generators/rspec_generator.rb +1 -1
  51. data/lib/factory_girl_rails/railtie.rb +4 -0
  52. data/lib/generators/factory_girl/model/model_generator.rb +77 -9
  53. data/lib/generators/factory_girl.rb +1 -1
  54. data/pkg/factory_girl_rails-4.5.0.gem +0 -0
  55. data/tmp/aruba/testapp/Gemfile +55 -0
  56. data/tmp/aruba/testapp/Gemfile.lock +195 -0
  57. data/tmp/aruba/testapp/README.md +24 -0
  58. data/tmp/aruba/testapp/Rakefile +6 -0
  59. data/tmp/aruba/testapp/app/assets/config/manifest.js +3 -0
  60. data/tmp/aruba/testapp/app/assets/javascripts/application.js +16 -0
  61. data/tmp/aruba/testapp/app/assets/javascripts/cable.js +13 -0
  62. data/tmp/aruba/testapp/app/assets/stylesheets/application.css +15 -0
  63. data/tmp/aruba/testapp/app/channels/application_cable/channel.rb +4 -0
  64. data/tmp/aruba/testapp/app/channels/application_cable/connection.rb +4 -0
  65. data/tmp/aruba/testapp/app/controllers/application_controller.rb +3 -0
  66. data/tmp/aruba/testapp/app/helpers/application_helper.rb +2 -0
  67. data/tmp/aruba/testapp/app/jobs/application_job.rb +2 -0
  68. data/tmp/aruba/testapp/app/mailers/application_mailer.rb +4 -0
  69. data/tmp/aruba/testapp/app/models/application_record.rb +3 -0
  70. data/tmp/aruba/testapp/app/models/user.rb +2 -0
  71. data/tmp/aruba/testapp/app/views/layouts/application.html.erb +14 -0
  72. data/tmp/aruba/testapp/app/views/layouts/mailer.html.erb +13 -0
  73. data/tmp/aruba/testapp/app/views/layouts/mailer.text.erb +1 -0
  74. data/tmp/aruba/testapp/bin/bundle +3 -0
  75. data/tmp/aruba/testapp/bin/rails +9 -0
  76. data/tmp/aruba/testapp/bin/rake +9 -0
  77. data/tmp/aruba/testapp/bin/setup +34 -0
  78. data/tmp/aruba/testapp/bin/spring +17 -0
  79. data/tmp/aruba/testapp/bin/update +29 -0
  80. data/tmp/aruba/testapp/config/application.rb +16 -0
  81. data/tmp/aruba/testapp/config/boot.rb +3 -0
  82. data/tmp/aruba/testapp/config/cable.yml +9 -0
  83. data/tmp/aruba/testapp/config/database.yml +25 -0
  84. data/tmp/aruba/testapp/config/environment.rb +5 -0
  85. data/tmp/aruba/testapp/config/environments/development.rb +54 -0
  86. data/tmp/aruba/testapp/config/environments/production.rb +86 -0
  87. data/tmp/aruba/testapp/config/environments/test.rb +42 -0
  88. data/tmp/aruba/testapp/config/initializers/application_controller_renderer.rb +8 -0
  89. data/tmp/aruba/testapp/config/initializers/assets.rb +11 -0
  90. data/tmp/aruba/testapp/config/initializers/backtrace_silencers.rb +7 -0
  91. data/tmp/aruba/testapp/config/initializers/cookies_serializer.rb +5 -0
  92. data/tmp/aruba/testapp/config/initializers/filter_parameter_logging.rb +4 -0
  93. data/tmp/aruba/testapp/config/initializers/inflections.rb +16 -0
  94. data/tmp/aruba/testapp/config/initializers/mime_types.rb +4 -0
  95. data/tmp/aruba/testapp/config/initializers/new_framework_defaults.rb +26 -0
  96. data/tmp/aruba/testapp/config/initializers/session_store.rb +3 -0
  97. data/tmp/aruba/testapp/config/initializers/wrap_parameters.rb +14 -0
  98. data/tmp/aruba/testapp/config/locales/en.yml +23 -0
  99. data/tmp/aruba/testapp/config/puma.rb +47 -0
  100. data/tmp/aruba/testapp/config/routes.rb +3 -0
  101. data/tmp/aruba/testapp/config/secrets.yml +22 -0
  102. data/tmp/aruba/testapp/config/spring.rb +6 -0
  103. data/tmp/aruba/testapp/config.ru +5 -0
  104. data/tmp/aruba/testapp/db/development.sqlite3 +0 -0
  105. data/tmp/aruba/testapp/db/migrate/1_create_users.rb +7 -0
  106. data/tmp/aruba/testapp/db/schema.rb +19 -0
  107. data/tmp/aruba/testapp/db/seeds.rb +7 -0
  108. data/tmp/aruba/testapp/db/test.sqlite3 +0 -0
  109. data/tmp/aruba/testapp/lib/some_railtie/factories.rb +5 -0
  110. data/tmp/aruba/testapp/lib/some_railtie/railties.rb +8 -0
  111. data/tmp/aruba/testapp/log/development.log +16 -0
  112. data/tmp/aruba/testapp/log/test.log +21 -0
  113. data/tmp/aruba/testapp/public/404.html +67 -0
  114. data/tmp/aruba/testapp/public/422.html +67 -0
  115. data/tmp/aruba/testapp/public/500.html +66 -0
  116. data/tmp/aruba/testapp/public/apple-touch-icon-precomposed.png +0 -0
  117. data/tmp/aruba/testapp/public/apple-touch-icon.png +0 -0
  118. data/tmp/aruba/testapp/public/favicon.ico +0 -0
  119. data/tmp/aruba/testapp/public/robots.txt +5 -0
  120. data/tmp/aruba/testapp/test/test_helper.rb +10 -0
  121. data/tmp/aruba/testapp/test/unit/user_test.rb +8 -0
  122. metadata +116 -100
  123. data/.gitignore +0 -9
  124. data/.travis.yml +0 -16
  125. data/gemfiles/rails3.1.gemfile +0 -16
  126. data/gemfiles/rails3.1.gemfile.lock +0 -171
  127. data/lib/generators/factory_girl/model/templates/fixtures.erb +0 -9
@@ -1,169 +1,186 @@
1
1
  PATH
2
- remote: /Users/joshuaclayton/dev/gems/factory_girl_rails
2
+ remote: ../
3
3
  specs:
4
- factory_girl_rails (4.4.0)
5
- factory_girl (~> 4.4.0)
4
+ factory_girl_rails (4.9.0)
5
+ factory_girl (~> 4.9.0)
6
6
  railties (>= 3.0.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actionmailer (3.2.11)
12
- actionpack (= 3.2.11)
13
- mail (~> 2.4.4)
14
- actionpack (3.2.11)
15
- activemodel (= 3.2.11)
16
- activesupport (= 3.2.11)
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
17
  builder (~> 3.0.0)
18
18
  erubis (~> 2.7.0)
19
19
  journey (~> 1.0.4)
20
- rack (~> 1.4.0)
20
+ rack (~> 1.4.5)
21
21
  rack-cache (~> 1.2)
22
22
  rack-test (~> 0.6.1)
23
23
  sprockets (~> 2.2.1)
24
- activemodel (3.2.11)
25
- activesupport (= 3.2.11)
24
+ activemodel (3.2.22.2)
25
+ activesupport (= 3.2.22.2)
26
26
  builder (~> 3.0.0)
27
- activerecord (3.2.11)
28
- activemodel (= 3.2.11)
29
- activesupport (= 3.2.11)
27
+ activerecord (3.2.22.2)
28
+ activemodel (= 3.2.22.2)
29
+ activesupport (= 3.2.22.2)
30
30
  arel (~> 3.0.2)
31
31
  tzinfo (~> 0.3.29)
32
- activeresource (3.2.11)
33
- activemodel (= 3.2.11)
34
- activesupport (= 3.2.11)
35
- activesupport (3.2.11)
36
- i18n (~> 0.6)
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
37
  multi_json (~> 1.0)
38
- appraisal (0.5.1)
38
+ appraisal (2.1.0)
39
39
  bundler
40
40
  rake
41
- arel (3.0.2)
42
- aruba (0.5.1)
43
- childprocess (~> 0.3.6)
44
- cucumber (>= 1.1.1)
45
- rspec-expectations (>= 2.7.0)
41
+ thor (>= 0.14.0)
42
+ arel (3.0.3)
43
+ aruba (0.14.2)
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)
46
50
  builder (3.0.4)
47
- childprocess (0.3.7)
48
- ffi (~> 1.0, >= 1.0.6)
51
+ childprocess (0.5.9)
52
+ ffi (~> 1.0, >= 1.0.11)
49
53
  coffee-rails (3.2.2)
50
54
  coffee-script (>= 2.2.0)
51
55
  railties (~> 3.2.0)
52
- coffee-script (2.2.0)
56
+ coffee-script (2.4.1)
53
57
  coffee-script-source
54
58
  execjs
55
- coffee-script-source (1.4.0)
56
- cucumber (1.2.1)
59
+ coffee-script-source (1.12.2)
60
+ concurrent-ruby (1.0.5)
61
+ contracts (0.16.0)
62
+ cucumber (1.3.19)
57
63
  builder (>= 2.1.2)
58
64
  diff-lcs (>= 1.1.3)
59
- gherkin (~> 2.11.0)
60
- json (>= 1.4.6)
61
- diff-lcs (1.1.3)
65
+ gherkin (~> 2.12)
66
+ multi_json (>= 1.7.5, < 2.0)
67
+ multi_test (>= 0.1.2)
68
+ diff-lcs (1.3)
62
69
  erubis (2.7.0)
63
- execjs (1.4.0)
64
- multi_json (~> 1.0)
65
- factory_girl (4.4.0)
70
+ execjs (2.7.0)
71
+ factory_girl (4.9.0)
66
72
  activesupport (>= 3.0.0)
67
- ffi (1.3.1)
68
- gherkin (2.11.6)
69
- json (>= 1.7.6)
70
- hike (1.2.1)
71
- i18n (0.6.1)
73
+ ffi (1.9.18)
74
+ gherkin (2.12.2)
75
+ multi_json (~> 1.3)
76
+ hike (1.2.3)
77
+ i18n (0.9.0)
78
+ concurrent-ruby (~> 1.0)
72
79
  journey (1.0.4)
73
- jquery-rails (2.2.0)
80
+ jquery-rails (3.1.4)
74
81
  railties (>= 3.0, < 5.0)
75
82
  thor (>= 0.14, < 2.0)
76
- json (1.7.6)
77
- mail (2.4.4)
78
- i18n (>= 0.4.0)
83
+ json (1.8.6)
84
+ mail (2.5.4)
79
85
  mime-types (~> 1.16)
80
86
  treetop (~> 1.4.8)
81
- mime-types (1.19)
82
- minitest (4.4.0)
83
- minitest-rails (0.3)
84
- minitest (~> 4.0)
85
- rails (~> 3.0)
86
- multi_json (1.5.0)
87
- polyglot (0.3.3)
88
- rack (1.4.4)
89
- rack-cache (1.2)
87
+ mime-types (1.25.1)
88
+ multi_json (1.12.2)
89
+ multi_test (0.1.2)
90
+ polyglot (0.3.5)
91
+ power_assert (0.3.0)
92
+ rack (1.4.7)
93
+ rack-cache (1.6.1)
90
94
  rack (>= 0.4)
91
- rack-ssl (1.3.3)
95
+ rack-ssl (1.3.4)
92
96
  rack
93
- rack-test (0.6.2)
97
+ rack-test (0.6.3)
94
98
  rack (>= 1.0)
95
- rails (3.2.11)
96
- actionmailer (= 3.2.11)
97
- actionpack (= 3.2.11)
98
- activerecord (= 3.2.11)
99
- activeresource (= 3.2.11)
100
- activesupport (= 3.2.11)
99
+ rails (3.2.22.2)
100
+ actionmailer (= 3.2.22.2)
101
+ actionpack (= 3.2.22.2)
102
+ activerecord (= 3.2.22.2)
103
+ activeresource (= 3.2.22.2)
104
+ activesupport (= 3.2.22.2)
101
105
  bundler (~> 1.0)
102
- railties (= 3.2.11)
103
- railties (3.2.11)
104
- actionpack (= 3.2.11)
105
- activesupport (= 3.2.11)
106
+ railties (= 3.2.22.2)
107
+ railties (3.2.22.2)
108
+ actionpack (= 3.2.22.2)
109
+ activesupport (= 3.2.22.2)
106
110
  rack-ssl (~> 1.3.2)
107
111
  rake (>= 0.8.7)
108
112
  rdoc (~> 3.4)
109
113
  thor (>= 0.14.6, < 2.0)
110
- rake (10.0.3)
111
- rdoc (3.12)
114
+ rake (12.1.0)
115
+ rb-fsevent (0.10.2)
116
+ rb-inotify (0.9.10)
117
+ ffi (>= 0.5.0, < 2)
118
+ rdoc (3.12.2)
112
119
  json (~> 1.4)
113
- rspec (2.11.0)
114
- rspec-core (~> 2.11.0)
115
- rspec-expectations (~> 2.11.0)
116
- rspec-mocks (~> 2.11.0)
117
- rspec-core (2.11.1)
118
- rspec-expectations (2.11.3)
119
- diff-lcs (~> 1.1.3)
120
- rspec-mocks (2.11.3)
121
- rspec-rails (2.11.4)
120
+ rspec-core (3.7.0)
121
+ rspec-support (~> 3.7.0)
122
+ rspec-expectations (3.7.0)
123
+ diff-lcs (>= 1.2.0, < 2.0)
124
+ rspec-support (~> 3.7.0)
125
+ rspec-mocks (3.7.0)
126
+ diff-lcs (>= 1.2.0, < 2.0)
127
+ rspec-support (~> 3.7.0)
128
+ rspec-rails (3.7.0)
122
129
  actionpack (>= 3.0)
123
130
  activesupport (>= 3.0)
124
131
  railties (>= 3.0)
125
- rspec (~> 2.11.0)
126
- sass (3.2.5)
132
+ rspec-core (~> 3.7.0)
133
+ rspec-expectations (~> 3.7.0)
134
+ rspec-mocks (~> 3.7.0)
135
+ rspec-support (~> 3.7.0)
136
+ rspec-support (3.7.0)
137
+ sass (3.5.2)
138
+ sass-listen (~> 4.0.0)
139
+ sass-listen (4.0.0)
140
+ rb-fsevent (~> 0.9, >= 0.9.4)
141
+ rb-inotify (~> 0.9, >= 0.9.7)
127
142
  sass-rails (3.2.6)
128
143
  railties (~> 3.2.0)
129
144
  sass (>= 3.1.10)
130
145
  tilt (~> 1.3)
131
- sprockets (2.2.2)
146
+ sprockets (2.2.3)
132
147
  hike (~> 1.2)
133
148
  multi_json (~> 1.0)
134
149
  rack (~> 1.0)
135
150
  tilt (~> 1.1, != 1.3.0)
136
- sqlite3 (1.3.7)
137
- therubyrhino (2.0.2)
138
- therubyrhino_jar (>= 1.7.3)
139
- therubyrhino_jar (1.7.4)
140
- thor (0.17.0)
141
- tilt (1.3.3)
142
- treetop (1.4.12)
151
+ sqlite3 (1.3.13)
152
+ test-unit (3.2.0)
153
+ power_assert
154
+ thor (0.20.0)
155
+ tilt (1.4.1)
156
+ treetop (1.4.15)
143
157
  polyglot
144
158
  polyglot (>= 0.3.1)
145
- tzinfo (0.3.35)
146
- uglifier (1.3.0)
147
- execjs (>= 0.3.0)
148
- multi_json (~> 1.0, >= 1.0.2)
159
+ tzinfo (0.3.53)
160
+ uglifier (3.2.0)
161
+ execjs (>= 0.3.0, < 3)
149
162
 
150
163
  PLATFORMS
151
164
  ruby
152
165
 
153
166
  DEPENDENCIES
154
- activerecord-jdbcsqlite3-adapter (~> 1.2.5)
155
- appraisal (~> 0.5.0)
156
- aruba (~> 0.5.1)
167
+ activerecord-jdbcsqlite3-adapter
168
+ appraisal
169
+ aruba
157
170
  coffee-rails
158
- cucumber (~> 1.2.1)
171
+ cucumber (= 1.3.19)
159
172
  factory_girl_rails!
173
+ jdbc-sqlite3
160
174
  jquery-rails
161
- minitest-rails
162
- rails (= 3.2.11)
175
+ jruby-openssl
176
+ rails (~> 3.2.21)
163
177
  rake
164
- rspec (~> 2.11.0)
165
178
  rspec-rails
166
179
  sass-rails
167
- sqlite3 (>= 1.3.4)
180
+ sqlite3
181
+ test-unit
168
182
  therubyrhino
169
183
  uglifier
184
+
185
+ BUNDLED WITH
186
+ 1.13.6
@@ -0,0 +1,23 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "aruba"
7
+ gem "coffee-rails"
8
+ gem "cucumber", "1.3.19"
9
+ gem "jquery-rails"
10
+ gem "rake"
11
+ gem "rspec-rails"
12
+ gem "uglifier"
13
+ gem "test-unit"
14
+ gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
15
+ gem "jdbc-sqlite3", :platforms => :jruby
16
+ gem "therubyrhino", :platforms => :jruby
17
+ gem "jruby-openssl", :platforms => :jruby
18
+ gem "sqlite3", :platforms => :ruby
19
+ gem "rails", "~> 4.1.9"
20
+ gem "sass-rails"
21
+ gem "spring"
22
+
23
+ gemspec :path => "../"
@@ -0,0 +1,183 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_girl_rails (4.9.0)
5
+ factory_girl (~> 4.9.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.2)
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.3)
50
+ childprocess (0.5.9)
51
+ ffi (~> 1.0, >= 1.0.11)
52
+ coffee-rails (4.2.2)
53
+ coffee-script (>= 2.2.0)
54
+ railties (>= 4.0.0)
55
+ coffee-script (2.4.1)
56
+ coffee-script-source
57
+ execjs
58
+ coffee-script-source (1.12.2)
59
+ concurrent-ruby (1.0.5)
60
+ contracts (0.16.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.3)
68
+ erubis (2.7.0)
69
+ execjs (2.7.0)
70
+ factory_girl (4.9.0)
71
+ activesupport (>= 3.0.0)
72
+ ffi (1.9.18)
73
+ gherkin (2.12.2)
74
+ multi_json (~> 1.3)
75
+ i18n (0.9.0)
76
+ concurrent-ruby (~> 1.0)
77
+ jquery-rails (3.1.4)
78
+ railties (>= 3.0, < 5.0)
79
+ thor (>= 0.14, < 2.0)
80
+ json (1.8.6)
81
+ mail (2.6.6)
82
+ mime-types (>= 1.16, < 4)
83
+ mime-types (3.1)
84
+ mime-types-data (~> 3.2015)
85
+ mime-types-data (3.2016.0521)
86
+ minitest (5.10.3)
87
+ multi_json (1.12.2)
88
+ multi_test (0.1.2)
89
+ power_assert (0.3.0)
90
+ rack (1.5.5)
91
+ rack-test (0.6.3)
92
+ rack (>= 1.0)
93
+ rails (4.1.15)
94
+ actionmailer (= 4.1.15)
95
+ actionpack (= 4.1.15)
96
+ actionview (= 4.1.15)
97
+ activemodel (= 4.1.15)
98
+ activerecord (= 4.1.15)
99
+ activesupport (= 4.1.15)
100
+ bundler (>= 1.3.0, < 2.0)
101
+ railties (= 4.1.15)
102
+ sprockets-rails (~> 2.0)
103
+ railties (4.1.15)
104
+ actionpack (= 4.1.15)
105
+ activesupport (= 4.1.15)
106
+ rake (>= 0.8.7)
107
+ thor (>= 0.18.1, < 2.0)
108
+ rake (12.1.0)
109
+ rb-fsevent (0.10.2)
110
+ rb-inotify (0.9.10)
111
+ ffi (>= 0.5.0, < 2)
112
+ rspec-core (3.7.0)
113
+ rspec-support (~> 3.7.0)
114
+ rspec-expectations (3.7.0)
115
+ diff-lcs (>= 1.2.0, < 2.0)
116
+ rspec-support (~> 3.7.0)
117
+ rspec-mocks (3.7.0)
118
+ diff-lcs (>= 1.2.0, < 2.0)
119
+ rspec-support (~> 3.7.0)
120
+ rspec-rails (3.7.0)
121
+ actionpack (>= 3.0)
122
+ activesupport (>= 3.0)
123
+ railties (>= 3.0)
124
+ rspec-core (~> 3.7.0)
125
+ rspec-expectations (~> 3.7.0)
126
+ rspec-mocks (~> 3.7.0)
127
+ rspec-support (~> 3.7.0)
128
+ rspec-support (3.7.0)
129
+ sass (3.5.2)
130
+ sass-listen (~> 4.0.0)
131
+ sass-listen (4.0.0)
132
+ rb-fsevent (~> 0.9, >= 0.9.4)
133
+ rb-inotify (~> 0.9, >= 0.9.7)
134
+ sass-rails (5.0.6)
135
+ railties (>= 4.0.0, < 6)
136
+ sass (~> 3.1)
137
+ sprockets (>= 2.8, < 4.0)
138
+ sprockets-rails (>= 2.0, < 4.0)
139
+ tilt (>= 1.1, < 3)
140
+ spring (1.7.2)
141
+ sprockets (3.7.1)
142
+ concurrent-ruby (~> 1.0)
143
+ rack (> 1, < 3)
144
+ sprockets-rails (2.3.3)
145
+ actionpack (>= 3.0)
146
+ activesupport (>= 3.0)
147
+ sprockets (>= 2.8, < 4.0)
148
+ sqlite3 (1.3.13)
149
+ test-unit (3.2.0)
150
+ power_assert
151
+ thor (0.20.0)
152
+ thread_safe (0.3.6)
153
+ tilt (2.0.8)
154
+ tzinfo (1.2.3)
155
+ thread_safe (~> 0.1)
156
+ uglifier (3.2.0)
157
+ execjs (>= 0.3.0, < 3)
158
+
159
+ PLATFORMS
160
+ ruby
161
+
162
+ DEPENDENCIES
163
+ activerecord-jdbcsqlite3-adapter
164
+ appraisal
165
+ aruba
166
+ coffee-rails
167
+ cucumber (= 1.3.19)
168
+ factory_girl_rails!
169
+ jdbc-sqlite3
170
+ jquery-rails
171
+ jruby-openssl
172
+ rails (~> 4.1.9)
173
+ rake
174
+ rspec-rails
175
+ sass-rails
176
+ spring
177
+ sqlite3
178
+ test-unit
179
+ therubyrhino
180
+ uglifier
181
+
182
+ BUNDLED WITH
183
+ 1.13.6
@@ -0,0 +1,21 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "aruba"
7
+ gem "coffee-rails"
8
+ gem "cucumber", "1.3.19"
9
+ gem "jquery-rails"
10
+ gem "rake"
11
+ gem "rspec-rails"
12
+ gem "uglifier"
13
+ gem "test-unit"
14
+ gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
15
+ gem "jdbc-sqlite3", :platforms => :jruby
16
+ gem "therubyrhino", :platforms => :jruby
17
+ gem "jruby-openssl", :platforms => :jruby
18
+ gem "sqlite3", :platforms => :ruby
19
+ gem "rails", "~> 4.2.0"
20
+
21
+ gemspec :path => "../"