factory_girl 4.5.0 → 4.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +25 -5
  3. data/Appraisals +11 -7
  4. data/CONTRIBUTING.md +44 -6
  5. data/GETTING_STARTED.md +175 -59
  6. data/Gemfile +5 -0
  7. data/Gemfile.lock +86 -63
  8. data/LICENSE +1 -1
  9. data/NEWS +12 -1
  10. data/README.md +21 -10
  11. data/Rakefile +1 -3
  12. data/factory_girl.gemspec +6 -14
  13. data/gemfiles/3.2.gemfile +4 -1
  14. data/gemfiles/3.2.gemfile.lock +84 -52
  15. data/gemfiles/4.0.gemfile +4 -1
  16. data/gemfiles/4.0.gemfile.lock +75 -49
  17. data/gemfiles/4.1.gemfile +4 -1
  18. data/gemfiles/4.1.gemfile.lock +78 -48
  19. data/gemfiles/4.2.gemfile +10 -0
  20. data/gemfiles/4.2.gemfile.lock +123 -0
  21. data/gemfiles/5.0.gemfile +10 -0
  22. data/gemfiles/5.0.gemfile.lock +126 -0
  23. data/lib/factory_girl.rb +13 -4
  24. data/lib/factory_girl/attribute/dynamic.rb +4 -1
  25. data/lib/factory_girl/attribute_assigner.rb +2 -2
  26. data/lib/factory_girl/configuration.rb +4 -0
  27. data/lib/factory_girl/decorator.rb +2 -2
  28. data/lib/factory_girl/decorator/class_key_hash.rb +2 -1
  29. data/lib/factory_girl/definition_proxy.rb +2 -2
  30. data/lib/factory_girl/evaluator.rb +4 -0
  31. data/lib/factory_girl/factory_runner.rb +7 -1
  32. data/lib/factory_girl/find_definitions.rb +1 -1
  33. data/lib/factory_girl/linter.rb +65 -14
  34. data/lib/factory_girl/strategy/stub.rb +25 -1
  35. data/lib/factory_girl/strategy_syntax_method_registrar.rb +4 -0
  36. data/lib/factory_girl/version.rb +1 -1
  37. metadata +26 -185
  38. data/features/find_definitions.feature +0 -75
  39. data/features/step_definitions/database_steps.rb +0 -9
  40. data/features/step_definitions/factory_girl_steps.rb +0 -36
  41. data/features/support/env.rb +0 -10
  42. data/features/support/factories.rb +0 -16
  43. data/gemfiles/3.1.gemfile +0 -7
  44. data/gemfiles/3.1.gemfile.lock +0 -91
  45. data/spec/acceptance/activesupport_instrumentation_spec.rb +0 -62
  46. data/spec/acceptance/aliases_spec.rb +0 -19
  47. data/spec/acceptance/attribute_aliases_spec.rb +0 -45
  48. data/spec/acceptance/attribute_existing_on_object_spec.rb +0 -68
  49. data/spec/acceptance/attributes_for_spec.rb +0 -97
  50. data/spec/acceptance/attributes_from_instance_spec.rb +0 -53
  51. data/spec/acceptance/attributes_ordered_spec.rb +0 -51
  52. data/spec/acceptance/build_list_spec.rb +0 -56
  53. data/spec/acceptance/build_spec.rb +0 -86
  54. data/spec/acceptance/build_stubbed_spec.rb +0 -161
  55. data/spec/acceptance/callbacks_spec.rb +0 -253
  56. data/spec/acceptance/create_list_spec.rb +0 -97
  57. data/spec/acceptance/create_pair_spec.rb +0 -32
  58. data/spec/acceptance/create_spec.rb +0 -116
  59. data/spec/acceptance/define_child_before_parent_spec.rb +0 -21
  60. data/spec/acceptance/defining_methods_inside_a_factory_spec.rb +0 -17
  61. data/spec/acceptance/definition_camel_string_spec.rb +0 -15
  62. data/spec/acceptance/definition_spec.rb +0 -21
  63. data/spec/acceptance/definition_without_block_spec.rb +0 -15
  64. data/spec/acceptance/global_initialize_with_spec.rb +0 -82
  65. data/spec/acceptance/global_to_create_spec.rb +0 -122
  66. data/spec/acceptance/initialize_with_spec.rb +0 -217
  67. data/spec/acceptance/keyed_by_class_spec.rb +0 -22
  68. data/spec/acceptance/lint_spec.rb +0 -65
  69. data/spec/acceptance/modify_factories_spec.rb +0 -184
  70. data/spec/acceptance/modify_inherited_spec.rb +0 -52
  71. data/spec/acceptance/nested_attributes_spec.rb +0 -32
  72. data/spec/acceptance/overrides_spec.rb +0 -61
  73. data/spec/acceptance/parent_spec.rb +0 -90
  74. data/spec/acceptance/private_attributes_spec.rb +0 -20
  75. data/spec/acceptance/register_strategies_spec.rb +0 -136
  76. data/spec/acceptance/sequence_context_spec.rb +0 -52
  77. data/spec/acceptance/sequence_spec.rb +0 -61
  78. data/spec/acceptance/skip_create_spec.rb +0 -19
  79. data/spec/acceptance/stub_spec.rb +0 -62
  80. data/spec/acceptance/syntax_methods_within_dynamic_attributes_spec.rb +0 -51
  81. data/spec/acceptance/traits_spec.rb +0 -727
  82. data/spec/acceptance/transient_attributes_spec.rb +0 -151
  83. data/spec/factory_girl/aliases_spec.rb +0 -31
  84. data/spec/factory_girl/attribute/association_spec.rb +0 -28
  85. data/spec/factory_girl/attribute/dynamic_spec.rb +0 -52
  86. data/spec/factory_girl/attribute/sequence_spec.rb +0 -16
  87. data/spec/factory_girl/attribute/static_spec.rb +0 -19
  88. data/spec/factory_girl/attribute_list_spec.rb +0 -143
  89. data/spec/factory_girl/attribute_spec.rb +0 -16
  90. data/spec/factory_girl/callback_spec.rb +0 -41
  91. data/spec/factory_girl/declaration/implicit_spec.rb +0 -25
  92. data/spec/factory_girl/declaration_list_spec.rb +0 -67
  93. data/spec/factory_girl/definition_proxy_spec.rb +0 -215
  94. data/spec/factory_girl/definition_spec.rb +0 -64
  95. data/spec/factory_girl/disallows_duplicates_registry_spec.rb +0 -19
  96. data/spec/factory_girl/evaluator_class_definer_spec.rb +0 -77
  97. data/spec/factory_girl/factory_spec.rb +0 -259
  98. data/spec/factory_girl/find_definitions_spec.rb +0 -110
  99. data/spec/factory_girl/null_factory_spec.rb +0 -13
  100. data/spec/factory_girl/null_object_spec.rb +0 -22
  101. data/spec/factory_girl/registry_spec.rb +0 -68
  102. data/spec/factory_girl/sequence_spec.rb +0 -95
  103. data/spec/factory_girl/strategy/attributes_for_spec.rb +0 -18
  104. data/spec/factory_girl/strategy/build_spec.rb +0 -7
  105. data/spec/factory_girl/strategy/create_spec.rb +0 -25
  106. data/spec/factory_girl/strategy/stub_spec.rb +0 -38
  107. data/spec/factory_girl/strategy_calculator_spec.rb +0 -29
  108. data/spec/factory_girl_spec.rb +0 -22
  109. data/spec/spec_helper.rb +0 -26
  110. data/spec/support/macros/define_constant.rb +0 -86
  111. data/spec/support/matchers/callback.rb +0 -9
  112. data/spec/support/matchers/declaration.rb +0 -83
  113. data/spec/support/matchers/delegate.rb +0 -44
  114. data/spec/support/matchers/trait.rb +0 -11
  115. data/spec/support/shared_examples/strategy.rb +0 -90
