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
metadata CHANGED
@@ -1,131 +1,87 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factory_girl_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.4.0
4
+ version: 4.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe Ferris
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-11 00:00:00.000000000 Z
11
+ date: 2017-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 3.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 3.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: factory_girl
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 4.4.0
33
+ version: 4.9.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 4.4.0
41
- - !ruby/object:Gem::Dependency
42
- name: appraisal
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ~>
46
- - !ruby/object:Gem::Version
47
- version: 0.5.0
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ~>
53
- - !ruby/object:Gem::Version
54
- version: 0.5.0
55
- - !ruby/object:Gem::Dependency
56
- name: rake
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - '>='
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - '>='
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
- - !ruby/object:Gem::Dependency
70
- name: rspec
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ~>
74
- - !ruby/object:Gem::Version
75
- version: 2.11.0
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ~>
81
- - !ruby/object:Gem::Version
82
- version: 2.11.0
83
- - !ruby/object:Gem::Dependency
84
- name: cucumber
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - ~>
88
- - !ruby/object:Gem::Version
89
- version: 1.2.1
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - ~>
95
- - !ruby/object:Gem::Version
96
- version: 1.2.1
97
- - !ruby/object:Gem::Dependency
98
- name: aruba
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - ~>
102
- - !ruby/object:Gem::Version
103
- version: 0.5.1
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - ~>
109
- - !ruby/object:Gem::Version
110
- version: 0.5.1
40
+ version: 4.9.0
111
41
  description: |-
112
42
  factory_girl_rails provides integration between
