factory_bot 1.0.0.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +7 -0
  2. data/.autotest +9 -0
  3. data/.gitignore +9 -0
  4. data/.rspec +2 -0
  5. data/.simplecov +4 -0
  6. data/.travis.yml +41 -0
  7. data/.yardopts +5 -0
  8. data/Appraisals +19 -0
  9. data/CONTRIBUTING.md +60 -0
  10. data/GETTING_STARTED.md +1387 -0
  11. data/Gemfile +8 -0
  12. data/Gemfile.lock +123 -0
  13. data/LICENSE +19 -0
  14. data/NAME.md +11 -0
  15. data/NEWS +285 -0
  16. data/README.md +102 -0
  17. data/Rakefile +36 -0
  18. data/cucumber.yml +1 -0
  19. data/factory_bot.gemspec +38 -0
  20. data/factory_girl.gemspec +41 -0
  21. data/gemfiles/3.2.gemfile +10 -0
  22. data/gemfiles/3.2.gemfile.lock +112 -0
  23. data/gemfiles/4.0.gemfile +10 -0
  24. data/gemfiles/4.0.gemfile.lock +112 -0
  25. data/gemfiles/4.1.gemfile +10 -0
  26. data/gemfiles/4.1.gemfile.lock +111 -0
  27. data/gemfiles/4.2.gemfile +10 -0
  28. data/gemfiles/4.2.gemfile.lock +111 -0
  29. data/gemfiles/5.0.gemfile +10 -0
  30. data/gemfiles/5.0.gemfile.lock +110 -0
  31. data/lib/factory_bot.rb +154 -0
  32. data/lib/factory_bot/aliases.rb +18 -0
  33. data/lib/factory_bot/attribute.rb +62 -0
  34. data/lib/factory_bot/attribute/association.rb +27 -0
  35. data/lib/factory_bot/attribute/dynamic.rb +24 -0
  36. data/lib/factory_bot/attribute/sequence.rb +16 -0
  37. data/lib/factory_bot/attribute/static.rb +16 -0
  38. data/lib/factory_bot/attribute_assigner.rb +97 -0
  39. data/lib/factory_bot/attribute_list.rb +67 -0
  40. data/lib/factory_bot/callback.rb +40 -0
  41. data/lib/factory_bot/callbacks_observer.rb +21 -0
  42. data/lib/factory_bot/configuration.rb +37 -0
  43. data/lib/factory_bot/declaration.rb +23 -0
  44. data/lib/factory_bot/declaration/association.rb +28 -0
  45. data/lib/factory_bot/declaration/dynamic.rb +26 -0
  46. data/lib/factory_bot/declaration/implicit.rb +33 -0
  47. data/lib/factory_bot/declaration/static.rb +26 -0
  48. data/lib/factory_bot/declaration_list.rb +49 -0
  49. data/lib/factory_bot/decorator.rb +21 -0
  50. data/lib/factory_bot/decorator/attribute_hash.rb +16 -0
  51. data/lib/factory_bot/decorator/class_key_hash.rb +28 -0
  52. data/lib/factory_bot/decorator/disallows_duplicates_registry.rb +13 -0
  53. data/lib/factory_bot/decorator/invocation_tracker.rb +19 -0
  54. data/lib/factory_bot/decorator/new_constructor.rb +12 -0
  55. data/lib/factory_bot/definition.rb +136 -0
  56. data/lib/factory_bot/definition_hierarchy.rb +48 -0
  57. data/lib/factory_bot/definition_proxy.rb +174 -0
  58. data/lib/factory_bot/errors.rb +25 -0
  59. data/lib/factory_bot/evaluation.rb +23 -0
  60. data/lib/factory_bot/evaluator.rb +82 -0
  61. data/lib/factory_bot/evaluator_class_definer.rb +20 -0
  62. data/lib/factory_bot/factory.rb +162 -0
  63. data/lib/factory_bot/factory_runner.rb +33 -0
  64. data/lib/factory_bot/find_definitions.rb +25 -0
  65. data/lib/factory_bot/linter.rb +97 -0
  66. data/lib/factory_bot/null_factory.rb +18 -0
  67. data/lib/factory_bot/null_object.rb +24 -0
  68. data/lib/factory_bot/registry.rb +38 -0
  69. data/lib/factory_bot/reload.rb +8 -0
  70. data/lib/factory_bot/sequence.rb +62 -0
  71. data/lib/factory_bot/strategy/attributes_for.rb +13 -0
  72. data/lib/factory_bot/strategy/build.rb +15 -0
  73. data/lib/factory_bot/strategy/create.rb +18 -0
  74. data/lib/factory_bot/strategy/null.rb +11 -0
  75. data/lib/factory_bot/strategy/stub.rb +108 -0
  76. data/lib/factory_bot/strategy_calculator.rb +26 -0
  77. data/lib/factory_bot/strategy_syntax_method_registrar.rb +54 -0
  78. data/lib/factory_bot/syntax.rb +7 -0
  79. data/lib/factory_bot/syntax/default.rb +76 -0
  80. data/lib/factory_bot/syntax/methods.rb +111 -0
  81. data/lib/factory_bot/syntax_runner.rb +6 -0
  82. data/lib/factory_bot/trait.rb +30 -0
  83. data/lib/factory_bot/version.rb +3 -0
  84. data/lib/factory_girl.rb +5 -0
  85. data/lib/factory_girl/version.rb +1 -0
  86. metadata +302 -0