@@ -1,85 +1,102 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- factory_girl (4.5.0)
4
+ factory_girl (4.7.0)
5
5
  activesupport (>= 3.0.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (4.0.0)
11
- activesupport (= 4.0.0)
12
- builder (~> 3.1.0)
13
- activerecord (4.0.0)
14
- activemodel (= 4.0.0)
15
- activerecord-deprecated_finders (~> 1.0.2)
16
- activesupport (= 4.0.0)
17
- arel (~> 4.0.0)
18
- activerecord-deprecated_finders (1.0.3)
19
- activesupport (4.0.0)
20
- i18n (~> 0.6, >= 0.6.4)
21
- minitest (~> 4.2)
22
- multi_json (~> 1.3)
23
- thread_safe (~> 0.1)
24
- tzinfo (~> 0.3.37)
25
- appraisal (1.0.0)
10
+ activemodel (4.2.5.1)
11
+ activesupport (= 4.2.5.1)
12
+ builder (~> 3.1)
13
+ activerecord (4.2.5.1)
14
+ activemodel (= 4.2.5.1)
15
+ activesupport (= 4.2.5.1)
16
+ arel (~> 6.0)
17
+ activerecord-jdbc-adapter (1.3.19)
18
+ activerecord (>= 2.2)
19
+ activerecord-jdbcsqlite3-adapter (1.3.19)
20
+ activerecord-jdbc-adapter (~> 1.3.19)
21
+ jdbc-sqlite3 (>= 3.7.2, < 3.9)
22
+ activesupport (4.2.5.1)
23
+ i18n (~> 0.7)
24
+ json (~> 1.7, >= 1.7.7)
25
+ minitest (~> 5.1)
26
+ thread_safe (~> 0.3, >= 0.3.4)
27
+ tzinfo (~> 1.1)
28
+ appraisal (2.1.0)
26
29
  bundler
27
30
  rake
28
31
  thor (>= 0.14.0)
29
- arel (4.0.2)
30
- aruba (0.5.3)
31
- childprocess (>= 0.3.6)
32
- cucumber (>= 1.1.1)
33
- rspec-expectations (>= 2.7.0)
34
- atomic (1.1.10)
35
- atomic (1.1.10-java)
36
- bourne (1.5.0)
37
- mocha (>= 0.13.2, < 0.15)
38
- builder (3.1.4)
39
- childprocess (0.3.9)
32
+ arel (6.0.3)
33
+ aruba (0.13.0)
34
+ childprocess (~> 0.5.6)
35
+ contracts (~> 0.9)
36
+ cucumber (>= 1.3.19)
37
+ ffi (~> 1.9.10)
38
+ rspec-expectations (>= 2.99)
39
+ thor (~> 0.19)
40
+ bourne (1.6.0)
41
+ mocha (~> 1.1)
42
+ builder (3.2.2)
43
+ childprocess (0.5.9)
40
44
  ffi (~> 1.0, >= 1.0.11)
41
- cucumber (1.3.15)
45
+ contracts (0.13.0)
46
+ cucumber (1.3.20)
42
47
  builder (>= 2.1.2)
43
48
  diff-lcs (>= 1.1.3)
44
49
  gherkin (~> 2.12)
45
50
  multi_json (>= 1.7.5, < 2.0)
46
- multi_test (>= 0.1.1)
47
- diff-lcs (1.1.3)
48
- ffi (1.9.0)
49
- ffi (1.9.0-java)
51
+ multi_test (>= 0.1.2)
52
+ diff-lcs (1.2.5)
53
+ docile (1.1.5)
54
+ ffi (1.9.10)
55
+ ffi (1.9.10-java)
50
56
  gherkin (2.12.2)
51
57
  multi_json (~> 1.3)
52
58
  gherkin (2.12.2-java)
53
59
  multi_json (~> 1.3)
54
- i18n (0.6.4)
55
- metaclass (0.0.1)
56
- minitest (4.7.5)
57
- mocha (0.14.0)
60
+ i18n (0.7.0)
61
+ jdbc-sqlite3 (3.8.11.2)
62
+ json (1.8.3)
63
+ json (1.8.3-java)
64
+ metaclass (0.0.4)
65
+ minitest (5.8.4)
66
+ mocha (1.1.0)
58
67
  metaclass (~> 0.0.1)
59
- multi_json (1.10.1)
60
- multi_test (0.1.1)
61
- rake (10.3.2)
62
- rspec (2.12.0)
63
- rspec-core (~> 2.12.0)
64
- rspec-expectations (~> 2.12.0)
65
- rspec-mocks (~> 2.12.0)
66
- rspec-core (2.12.2)
67
- rspec-expectations (2.12.1)
68
- diff-lcs (~> 1.1.3)
69
- rspec-mocks (2.12.2)
70
- simplecov (0.7.1)
71
- multi_json (~> 1.0)
72
- simplecov-html (~> 0.7.1)
73
- simplecov-html (0.7.1)
74
- sqlite3 (1.3.8)
68
+ multi_json (1.11.2)
69
+ multi_test (0.1.2)
70
+ rake (10.5.0)
71
+ rspec (3.4.0)
72
+ rspec-core (~> 3.4.0)
73
+ rspec-expectations (~> 3.4.0)
74
+ rspec-mocks (~> 3.4.0)
75
+ rspec-core (3.4.2)
76
+ rspec-support (~> 3.4.0)
77
+ rspec-expectations (3.4.0)
78
+ diff-lcs (>= 1.2.0, < 2.0)
79
+ rspec-support (~> 3.4.0)
80
+ rspec-its (1.2.0)
81
+ rspec-core (>= 3.0.0)
82
+ rspec-expectations (>= 3.0.0)
83
+ rspec-mocks (3.4.1)
84
+ diff-lcs (>= 1.2.0, < 2.0)
85
+ rspec-support (~> 3.4.0)
86
+ rspec-support (3.4.1)
87
+ simplecov (0.11.2)
88
+ docile (~> 1.1.0)
89
+ json (~> 1.8)
90
+ simplecov-html (~> 0.10.0)
91
+ simplecov-html (0.10.0)
92
+ sqlite3 (1.3.11)
75
93
  thor (0.19.1)
76
- thread_safe (0.1.2)
77
- atomic
78
- thread_safe (0.1.2-java)
79
- atomic
80
- timecop (0.6.2.2)
81
- tzinfo (0.3.37)
82
- yard (0.8.7)
94
+ thread_safe (0.3.5)
95
+ thread_safe (0.3.5-java)
96
+ timecop (0.8.0)
97
+ tzinfo (1.2.2)
98
+ thread_safe (~> 0.1)
99
+ yard (0.8.7.6)
83
100
 
84
101
  PLATFORMS
85
102
  java
@@ -87,14 +104,20 @@ PLATFORMS
87
104
 
88
105
  DEPENDENCIES
89
106
  activerecord (>= 3.0.0)
90
- appraisal (~> 1.0.0)
107
+ activerecord-jdbcsqlite3-adapter
108
+ appraisal (~> 2.1.0)
91
109
  aruba
92
110
  bourne
93
111
  cucumber (~> 1.3.15)
94
112
  factory_girl!
113
+ jdbc-sqlite3
95
114
  mocha (>= 0.12.8)
96
- rspec (~> 2.12.0)
115
+ rspec (~> 3.0)
116
+ rspec-its (~> 1.0)
97
117
  simplecov
98
- sqlite3
118
+ sqlite3 (~> 1.3.10)
99
119
  timecop
100
120
  yard
121
+
122
+ BUNDLED WITH
123
+ 1.11.2
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2008-2014 Joe Ferris and thoughtbot, inc.
1
+ Copyright (c) 2008-2016 Joe Ferris and thoughtbot, inc.
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
data/NEWS CHANGED
@@ -1,3 +1,14 @@
1
+ 4.7.0 (April 1, 2016)
2
+ Improve documentation
3
+ Improve instrumentation payload to include traits, overrides, and the factory itself
4
+ Allow linting of traits
5
+ Deprecate factory lookup by class name in preparation for 5.0
6
+ Improve internal performance by using flat_map instead of map and compact
7
+ Improve handling of dirty attributes after building a stubbed object
8
+ Reduce warnings from redefining methods
9
+
10
+ 4.6.0 (skipped)
11
+
1
12
  4.5.0 (October 17, 2014)
2
13
  Improve FactoryGirl.lint by including exception and message in output
3
14
  Allow selective linting
@@ -113,7 +124,7 @@
113
124
 
114
125
  2.6.3 (March 9, 2012)
115
126
  Fix issue with traits not being present the first time a factory is accessed
116
- Update available Cucumber step definitions to not require a trialing colon
127
+ Update available Cucumber step definitions to not require a trailing colon
117
128
  when building a table of attributes to instantiate records with
118
129
 
119
130
  2.6.2 (March 9, 2012)
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # factory_girl [![Build Status](https://secure.travis-ci.org/thoughtbot/factory_girl.png)](http://travis-ci.org/thoughtbot/factory_girl?branch=master) [![Dependency Status](https://gemnasium.com/thoughtbot/factory_girl.png)](https://gemnasium.com/thoughtbot/factory_girl) [![Code Climate](https://codeclimate.com/github/thoughtbot/factory_girl.png)](https://codeclimate.com/github/thoughtbot/factory_girl)
1
+ # factory_girl [![Build Status](https://travis-ci.org/thoughtbot/factory_girl.svg)](http://travis-ci.org/thoughtbot/factory_girl?branch=master) [![Dependency Status](https://gemnasium.com/thoughtbot/factory_girl.svg)](https://gemnasium.com/thoughtbot/factory_girl) [![Code Climate](https://img.shields.io/codeclimate/github/thoughtbot/factory_girl.svg)](https://codeclimate.com/github/thoughtbot/factory_girl)
2
2
 
3
3
  factory_girl 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
4
 
@@ -10,7 +10,10 @@ Documentation
10
10
 
11
11
  You should find the documentation for your version of factory_girl on [Rubygems](https://rubygems.org/gems/factory_girl).
12
12
 
13
- See [GETTING_STARTED] for information on defining and using factories.
13
+ See [GETTING_STARTED] for information on defining and using factories. We also
14
+ have [a detailed introductory video][], available for free on Upcase.
15
+
16
+ [a detailed introductory video]: https://upcase.com/videos/factory-girl?utm_source=github&utm_medium=open-source&utm_campaign=factory-girl
14
17
 
15
18
  Install
16
19
  --------
@@ -49,20 +52,28 @@ Contributing
49
52
 
50
53
  Please see [CONTRIBUTING.md](https://github.com/thoughtbot/factory_girl/blob/master/CONTRIBUTING.md).
51
54
 
52
- Credits
53
- -------
54
-
55
55
  factory_girl was originally written by Joe Ferris and is now maintained by Josh
56
56
  Clayton. Many improvements and bugfixes were contributed by the [open source
57
57
  community](https://github.com/thoughtbot/factory_girl/graphs/contributors).
58
58
 
59
- ![thoughtbot](http://thoughtbot.com/assets/tm/logo.png)
59
+ License
60
+ -------
61
+
62
+ factory_girl is Copyright © 2008-2016 Joe Ferris and thoughtbot. It is free
63
+ software, and may be redistributed under the terms specified in the
64
+ [LICENSE](/LICENSE) file.
65
+
66
+ About thoughtbot
67
+ ----------------
60
68
 
61
- factory_girl is maintained and funded by [thoughtbot, inc](http://thoughtbot.com/community)
69
+ ![thoughtbot](https://thoughtbot.com/logo.png)
62
70
 
71
+ factory_girl is maintained and funded by thoughtbot, inc.
63
72
  The names and logos for thoughtbot are trademarks of thoughtbot, inc.
64
73
 
65
- License
66
- -------
74
+ We love open source software!
75
+ See [our other projects][community] or
76
+ [hire us][hire] to design, develop, and grow your product.
67
77
 
68
- factory_girl is Copyright © 2008-2014 Joe Ferris and thoughtbot. It is free software, and may be redistributed under the terms specified in the [LICENSE](https://github.com/thoughtbot/factory_girl/blob/master/LICENSE) file.
78
+ [community]: https://thoughtbot.com/community?utm_source=github
79
+ [hire]: https://thoughtbot.com?utm_source=github
data/Rakefile CHANGED
@@ -9,9 +9,7 @@ require 'cucumber/rake/task'
9
9
  Bundler::GemHelper.install_tasks
10
10
 
11
11
  desc 'Default: run the specs and features.'
12
- task :default do
13
- system("bundle exec rake -s appraisal spec:unit spec:acceptance features;")
14
- end
12
+ task default: %w(spec:unit spec:acceptance features)
15
13
 
16
14
  namespace :spec do
17
15
  desc "Run unit specs"
@@ -10,10 +10,9 @@ Gem::Specification.new do |s|
10
10
  using factories - less error-prone, more explicit, and
11
11
  all-around easier to work with than fixtures.}
12
12
 
13
- s.files = `git ls-files`.split("\n")
14
- s.test_files = `git ls-files -- Appraisals {spec,features,gemfiles}/*`.split("\n")
13
+ s.files = `git ls-files`.split("\n").reject { |f| f.match(%r{^(spec|features)/}) }
15
14
 
16
- s.require_paths = ['lib']
15
+ s.require_path = 'lib'
17
16
  s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
18
17
 
19
18
  s.authors = ["Josh Clayton", "Joe Ferris"]
@@ -23,24 +22,17 @@ Gem::Specification.new do |s|
23
22
 
24
23
  s.add_dependency("activesupport", ">= 3.0.0")
25
24
 
26
- s.add_development_dependency("rspec", "~> 2.12.0")
25
+ s.add_development_dependency("rspec", "~> 3.0")
26
+ s.add_development_dependency("rspec-its", "~> 1.0")
27
27
  s.add_development_dependency("cucumber", "~> 1.3.15")
28
28
  s.add_development_dependency("timecop")
29
29
  s.add_development_dependency("simplecov")
30
30
  s.add_development_dependency("aruba")
31
31
  s.add_development_dependency("mocha", ">= 0.12.8")
32
32
  s.add_development_dependency("bourne")
33
- s.add_development_dependency("appraisal", "~> 1.0.0")
33
+ s.add_development_dependency("appraisal", "~> 2.1.0")
34
34
  s.add_development_dependency("activerecord", ">= 3.0.0")
35
-
36
- if RUBY_PLATFORM == "java"
37
- s.add_development_dependency("activerecord-jdbcsqlite3-adapter")
38
- s.add_development_dependency("jdbc-sqlite3")
39
- else
40
- s.add_development_dependency("sqlite3")
41
- end
42
-
43
35
  s.add_development_dependency("yard")
36
+
44
37
  s.license = "MIT"
45
38
  end
46
-
@@ -2,6 +2,9 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activerecord", "~> 3.2.15"
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"
6
9
 
7
10
  gemspec :path => "../"
@@ -1,91 +1,123 @@
1
+ GIT
2
+ remote: https://github.com/rails/rails.git
3
+ revision: 9892626579d1c62c367e5344a1d1642708340f88
4
+ branch: 3-2-stable
5
+ specs:
6
+ activemodel (3.2.22.1)
7
+ activesupport (= 3.2.22.1)
8
+ builder (~> 3.0.0)
9
+ activerecord (3.2.22.1)
10
+ activemodel (= 3.2.22.1)
11
+ activesupport (= 3.2.22.1)
12
+ arel (~> 3.0.2)
13
+ tzinfo (~> 0.3.29)
14
+ activesupport (3.2.22.1)
15
+ i18n (~> 0.6, >= 0.6.4)
16
+ multi_json (~> 1.0)
17
+
1
18
  PATH
2
19
  remote: ../
3
20
  specs:
4
- factory_girl (4.5.0)
21
+ factory_girl (4.7.0)
5
22
  activesupport (>= 3.0.0)
6
23
 
7
24
  GEM
8
25
  remote: https://rubygems.org/
9
26
  specs:
10
- activemodel (3.2.15)
11
- activesupport (= 3.2.15)
12
- builder (~> 3.0.0)
13
- activerecord (3.2.15)
14
- activemodel (= 3.2.15)
15
- activesupport (= 3.2.15)
16
- arel (~> 3.0.2)
17
- tzinfo (~> 0.3.29)
18
- activesupport (3.2.15)
19
- i18n (~> 0.6, >= 0.6.4)
20
- multi_json (~> 1.0)
21
- appraisal (1.0.0)
27
+ activerecord-jdbc-adapter (1.3.19)
28
+ activerecord (>= 2.2)
29
+ activerecord-jdbcsqlite3-adapter (1.3.19)
30
+ activerecord-jdbc-adapter (~> 1.3.19)
31
+ jdbc-sqlite3 (>= 3.7.2, < 3.9)
32
+ appraisal (2.1.0)
22
33
  bundler
23
34
  rake
24
35
  thor (>= 0.14.0)
25
- arel (3.0.2)
26
- aruba (0.5.3)
27
- childprocess (>= 0.3.6)
28
- cucumber (>= 1.1.1)
29
- rspec-expectations (>= 2.7.0)
30
- bourne (1.5.0)
31
- mocha (>= 0.13.2, < 0.15)
36
+ arel (3.0.3)
37
+ aruba (0.13.0)
38
+ childprocess (~> 0.5.6)
39
+ contracts (~> 0.9)
40
+ cucumber (>= 1.3.19)
41
+ ffi (~> 1.9.10)
42
+ rspec-expectations (>= 2.99)
43
+ thor (~> 0.19)
44
+ bourne (1.6.0)
45
+ mocha (~> 1.1)
32
46
  builder (3.0.4)
33
- childprocess (0.3.9)
47
+ childprocess (0.5.9)
34
48
  ffi (~> 1.0, >= 1.0.11)
35
- cucumber (1.3.15)
49
+ contracts (0.13.0)
50
+ cucumber (1.3.20)
36
51
  builder (>= 2.1.2)
37
52
  diff-lcs (>= 1.1.3)
38
53
  gherkin (~> 2.12)
39
54
  multi_json (>= 1.7.5, < 2.0)
40
- multi_test (>= 0.1.1)
41
- diff-lcs (1.1.3)
42
- docile (1.1.3)
43
- ffi (1.9.3)
44
- ffi (1.9.3-java)
55
+ multi_test (>= 0.1.2)
56
+ diff-lcs (1.2.5)
57
+ docile (1.1.5)
58
+ ffi (1.9.10)
59
+ ffi (1.9.10-java)
45
60
  gherkin (2.12.2)
46
61
  multi_json (~> 1.3)
47
62
  gherkin (2.12.2-java)
48
63
  multi_json (~> 1.3)
49
- i18n (0.6.9)
64
+ i18n (0.7.0)
65
+ jdbc-sqlite3 (3.8.11.2)
66
+ json (1.8.3)
67
+ json (1.8.3-java)
50
68
  metaclass (0.0.4)
51
- mocha (0.14.0)
69
+ mocha (1.1.0)
52
70
  metaclass (~> 0.0.1)
53
- multi_json (1.10.1)
54
- multi_test (0.1.1)
55
- rake (10.3.2)
56
- rspec (2.12.0)
57
- rspec-core (~> 2.12.0)
58
- rspec-expectations (~> 2.12.0)
59
- rspec-mocks (~> 2.12.0)
60
- rspec-core (2.12.2)
61
- rspec-expectations (2.12.1)
62
- diff-lcs (~> 1.1.3)
63
- rspec-mocks (2.12.2)
64
- simplecov (0.8.2)
71
+ multi_json (1.11.2)
72
+ multi_test (0.1.2)
73
+ rake (10.5.0)
74
+ rspec (3.4.0)
75
+ rspec-core (~> 3.4.0)
76
+ rspec-expectations (~> 3.4.0)
77
+ rspec-mocks (~> 3.4.0)
78
+ rspec-core (3.4.2)
79
+ rspec-support (~> 3.4.0)
80
+ rspec-expectations (3.4.0)
81
+ diff-lcs (>= 1.2.0, < 2.0)
82
+ rspec-support (~> 3.4.0)
83
+ rspec-its (1.2.0)
84
+ rspec-core (>= 3.0.0)
85
+ rspec-expectations (>= 3.0.0)
86
+ rspec-mocks (3.4.1)
87
+ diff-lcs (>= 1.2.0, < 2.0)
88
+ rspec-support (~> 3.4.0)
89
+ rspec-support (3.4.1)
90
+ simplecov (0.11.2)
65
91
  docile (~> 1.1.0)
66
- multi_json
67
- simplecov-html (~> 0.8.0)
68
- simplecov-html (0.8.0)
69
- sqlite3 (1.3.8)
92
+ json (~> 1.8)
93
+ simplecov-html (~> 0.10.0)
94
+ simplecov-html (0.10.0)
95
+ sqlite3 (1.3.11)
70
96
  thor (0.19.1)
71
- timecop (0.7.1)
72
- tzinfo (0.3.39)
73
- yard (0.8.7.3)
97
+ timecop (0.8.0)
98
+ tzinfo (0.3.46)
99
+ yard (0.8.7.6)
74
100
 
75
101
  PLATFORMS
76
102
  java
77
103
  ruby
78
104
 
79
105
  DEPENDENCIES
80
- activerecord (~> 3.2.15)
81
- appraisal (~> 1.0.0)
106
+ activerecord!
107
+ activerecord-jdbcsqlite3-adapter
108
+ appraisal (~> 2.1.0)
82
109
  aruba
83
110
  bourne
84
111
  cucumber (~> 1.3.15)
85
112
  factory_girl!
113
+ jdbc-sqlite3
86
114
  mocha (>= 0.12.8)
87
- rspec (~> 2.12.0)
115
+ rspec (~> 3.0)
116
+ rspec-its (~> 1.0)
88
117
  simplecov
89
- sqlite3
118
+ sqlite3 (~> 1.3.10)
90
119
  timecop
91
120
  yard
121
+
122
+ BUNDLED WITH
123
+ 1.11.2