113
- factory_girl and rails 3 (currently just automatic factory definition
43
+ factory_girl and rails 3 or newer (currently just automatic factory definition
114
44
  loading)
115
45
  email: jferris@thoughtbot.com
116
46
  executables: []
117
47
  extensions: []
118
48
  extra_rdoc_files: []
119
49
  files:
120
- - .gitignore
121
- - .travis.yml
122
50
  - Appraisals
123
51
  - CONTRIBUTING.md
124
52
  - Gemfile
53
+ - Gemfile.lock
125
54
  - LICENSE
126
55
  - NEWS
127
56
  - README.md
128
57
  - Rakefile
58
+ - bin/setup
59
+ - bin/stubs/a2h
60
+ - bin/stubs/appraisal
61
+ - bin/stubs/aruba
62
+ - bin/stubs/autospec
63
+ - bin/stubs/bcat
64
+ - bin/stubs/btee
65
+ - bin/stubs/bundler
66
+ - bin/stubs/cdiff
67
+ - bin/stubs/cucumber
68
+ - bin/stubs/decolor
69
+ - bin/stubs/erubis
70
+ - bin/stubs/htmldiff
71
+ - bin/stubs/ldiff
72
+ - bin/stubs/nokogiri
73
+ - bin/stubs/rackup
74
+ - bin/stubs/rails
75
+ - bin/stubs/rake
76
+ - bin/stubs/rake2thor
77
+ - bin/stubs/rdiscount
78
+ - bin/stubs/rdoc
79
+ - bin/stubs/ri
80
+ - bin/stubs/rspec
81
+ - bin/stubs/setup
82
+ - bin/stubs/sprockets
83
+ - bin/stubs/thor
84
+ - bin/stubs/tilt
129
85
  - factory_girl_rails.gemspec
130
86
  - features/fixture_replacement_config.feature
131
87
  - features/generators.feature
@@ -133,10 +89,14 @@ files:
133
89
  - features/step_definitions/appraisal.rb
134
90
  - features/step_definitions/rails_steps.rb
135
91
  - features/support/env.rb
136
- - gemfiles/rails3.1.gemfile
137
- - gemfiles/rails3.1.gemfile.lock
138
92
  - gemfiles/rails3.2.gemfile
139
93
  - gemfiles/rails3.2.gemfile.lock
94
+ - gemfiles/rails4.1.gemfile
95
+ - gemfiles/rails4.1.gemfile.lock
96
+ - gemfiles/rails4.2.gemfile
97
+ - gemfiles/rails4.2.gemfile.lock
98
+ - gemfiles/rails5.0.gemfile
99
+ - gemfiles/rails5.0.gemfile.lock
140
100
  - lib/factory_girl_rails.rb
141
101
  - lib/factory_girl_rails/generator.rb
142
102
  - lib/factory_girl_rails/generators/non_rspec_generator.rb
@@ -145,7 +105,74 @@ files:
145
105
  - lib/factory_girl_rails/railtie.rb
146
106
  - lib/generators/factory_girl.rb
147
107
  - lib/generators/factory_girl/model/model_generator.rb
148
- - lib/generators/factory_girl/model/templates/fixtures.erb
108
+ - pkg/factory_girl_rails-4.5.0.gem
109
+ - tmp/aruba/testapp/Gemfile
110
+ - tmp/aruba/testapp/Gemfile.lock
111
+ - tmp/aruba/testapp/README.md
112
+ - tmp/aruba/testapp/Rakefile
113
+ - tmp/aruba/testapp/app/assets/config/manifest.js
114
+ - tmp/aruba/testapp/app/assets/javascripts/application.js
115
+ - tmp/aruba/testapp/app/assets/javascripts/cable.js
116
+ - tmp/aruba/testapp/app/assets/stylesheets/application.css
117
+ - tmp/aruba/testapp/app/channels/application_cable/channel.rb
118
+ - tmp/aruba/testapp/app/channels/application_cable/connection.rb
119
+ - tmp/aruba/testapp/app/controllers/application_controller.rb
120
+ - tmp/aruba/testapp/app/helpers/application_helper.rb
121
+ - tmp/aruba/testapp/app/jobs/application_job.rb
122
+ - tmp/aruba/testapp/app/mailers/application_mailer.rb
123
+ - tmp/aruba/testapp/app/models/application_record.rb
124
+ - tmp/aruba/testapp/app/models/user.rb
125
+ - tmp/aruba/testapp/app/views/layouts/application.html.erb
126
+ - tmp/aruba/testapp/app/views/layouts/mailer.html.erb
127
+ - tmp/aruba/testapp/app/views/layouts/mailer.text.erb
128
+ - tmp/aruba/testapp/bin/bundle
129
+ - tmp/aruba/testapp/bin/rails
130
+ - tmp/aruba/testapp/bin/rake
131
+ - tmp/aruba/testapp/bin/setup
132
+ - tmp/aruba/testapp/bin/spring
133
+ - tmp/aruba/testapp/bin/update
134
+ - tmp/aruba/testapp/config.ru
135
+ - tmp/aruba/testapp/config/application.rb
136
+ - tmp/aruba/testapp/config/boot.rb
137
+ - tmp/aruba/testapp/config/cable.yml
138
+ - tmp/aruba/testapp/config/database.yml
139
+ - tmp/aruba/testapp/config/environment.rb
140
+ - tmp/aruba/testapp/config/environments/development.rb
141
+ - tmp/aruba/testapp/config/environments/production.rb
142
+ - tmp/aruba/testapp/config/environments/test.rb
143
+ - tmp/aruba/testapp/config/initializers/application_controller_renderer.rb
144
+ - tmp/aruba/testapp/config/initializers/assets.rb
145
+ - tmp/aruba/testapp/config/initializers/backtrace_silencers.rb
146
+ - tmp/aruba/testapp/config/initializers/cookies_serializer.rb
147
+ - tmp/aruba/testapp/config/initializers/filter_parameter_logging.rb
148
+ - tmp/aruba/testapp/config/initializers/inflections.rb
149
+ - tmp/aruba/testapp/config/initializers/mime_types.rb
150
+ - tmp/aruba/testapp/config/initializers/new_framework_defaults.rb
151
+ - tmp/aruba/testapp/config/initializers/session_store.rb
152
+ - tmp/aruba/testapp/config/initializers/wrap_parameters.rb
153
+ - tmp/aruba/testapp/config/locales/en.yml
154
+ - tmp/aruba/testapp/config/puma.rb
155
+ - tmp/aruba/testapp/config/routes.rb
156
+ - tmp/aruba/testapp/config/secrets.yml
157
+ - tmp/aruba/testapp/config/spring.rb
158
+ - tmp/aruba/testapp/db/development.sqlite3
159
+ - tmp/aruba/testapp/db/migrate/1_create_users.rb
160
+ - tmp/aruba/testapp/db/schema.rb
161
+ - tmp/aruba/testapp/db/seeds.rb
162
+ - tmp/aruba/testapp/db/test.sqlite3
163
+ - tmp/aruba/testapp/lib/some_railtie/factories.rb
164
+ - tmp/aruba/testapp/lib/some_railtie/railties.rb
165
+ - tmp/aruba/testapp/log/development.log
166
+ - tmp/aruba/testapp/log/test.log
167
+ - tmp/aruba/testapp/public/404.html
168
+ - tmp/aruba/testapp/public/422.html
169
+ - tmp/aruba/testapp/public/500.html
170
+ - tmp/aruba/testapp/public/apple-touch-icon-precomposed.png
171
+ - tmp/aruba/testapp/public/apple-touch-icon.png
172
+ - tmp/aruba/testapp/public/favicon.ico
173
+ - tmp/aruba/testapp/public/robots.txt
174
+ - tmp/aruba/testapp/test/test_helper.rb
175
+ - tmp/aruba/testapp/test/unit/user_test.rb
149
176
  homepage: http://github.com/thoughtbot/factory_girl_rails
150
177
  licenses:
151
178
  - MIT
@@ -156,30 +183,19 @@ require_paths:
156
183
  - lib
157
184
  required_ruby_version: !ruby/object:Gem::Requirement
158
185
  requirements:
159
- - - '>='
186
+ - - ">="
160
187
  - !ruby/object:Gem::Version
161
188
  version: '0'
162
189
  required_rubygems_version: !ruby/object:Gem::Requirement
163
190
  requirements:
164
- - - '>='
191
+ - - ">="
165
192
  - !ruby/object:Gem::Version
166
193
  version: '0'
167
194
  requirements: []
168
195
  rubyforge_project:
169
- rubygems_version: 2.1.5
196
+ rubygems_version: 2.5.2
170
197
  signing_key:
171
198
  specification_version: 4
172
199
  summary: factory_girl_rails provides integration between factory_girl and rails 3
173
- test_files:
174
- - Appraisals
175
- - features/fixture_replacement_config.feature
176
- - features/generators.feature
177
- - features/load_definitions.feature
178
- - features/step_definitions/appraisal.rb
179
- - features/step_definitions/rails_steps.rb
180
- - features/support/env.rb
181
- - gemfiles/rails3.1.gemfile
182
- - gemfiles/rails3.1.gemfile.lock
183
- - gemfiles/rails3.2.gemfile
184
- - gemfiles/rails3.2.gemfile.lock
185
- has_rdoc:
200
+ or newer
201
+ test_files: []
data/.gitignore DELETED
@@ -1,9 +0,0 @@
1
- *.swp
2
- test.db
3
- factory_girl_rails-*.gem
4
- tmp
5
- rdoc
6
- coverage
7
- pkg
8
- .bundle
9
- Gemfile.lock
data/.travis.yml DELETED
@@ -1,16 +0,0 @@
1
- rvm:
2
- - 1.9.3
3
- - 2.0.0
4
- - jruby-19mode
5
- before_install:
6
- - gem update --system
7
- - gem install turn --version 0.8.2
8
- - gem install turn --version 0.8.3
9
- jdk:
10
- - openjdk6
11
- gemfile:
12
- - gemfiles/rails3.1.gemfile
13
- - gemfiles/rails3.2.gemfile
14
- branches:
15
- only:
16
- - master
@@ -1,16 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rails", "3.1.10"
6
- gem "sass-rails"
7
- gem "coffee-rails"
8
- gem "uglifier"
9
- gem "sqlite3", ">= 1.3.4", :platforms=>:mri
10
- gem "activerecord-jdbcsqlite3-adapter", "~> 1.2.5", :platforms=>:jruby
11
- gem "minitest-rails"
12
- gem "therubyrhino"
13
- gem "jquery-rails"
14
- gem "rspec-rails"
15
-
16
- gemspec :path=>"../"
@@ -1,171 +0,0 @@
1
- PATH
2
- remote: /Users/joshuaclayton/dev/gems/factory_girl_rails
3
- specs:
4
- factory_girl_rails (4.4.0)
5
- factory_girl (~> 4.4.0)
6
- railties (>= 3.0.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (3.1.10)
12
- actionpack (= 3.1.10)
13
- mail (~> 2.3.3)
14
- actionpack (3.1.10)
15
- activemodel (= 3.1.10)
16
- activesupport (= 3.1.10)
17
- builder (~> 3.0.0)
18
- erubis (~> 2.7.0)
19
- i18n (~> 0.6)
20
- rack (~> 1.3.6)
21
- rack-cache (~> 1.2)
22
- rack-mount (~> 0.8.2)
23
- rack-test (~> 0.6.1)
24
- sprockets (~> 2.0.4)
25
- activemodel (3.1.10)
26
- activesupport (= 3.1.10)
27
- builder (~> 3.0.0)
28
- i18n (~> 0.6)
29
- activerecord (3.1.10)
30
- activemodel (= 3.1.10)
31
- activesupport (= 3.1.10)
32
- arel (~> 2.2.3)
33
- tzinfo (~> 0.3.29)
34
- activeresource (3.1.10)
35
- activemodel (= 3.1.10)
36
- activesupport (= 3.1.10)
37
- activesupport (3.1.10)
38
- multi_json (>= 1.0, < 1.3)
39
- appraisal (0.5.1)
40
- bundler
41
- rake
42
- arel (2.2.3)
43
- aruba (0.5.1)
44
- childprocess (~> 0.3.6)
45
- cucumber (>= 1.1.1)
46
- rspec-expectations (>= 2.7.0)
47
- builder (3.0.4)
48
- childprocess (0.3.7)
49
- ffi (~> 1.0, >= 1.0.6)
50
- coffee-rails (3.1.1)
51
- coffee-script (>= 2.2.0)
52
- railties (~> 3.1.0)
53
- coffee-script (2.2.0)
54
- coffee-script-source
55
- execjs
56
- coffee-script-source (1.4.0)
57
- cucumber (1.2.1)
58
- builder (>= 2.1.2)
59
- diff-lcs (>= 1.1.3)
60
- gherkin (~> 2.11.0)
61
- json (>= 1.4.6)
62
- diff-lcs (1.1.3)
63
- erubis (2.7.0)
64
- execjs (1.4.0)
65
- multi_json (~> 1.0)
66
- factory_girl (4.4.0)
67
- activesupport (>= 3.0.0)
68
- ffi (1.3.1)
69
- gherkin (2.11.6)
70
- json (>= 1.7.6)
71
- hike (1.2.1)
72
- i18n (0.6.1)
73
- jquery-rails (2.2.0)
74
- railties (>= 3.0, < 5.0)
75
- thor (>= 0.14, < 2.0)
76
- json (1.7.6)
77
- mail (2.3.3)
78
- i18n (>= 0.4.0)
79
- mime-types (~> 1.16)
80
- 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.2.0)
87
- polyglot (0.3.3)
88
- rack (1.3.9)
89
- rack-cache (1.2)
90
- rack (>= 0.4)
91
- rack-mount (0.8.3)
92
- rack (>= 1.0.0)
93
- rack-ssl (1.3.3)
94
- rack
95
- rack-test (0.6.2)
96
- rack (>= 1.0)
97
- rails (3.1.10)
98
- actionmailer (= 3.1.10)
99
- actionpack (= 3.1.10)
100
- activerecord (= 3.1.10)
101
- activeresource (= 3.1.10)
102
- activesupport (= 3.1.10)
103
- bundler (~> 1.0)
104
- railties (= 3.1.10)
105
- railties (3.1.10)
106
- actionpack (= 3.1.10)
107
- activesupport (= 3.1.10)
108
- rack-ssl (~> 1.3.2)
109
- rake (>= 0.8.7)
110
- rdoc (~> 3.4)
111
- thor (~> 0.14.6)
112
- rake (10.0.3)
113
- rdoc (3.12)
114
- json (~> 1.4)
115
- rspec (2.11.0)
116
- rspec-core (~> 2.11.0)
117
- rspec-expectations (~> 2.11.0)
118
- rspec-mocks (~> 2.11.0)
119
- rspec-core (2.11.1)
120
- rspec-expectations (2.11.3)
121
- diff-lcs (~> 1.1.3)
122
- rspec-mocks (2.11.3)
123
- rspec-rails (2.11.4)
124
- actionpack (>= 3.0)
125
- activesupport (>= 3.0)
126
- railties (>= 3.0)
127
- rspec (~> 2.11.0)
128
- sass (3.2.5)
129
- sass-rails (3.1.7)
130
- actionpack (~> 3.1.0)
131
- railties (~> 3.1.0)
132
- sass (>= 3.1.10)
133
- tilt (~> 1.3.2)
134
- sprockets (2.0.4)
135
- hike (~> 1.2)
136
- rack (~> 1.0)
137
- tilt (~> 1.1, != 1.3.0)
138
- sqlite3 (1.3.7)
139
- therubyrhino (2.0.2)
140
- therubyrhino_jar (>= 1.7.3)
141
- therubyrhino_jar (1.7.4)
142
- thor (0.14.6)
143
- tilt (1.3.3)
144
- treetop (1.4.12)
145
- polyglot
146
- polyglot (>= 0.3.1)
147
- tzinfo (0.3.35)
148
- uglifier (1.3.0)
149
- execjs (>= 0.3.0)
150
- multi_json (~> 1.0, >= 1.0.2)
151
-
152
- PLATFORMS
153
- ruby
154
-
155
- DEPENDENCIES
156
- activerecord-jdbcsqlite3-adapter (~> 1.2.5)
157
- appraisal (~> 0.5.0)
158
- aruba (~> 0.5.1)
159
- coffee-rails
160
- cucumber (~> 1.2.1)
161
- factory_girl_rails!
162
- jquery-rails
163
- minitest-rails
164
- rails (= 3.1.10)
165
- rake
166
- rspec (~> 2.11.0)
167
- rspec-rails
168
- sass-rails
169
- sqlite3 (>= 1.3.4)
170
- therubyrhino
171
- uglifier
@@ -1,9 +0,0 @@
1
- # Read about factories at https://github.com/thoughtbot/factory_girl
2
-
3
- FactoryGirl.define do
4
- factory :<%= singular_table_name %><%= explicit_class_option %> do
5
- <% for attribute in attributes -%>
6
- <%= attribute.name %> <%= attribute.default.inspect %>
7
- <% end -%>
8
- end
9
- end