data/README.md ADDED
@@ -0,0 +1,102 @@
1
+ # factory_bot [![Build Status](https://travis-ci.org/thoughtbot/factory_bot.svg)](http://travis-ci.org/thoughtbot/factory_bot?branch=master) [![Dependency Status](https://gemnasium.com/thoughtbot/factory_bot.svg)](https://gemnasium.com/thoughtbot/factory_bot) [![Code Climate](https://codeclimate.com/github/thoughtbot/factory_bot/badges/gpa.svg)](https://codeclimate.com/github/thoughtbot/factory_bot)
2
+
3
+ factory_bot is a fixtures replacement with a straightforward definition syntax, support for multiple build strategies (saved instances, unsaved instances, attribute hashes, and stubbed objects), and support for multiple factories for the same class (user, admin_user, and so on), including factory inheritance.
4
+
5
+ If you want to use factory_bot with Rails, see
6
+ [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails).
7
+
8
+ **A historical note:** factory_bot used to be named factory_girl. An explanation of the name change can be found in the [old factory_girl repository](https://github.com/thoughtbot/factory_girl).
9
+
10
+ _[Interested in the project name?](NAME.md)._
11
+
12
+ Documentation
13
+ -------------
14
+
15
+ You should find the documentation for your version of factory_bot on [Rubygems](https://rubygems.org/gems/factory_bot).
16
+
17
+ See [GETTING_STARTED] for information on defining and using factories. We also
18
+ have [a detailed introductory video][], available for free on Upcase.
19
+
20
+ [a detailed introductory video]: https://upcase.com/videos/factory-girl?utm_source=github&utm_medium=open-source&utm_campaign=factory-girl
21
+
22
+ Install
23
+ --------
24
+
25
+ Add the following line to Gemfile:
26
+
27
+ ```ruby
28
+ gem 'factory_bot'
29
+ ```
30
+
31
+ and run `bundle install` from your shell.
32
+
33
+ To install the gem manually from your shell, run:
34
+
35
+ ```shell
36
+ gem install factory_bot
37
+ ```
38
+
39
+ **Caveat:** As of ActiveSupport 5.0 and above, Ruby 2.2.2+ is required. Because
40
+ of Rubygems' dependency resolution when installing gems, you may see an error
41
+ similar to:
42
+
43
+ ```
44
+ $ gem install factory_bot
45
+ ERROR: Error installing factory_bot:
46
+ activesupport requires Ruby version >= 2.2.2.
47
+ ```
48
+
49
+ To bypass this, install a pre-5.0 version of ActiveSupport before installing
50
+ manually.
51
+
52
+ Supported Ruby versions
53
+ -----------------------
54
+
55
+ The factory_bot 3.x+ series supports MRI Ruby 1.9. Additionally, factory_bot
56
+ 3.6+ supports JRuby 1.6.7.2+ while running in 1.9 mode. See [GETTING_STARTED]
57
+ for more information on configuring the JRuby environment.
58
+
59
+ For versions of Ruby prior to 1.9, please use factory_bot 2.x.
60
+
61
+ More Information
62
+ ----------------
63
+
64
+ * [Rubygems](https://rubygems.org/gems/factory_bot)
65
+ * [Stack Overflow](http://stackoverflow.com/questions/tagged/factory-bot)
66
+ * [Issues](https://github.com/thoughtbot/factory_bot/issues)
67
+ * [GIANT ROBOTS SMASHING INTO OTHER GIANT ROBOTS](http://robots.thoughtbot.com/)
68
+
69
+ You may also find useful information under the [factory_girl tag on Stack Overflow](http://stackoverflow.com/questions/tagged/factory-girl).
70
+
71
+ [GETTING_STARTED]: http://rubydoc.info/gems/factory_bot/file/GETTING_STARTED.md
72
+
73
+ Contributing
74
+ ------------
75
+
76
+ Please see [CONTRIBUTING.md](https://github.com/thoughtbot/factory_bot/blob/master/CONTRIBUTING.md).
77
+
78
+ factory_bot was originally written by Joe Ferris and is now maintained by Josh
79
+ Clayton. Many improvements and bugfixes were contributed by the [open source
80
+ community](https://github.com/thoughtbot/factory_bot/graphs/contributors).
81
+
82
+ License
83
+ -------
84
+
85
+ factory_bot is Copyright © 2008-2016 Joe Ferris and thoughtbot. It is free
86
+ software, and may be redistributed under the terms specified in the
87
+ [LICENSE](/LICENSE) file.
88
+
89
+ About thoughtbot
90
+ ----------------
91
+
92
+ ![thoughtbot](https://thoughtbot.com/logo.png)
93
+
94
+ factory_bot is maintained and funded by thoughtbot, inc.
95
+ The names and logos for thoughtbot are trademarks of thoughtbot, inc.
96
+
97
+ We love open source software!
98
+ See [our other projects][community] or
99
+ [hire us][hire] to design, develop, and grow your product.
100
+
101
+ [community]: https://thoughtbot.com/community?utm_source=github
102
+ [hire]: https://thoughtbot.com?utm_source=github
data/Rakefile ADDED
@@ -0,0 +1,36 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ require 'rake'
4
+ require 'appraisal'
5
+ require 'yard'
6
+ require 'rspec/core/rake_task'
7
+ require 'cucumber/rake/task'
8
+
9
+ Bundler::GemHelper.install_tasks(name: 'factory_bot')
10
+
11
+ desc 'Default: run the specs and features.'
12
+ task default: %w(spec:unit spec:acceptance features)
13
+
14
+ namespace :spec do
15
+ desc "Run unit specs"
16
+ RSpec::Core::RakeTask.new('unit') do |t|
17
+ t.pattern = 'spec/{*_spec.rb,factory_bot/**/*_spec.rb}'
18
+ end
19
+
20
+ desc "Run acceptance specs"
21
+ RSpec::Core::RakeTask.new('acceptance') do |t|
22
+ t.pattern = 'spec/acceptance/**/*_spec.rb'
23
+ end
24
+ end
25
+
26
+ desc "Run the unit and acceptance specs"
27
+ task :spec => ['spec:unit', 'spec:acceptance']
28
+
29
+ Cucumber::Rake::Task.new(:features) do |t|
30
+ t.fork = true
31
+ t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'progress')]
32
+ end
33
+
34
+ YARD::Rake::YardocTask.new do |t|
35
+ end
36
+
data/cucumber.yml ADDED
@@ -0,0 +1 @@
1
+ default: -r features features
@@ -0,0 +1,38 @@
1
+ $LOAD_PATH << File.expand_path("../lib", __FILE__)
2
+ require 'factory_bot/version'
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = %q{factory_bot}
6
+ s.version = FactoryBot::VERSION
7
+ s.summary = %q{factory_bot provides a framework and DSL for defining and
8
+ using model instance factories.}
9
+ s.description = %q{factory_bot provides a framework and DSL for defining and
10
+ using factories - less error-prone, more explicit, and
11
+ all-around easier to work with than fixtures.}
12
+
13
+ s.files = `git ls-files`.split("\n").reject { |f| f.match(%r{^(spec|features)/}) }
14
+
15
+ s.require_path = 'lib'
16
+ s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
17
+
18
+ s.authors = ["Josh Clayton", "Joe Ferris"]
19
+ s.email = ["jclayton@thoughtbot.com", "jferris@thoughtbot.com"]
20
+
21
+ s.homepage = "https://github.com/thoughtbot/factory_bot"
22
+
23
+ s.add_dependency("activesupport", ">= 3.0.0")
24
+
25
+ s.add_development_dependency("rspec", "~> 3.0")
26
+ s.add_development_dependency("rspec-its", "~> 1.0")
27
+ s.add_development_dependency("cucumber", "~> 1.3.15")
28
+ s.add_development_dependency("timecop")
29
+ s.add_development_dependency("simplecov")
30
+ s.add_development_dependency("aruba")
31
+ s.add_development_dependency("mocha", ">= 0.12.8")
32
+ s.add_development_dependency("bourne")
33
+ s.add_development_dependency("appraisal", "~> 2.1.0")
34
+ s.add_development_dependency("activerecord", ">= 3.0.0")
35
+ s.add_development_dependency("yard")
36
+
37
+ s.license = "MIT"
38
+ end
@@ -0,0 +1,41 @@
1
+ $LOAD_PATH << File.expand_path("../lib", __FILE__)
2
+ require 'factory_girl/version'
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = %q{factory_girl}
6
+ s.version = VERSION
7
+ s.summary = %q{factory_girl provides a framework and DSL for defining and
8
+ using model instance factories.}
9
+ s.description = %q{factory_girl provides a framework and DSL for defining and
10
+ using factories - less error-prone, more explicit, and
11
+ all-around easier to work with than fixtures.}
12
+ s.post_install_message = "The factory_girl gem has been deprecated and has "\
13
+ "been replaced by factory_bot. Please switch to "\
14
+ "factory_bot as soon as possible."
15
+
16
+ s.files = `git ls-files`.split("\n").reject { |f| f.match(%r{^(spec|features)/}) }
17
+
18
+ s.require_path = 'lib'
19
+ s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
20
+
21
+ s.authors = ["Josh Clayton", "Joe Ferris"]
22
+ s.email = ["jclayton@thoughtbot.com", "jferris@thoughtbot.com"]
23
+
24
+ s.homepage = "https://github.com/thoughtbot/factory_girl"
25
+
26
+ s.add_dependency("activesupport", ">= 3.0.0")
27
+
28
+ s.add_development_dependency("rspec", "~> 3.0")
29
+ s.add_development_dependency("rspec-its", "~> 1.0")
30
+ s.add_development_dependency("cucumber", "~> 1.3.15")
31
+ s.add_development_dependency("timecop")
32
+ s.add_development_dependency("simplecov")
33
+ s.add_development_dependency("aruba")
34
+ s.add_development_dependency("mocha", ">= 0.12.8")
35
+ s.add_development_dependency("bourne")
36
+ s.add_development_dependency("appraisal", "~> 2.1.0")
37
+ s.add_development_dependency("activerecord", ">= 3.0.0")
38
+ s.add_development_dependency("yard")
39
+
40
+ s.license = "MIT"
41
+ end
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
6
+ gem "jdbc-sqlite3", :platforms => :jruby
7
+ gem "sqlite3", "~> 1.3.10", :platforms => :ruby
8
+ gem "activerecord", :git => "https://github.com/rails/rails.git", :branch => "3-2-stable"
9
+
10
+ gemspec :path => "../"
@@ -0,0 +1,112 @@
1
+ GIT
2
+ remote: https://github.com/rails/rails.git
3
+ revision: d4a1b33a2ab6703124926fbf805d77ef753e1b87
4
+ branch: 3-2-stable
5
+ specs:
6
+ activemodel (3.2.22.2)
7
+ activesupport (= 3.2.22.2)
8
+ builder (~> 3.0.0)
9
+ activerecord (3.2.22.2)
10
+ activemodel (= 3.2.22.2)
11
+ activesupport (= 3.2.22.2)
12
+ arel (~> 3.0.2)
13
+ tzinfo (~> 0.3.29)
14
+ activesupport (3.2.22.2)
15
+ i18n (~> 0.6, >= 0.6.4)
16
+ multi_json (~> 1.0)
17
+
18
+ PATH
19
+ remote: ../
20
+ specs:
21
+ factory_girl (4.8.0)
22
+ activesupport (>= 3.0.0)
23
+
24
+ GEM
25
+ remote: https://rubygems.org/
26
+ specs:
27
+ appraisal (2.1.0)
28
+ bundler
29
+ rake
30
+ thor (>= 0.14.0)
31
+ arel (3.0.3)
32
+ aruba (0.14.1)
33
+ childprocess (~> 0.5.6)
34
+ contracts (~> 0.9)
35
+ cucumber (>= 1.3.19)
36
+ ffi (~> 1.9.10)
37
+ rspec-expectations (>= 2.99)
38
+ thor (~> 0.19)
39
+ bourne (1.6.0)
40
+ mocha (~> 1.1)
41
+ builder (3.0.4)
42
+ childprocess (0.5.9)
43
+ ffi (~> 1.0, >= 1.0.11)
44
+ contracts (0.14.0)
45
+ cucumber (1.3.20)
46
+ builder (>= 2.1.2)
47
+ diff-lcs (>= 1.1.3)
48
+ gherkin (~> 2.12)
49
+ multi_json (>= 1.7.5, < 2.0)
50
+ multi_test (>= 0.1.2)
51
+ diff-lcs (1.2.5)
52
+ docile (1.1.5)
53
+ ffi (1.9.10)
54
+ gherkin (2.12.2)
55
+ multi_json (~> 1.3)
56
+ i18n (0.7.0)
57
+ json (1.8.3)
58
+ metaclass (0.0.4)
59
+ mocha (1.1.0)
60
+ metaclass (~> 0.0.1)
61
+ multi_json (1.12.1)
62
+ multi_test (0.1.2)
63
+ rake (11.2.2)
64
+ rspec (3.4.0)
65
+ rspec-core (~> 3.4.0)
66
+ rspec-expectations (~> 3.4.0)
67
+ rspec-mocks (~> 3.4.0)
68
+ rspec-core (3.4.4)
69
+ rspec-support (~> 3.4.0)
70
+ rspec-expectations (3.4.0)
71
+ diff-lcs (>= 1.2.0, < 2.0)
72
+ rspec-support (~> 3.4.0)
73
+ rspec-its (1.2.0)
74
+ rspec-core (>= 3.0.0)
75
+ rspec-expectations (>= 3.0.0)
76
+ rspec-mocks (3.4.1)
77
+ diff-lcs (>= 1.2.0, < 2.0)
78
+ rspec-support (~> 3.4.0)
79
+ rspec-support (3.4.1)
80
+ simplecov (0.11.2)
81
+ docile (~> 1.1.0)
82
+ json (~> 1.8)
83
+ simplecov-html (~> 0.10.0)
84
+ simplecov-html (0.10.0)
85
+ sqlite3 (1.3.11)
86
+ thor (0.19.1)
87
+ timecop (0.8.1)
88
+ tzinfo (0.3.50)
89
+ yard (0.8.7.6)
90
+
91
+ PLATFORMS
92
+ ruby
93
+
94
+ DEPENDENCIES
95
+ activerecord!
96
+ activerecord-jdbcsqlite3-adapter
97
+ appraisal (~> 2.1.0)
98
+ aruba
99
+ bourne
100
+ cucumber (~> 1.3.15)
101
+ factory_girl!
102
+ jdbc-sqlite3
103
+ mocha (>= 0.12.8)
104
+ rspec (~> 3.0)
105
+ rspec-its (~> 1.0)
106
+ simplecov
107
+ sqlite3 (~> 1.3.10)
108
+ timecop
109
+ yard
110
+
111
+ BUNDLED WITH
112
+ 1.13.6
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
6
+ gem "jdbc-sqlite3", :platforms => :jruby
7
+ gem "sqlite3", "~> 1.3.10", :platforms => :ruby
8
+ gem "activerecord", "~> 4.0.13"
9
+
10
+ gemspec :path => "../"
@@ -0,0 +1,112 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_girl (4.8.0)
5
+ activesupport (>= 3.0.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (4.0.13)
11
+ activesupport (= 4.0.13)
12
+ builder (~> 3.1.0)
13
+ activerecord (4.0.13)
14
+ activemodel (= 4.0.13)
15
+ activerecord-deprecated_finders (~> 1.0.2)
16
+ activesupport (= 4.0.13)
17
+ arel (~> 4.0.0)
18
+ activerecord-deprecated_finders (1.0.4)
19
+ activesupport (4.0.13)
20
+ i18n (~> 0.6, >= 0.6.9)
21
+ minitest (~> 4.2)
22
+ multi_json (~> 1.3)
23
+ thread_safe (~> 0.1)
24
+ tzinfo (~> 0.3.37)
25
+ appraisal (2.1.0)
26
+ bundler
27
+ rake
28
+ thor (>= 0.14.0)
29
+ arel (4.0.2)
30
+ aruba (0.14.1)
31
+ childprocess (~> 0.5.6)
32
+ contracts (~> 0.9)
33
+ cucumber (>= 1.3.19)
34
+ ffi (~> 1.9.10)
35
+ rspec-expectations (>= 2.99)
36
+ thor (~> 0.19)
37
+ bourne (1.6.0)
38
+ mocha (~> 1.1)
39
+ builder (3.1.4)
40
+ childprocess (0.5.9)
41
+ ffi (~> 1.0, >= 1.0.11)
42
+ contracts (0.14.0)
43
+ cucumber (1.3.20)
44
+ builder (>= 2.1.2)
45
+ diff-lcs (>= 1.1.3)
46
+ gherkin (~> 2.12)
47
+ multi_json (>= 1.7.5, < 2.0)
48
+ multi_test (>= 0.1.2)
49
+ diff-lcs (1.2.5)
50
+ docile (1.1.5)
51
+ ffi (1.9.10)
52
+ gherkin (2.12.2)
53
+ multi_json (~> 1.3)
54
+ i18n (0.7.0)
55
+ json (1.8.3)
56
+ metaclass (0.0.4)
57
+ minitest (4.7.5)
58
+ mocha (1.1.0)
59
+ metaclass (~> 0.0.1)
60
+ multi_json (1.12.1)
61
+ multi_test (0.1.2)
62
+ rake (11.2.2)
63
+ rspec (3.4.0)
64
+ rspec-core (~> 3.4.0)
65
+ rspec-expectations (~> 3.4.0)
66
+ rspec-mocks (~> 3.4.0)
67
+ rspec-core (3.4.4)
68
+ rspec-support (~> 3.4.0)
69
+ rspec-expectations (3.4.0)
70
+ diff-lcs (>= 1.2.0, < 2.0)
71
+ rspec-support (~> 3.4.0)
72
+ rspec-its (1.2.0)
73
+ rspec-core (>= 3.0.0)
74
+ rspec-expectations (>= 3.0.0)
75
+ rspec-mocks (3.4.1)
76
+ diff-lcs (>= 1.2.0, < 2.0)
77
+ rspec-support (~> 3.4.0)
78
+ rspec-support (3.4.1)
79
+ simplecov (0.11.2)
80
+ docile (~> 1.1.0)
81
+ json (~> 1.8)
82
+ simplecov-html (~> 0.10.0)
83
+ simplecov-html (0.10.0)
84
+ sqlite3 (1.3.11)
85
+ thor (0.19.1)
86
+ thread_safe (0.3.5)
87
+ timecop (0.8.1)
88
+ tzinfo (0.3.50)
89
+ yard (0.8.7.6)
90
+
91
+ PLATFORMS
92
+ ruby
93
+
94
+ DEPENDENCIES
95
+ activerecord (~> 4.0.13)
96
+ activerecord-jdbcsqlite3-adapter
97
+ appraisal (~> 2.1.0)
98
+ aruba
99
+ bourne
100
+ cucumber (~> 1.3.15)
101
+ factory_girl!
102
+ jdbc-sqlite3
103
+ mocha (>= 0.12.8)
104
+ rspec (~> 3.0)
105
+ rspec-its (~> 1.0)
106
+ simplecov
107
+ sqlite3 (~> 1.3.10)
108
+ timecop
109
+ yard
110
+
111
+ BUNDLED WITH
112
+ 1.13.6