shoulda-matchers 3.1.3 → 4.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.hound/ruby.yml +336 -316
- data/.python-version +1 -0
- data/.rubocop.yml +3 -1
- data/.travis.yml +7 -6
- data/Appraisals +76 -44
- data/CONTRIBUTING.md +137 -66
- data/Gemfile +5 -5
- data/Gemfile.lock +30 -35
- data/MAINTAINING.md +250 -0
- data/MIT-LICENSE +1 -1
- data/NEWS.md +176 -4
- data/README.md +138 -200
- data/Rakefile +7 -0
- data/bin/setup +190 -0
- data/doc_config/yard/templates/default/fulldoc/html/css/global.css +4 -0
- data/doc_config/yard/templates/default/fulldoc/html/full_list.erb +0 -6
- data/doc_config/yard/templates/default/fulldoc/html/js/app.js +0 -17
- data/doc_config/yard/templates/default/fulldoc/html/setup.rb +27 -0
- data/gemfiles/4.2.gemfile +21 -20
- data/gemfiles/4.2.gemfile.lock +143 -140
- data/gemfiles/5.0.gemfile +37 -0
- data/gemfiles/5.0.gemfile.lock +238 -0
- data/gemfiles/5.1.gemfile +38 -0
- data/gemfiles/5.1.gemfile.lock +254 -0
- data/gemfiles/5.2.gemfile +40 -0
- data/gemfiles/5.2.gemfile.lock +273 -0
- data/lib/shoulda/matchers/action_controller/callback_matcher.rb +18 -6
- data/lib/shoulda/matchers/action_controller/permit_matcher.rb +6 -1
- data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +1 -1
- data/lib/shoulda/matchers/action_controller/route_matcher.rb +87 -27
- data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +1 -0
- data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter.rb +0 -4
- data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +5 -0
- data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +5 -0
- data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +26 -11
- data/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +39 -4
- data/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +116 -47
- data/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +127 -38
- data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +55 -37
- data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +30 -1
- data/lib/shoulda/matchers/active_model/validation_matcher.rb +11 -4
- data/lib/shoulda/matchers/active_model/validation_matcher/build_description.rb +11 -6
- data/lib/shoulda/matchers/active_record.rb +3 -0
- data/lib/shoulda/matchers/active_record/association_matcher.rb +172 -22
- data/lib/shoulda/matchers/active_record/association_matchers/join_table_matcher.rb +1 -1
- data/lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb +11 -6
- data/lib/shoulda/matchers/active_record/association_matchers/optional_matcher.rb +46 -0
- data/lib/shoulda/matchers/active_record/association_matchers/required_matcher.rb +51 -0
- data/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +268 -38
- data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +1 -1
- data/lib/shoulda/matchers/active_record/have_secure_token_matcher.rb +111 -0
- data/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +207 -79
- data/lib/shoulda/matchers/doublespeak/object_double.rb +5 -1
- data/lib/shoulda/matchers/independent/delegate_method_matcher.rb +100 -21
- data/lib/shoulda/matchers/rails_shim.rb +133 -52
- data/lib/shoulda/matchers/routing.rb +2 -2
- data/lib/shoulda/matchers/util.rb +23 -1
- data/lib/shoulda/matchers/util/word_wrap.rb +6 -2
- data/lib/shoulda/matchers/version.rb +1 -1
- data/script/install_gems_in_all_appraisals +3 -1
- data/script/run_all_tests +3 -1
- data/script/supported_ruby_versions +7 -0
- data/script/update_gem_in_all_appraisals +3 -1
- data/script/update_gems_in_all_appraisals +3 -1
- data/shoulda-matchers.gemspec +3 -3
- data/spec/acceptance/independent_matchers_spec.rb +2 -2
- data/spec/acceptance/multiple_libraries_integration_spec.rb +1 -1
- data/spec/acceptance/rails_integration_spec.rb +2 -2
- data/spec/spec_helper.rb +2 -3
- data/spec/support/acceptance/helpers.rb +2 -0
- data/spec/support/acceptance/helpers/command_helpers.rb +17 -4
- data/spec/support/acceptance/helpers/rails_migration_helpers.rb +21 -0
- data/spec/support/acceptance/helpers/step_helpers.rb +1 -1
- data/spec/support/tests/current_bundle.rb +3 -9
- data/spec/support/tests/filesystem.rb +2 -2
- data/spec/support/unit/attribute.rb +0 -2
- data/spec/support/unit/capture.rb +9 -3
- data/spec/support/unit/helpers/action_pack_versions.rb +22 -0
- data/spec/support/unit/helpers/active_model_versions.rb +4 -0
- data/spec/support/unit/helpers/active_record_versions.rb +22 -2
- data/spec/support/unit/helpers/active_resource_builder.rb +2 -2
- data/spec/support/unit/helpers/controller_builder.rb +1 -1
- data/spec/support/unit/helpers/message_helpers.rb +19 -0
- data/spec/support/unit/helpers/rails_versions.rb +14 -0
- data/spec/support/unit/matchers/fail_with_message_matcher.rb +7 -5
- data/spec/support/unit/matchers/print_warning_including.rb +21 -13
- data/spec/support/unit/model_creation_strategies/active_record.rb +1 -1
- data/spec/support/unit/model_creators/active_record.rb +0 -1
- data/spec/support/unit/model_creators/basic.rb +7 -2
- data/spec/support/unit/rails_application.rb +25 -0
- data/spec/support/unit/record_validating_confirmation_builder.rb +5 -2
- data/spec/support/unit/validation_matcher_scenario.rb +0 -2
- data/spec/unit/shoulda/matchers/action_controller/callback_matcher_spec.rb +18 -18
- data/spec/unit/shoulda/matchers/action_controller/permit_matcher_spec.rb +33 -5
- data/spec/unit/shoulda/matchers/action_controller/render_template_matcher_spec.rb +1 -1
- data/spec/unit/shoulda/matchers/active_model/allow_mass_assignment_of_matcher_spec.rb +80 -78
- data/spec/unit/shoulda/matchers/active_model/allow_value_matcher_spec.rb +7 -9
- data/spec/unit/shoulda/matchers/active_model/validate_absence_of_matcher_spec.rb +28 -4
- data/spec/unit/shoulda/matchers/active_model/validate_acceptance_of_matcher_spec.rb +19 -1
- data/spec/unit/shoulda/matchers/active_model/validate_confirmation_of_matcher_spec.rb +27 -4
- data/spec/unit/shoulda/matchers/active_model/validate_exclusion_of_matcher_spec.rb +62 -5
- data/spec/unit/shoulda/matchers/active_model/validate_inclusion_of_matcher_spec.rb +52 -18
- data/spec/unit/shoulda/matchers/active_model/validate_length_of_matcher_spec.rb +51 -4
- data/spec/unit/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +99 -71
- data/spec/unit/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +41 -15
- data/spec/unit/shoulda/matchers/active_record/association_matcher_spec.rb +445 -15
- data/spec/unit/shoulda/matchers/active_record/define_enum_for_matcher_spec.rb +615 -93
- data/spec/unit/shoulda/matchers/active_record/have_secure_token_matcher_spec.rb +169 -0
- data/spec/unit/shoulda/matchers/active_record/validate_uniqueness_of_matcher_spec.rb +167 -97
- data/spec/unit/shoulda/matchers/doublespeak/world_spec.rb +2 -4
- data/spec/unit/shoulda/matchers/independent/delegate_method_matcher_spec.rb +152 -19
- data/spec/unit/shoulda/matchers/routing/route_matcher_spec.rb +258 -94
- data/spec/unit_spec_helper.rb +9 -1
- data/zeus.json +1 -1
- metadata +31 -16
- data/gemfiles/4.0.0.gemfile +0 -38
- data/gemfiles/4.0.0.gemfile.lock +0 -223
- data/gemfiles/4.0.1.gemfile +0 -38
- data/gemfiles/4.0.1.gemfile.lock +0 -225
- data/gemfiles/4.1.gemfile +0 -38
- data/gemfiles/4.1.gemfile.lock +0 -220
- data/script/SUPPORTED_VERSIONS +0 -1
data/spec/unit_spec_helper.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
require_relative 'support/unit/load_environment'
|
2
2
|
|
3
3
|
require 'rspec/rails'
|
4
|
+
require 'rspec/matchers/fail_matchers'
|
4
5
|
require 'shoulda-matchers'
|
5
6
|
|
6
7
|
require 'spec_helper'
|
@@ -10,9 +11,11 @@ Dir[ File.join(File.expand_path('../support/unit/**/*.rb', __FILE__)) ].sort.eac
|
|
10
11
|
end
|
11
12
|
|
12
13
|
RSpec.configure do |config|
|
14
|
+
config.include RSpec::Matchers::FailMatchers
|
15
|
+
|
16
|
+
UnitTests::ActionPackVersions.configure_example_group(config)
|
13
17
|
UnitTests::ActiveModelHelpers.configure_example_group(config)
|
14
18
|
UnitTests::ActiveModelVersions.configure_example_group(config)
|
15
|
-
UnitTests::ActiveResourceBuilder.configure_example_group(config)
|
16
19
|
UnitTests::ClassBuilder.configure_example_group(config)
|
17
20
|
UnitTests::ControllerBuilder.configure_example_group(config)
|
18
21
|
UnitTests::I18nFaker.configure_example_group(config)
|
@@ -24,6 +27,11 @@ RSpec.configure do |config|
|
|
24
27
|
UnitTests::DatabaseHelpers.configure_example_group(config)
|
25
28
|
UnitTests::ColumnTypeHelpers.configure_example_group(config)
|
26
29
|
UnitTests::ValidationMatcherScenarioHelpers.configure_example_group(config)
|
30
|
+
UnitTests::MessageHelpers.configure_example_group(config)
|
31
|
+
|
32
|
+
if UnitTests::RailsVersions.rails_lte_4?
|
33
|
+
UnitTests::ActiveResourceBuilder.configure_example_group(config)
|
34
|
+
end
|
27
35
|
|
28
36
|
config.include UnitTests::Matchers
|
29
37
|
|
data/zeus.json
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shoulda-matchers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.0.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tammer Saleh
|
@@ -14,7 +14,7 @@ authors:
|
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
|
-
date:
|
17
|
+
date: 2018-10-02 00:00:00.000000000 Z
|
18
18
|
dependencies:
|
19
19
|
- !ruby/object:Gem::Dependency
|
20
20
|
name: activesupport
|
@@ -22,23 +22,25 @@ dependencies:
|
|
22
22
|
requirements:
|
23
23
|
- - ">="
|
24
24
|
- !ruby/object:Gem::Version
|
25
|
-
version: 4.
|
25
|
+
version: 4.2.0
|
26
26
|
type: :runtime
|
27
27
|
prerelease: false
|
28
28
|
version_requirements: !ruby/object:Gem::Requirement
|
29
29
|
requirements:
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 4.
|
32
|
+
version: 4.2.0
|
33
33
|
description: Making tests easy on the fingers and eyes
|
34
34
|
email: support@thoughtbot.com
|
35
|
-
executables:
|
35
|
+
executables:
|
36
|
+
- setup
|
36
37
|
extensions: []
|
37
38
|
extra_rdoc_files: []
|
38
39
|
files:
|
39
40
|
- ".gitignore"
|
40
41
|
- ".hound.yml"
|
41
42
|
- ".hound/ruby.yml"
|
43
|
+
- ".python-version"
|
42
44
|
- ".rubocop.yml"
|
43
45
|
- ".travis.yml"
|
44
46
|
- ".yardopts"
|
@@ -46,10 +48,12 @@ files:
|
|
46
48
|
- CONTRIBUTING.md
|
47
49
|
- Gemfile
|
48
50
|
- Gemfile.lock
|
51
|
+
- MAINTAINING.md
|
49
52
|
- MIT-LICENSE
|
50
53
|
- NEWS.md
|
51
54
|
- README.md
|
52
55
|
- Rakefile
|
56
|
+
- bin/setup
|
53
57
|
- custom_plan.rb
|
54
58
|
- doc_config/gh-pages/index.html.erb
|
55
59
|
- doc_config/yard/setup.rb
|
@@ -75,14 +79,14 @@ files:
|
|
75
79
|
- doc_config/yard/templates/default/method_details/html/source.erb
|
76
80
|
- doc_config/yard/templates/default/module/html/box_info.erb
|
77
81
|
- docs/errors/NonCaseSwappableValueError.md
|
78
|
-
- gemfiles/4.0.0.gemfile
|
79
|
-
- gemfiles/4.0.0.gemfile.lock
|
80
|
-
- gemfiles/4.0.1.gemfile
|
81
|
-
- gemfiles/4.0.1.gemfile.lock
|
82
|
-
- gemfiles/4.1.gemfile
|
83
|
-
- gemfiles/4.1.gemfile.lock
|
84
82
|
- gemfiles/4.2.gemfile
|
85
83
|
- gemfiles/4.2.gemfile.lock
|
84
|
+
- gemfiles/5.0.gemfile
|
85
|
+
- gemfiles/5.0.gemfile.lock
|
86
|
+
- gemfiles/5.1.gemfile
|
87
|
+
- gemfiles/5.1.gemfile.lock
|
88
|
+
- gemfiles/5.2.gemfile
|
89
|
+
- gemfiles/5.2.gemfile.lock
|
86
90
|
- lib/shoulda-matchers.rb
|
87
91
|
- lib/shoulda/matchers.rb
|
88
92
|
- lib/shoulda/matchers/action_controller.rb
|
@@ -148,13 +152,16 @@ files:
|
|
148
152
|
- lib/shoulda/matchers/active_record/association_matchers/model_reflection.rb
|
149
153
|
- lib/shoulda/matchers/active_record/association_matchers/model_reflector.rb
|
150
154
|
- lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb
|
155
|
+
- lib/shoulda/matchers/active_record/association_matchers/optional_matcher.rb
|
151
156
|
- lib/shoulda/matchers/active_record/association_matchers/order_matcher.rb
|
157
|
+
- lib/shoulda/matchers/active_record/association_matchers/required_matcher.rb
|
152
158
|
- lib/shoulda/matchers/active_record/association_matchers/source_matcher.rb
|
153
159
|
- lib/shoulda/matchers/active_record/association_matchers/through_matcher.rb
|
154
160
|
- lib/shoulda/matchers/active_record/define_enum_for_matcher.rb
|
155
161
|
- lib/shoulda/matchers/active_record/have_db_column_matcher.rb
|
156
162
|
- lib/shoulda/matchers/active_record/have_db_index_matcher.rb
|
157
163
|
- lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb
|
164
|
+
- lib/shoulda/matchers/active_record/have_secure_token_matcher.rb
|
158
165
|
- lib/shoulda/matchers/active_record/serialize_matcher.rb
|
159
166
|
- lib/shoulda/matchers/active_record/uniqueness.rb
|
160
167
|
- lib/shoulda/matchers/active_record/uniqueness/model.rb
|
@@ -204,9 +211,9 @@ files:
|
|
204
211
|
- lib/shoulda/matchers/util/word_wrap.rb
|
205
212
|
- lib/shoulda/matchers/version.rb
|
206
213
|
- lib/shoulda/matchers/warn.rb
|
207
|
-
- script/SUPPORTED_VERSIONS
|
208
214
|
- script/install_gems_in_all_appraisals
|
209
215
|
- script/run_all_tests
|
216
|
+
- script/supported_ruby_versions
|
210
217
|
- script/update_gem_in_all_appraisals
|
211
218
|
- script/update_gems_in_all_appraisals
|
212
219
|
- shoulda-matchers.gemspec
|
@@ -229,6 +236,7 @@ files:
|
|
229
236
|
- spec/support/acceptance/helpers/minitest_helpers.rb
|
230
237
|
- spec/support/acceptance/helpers/n_unit_helpers.rb
|
231
238
|
- spec/support/acceptance/helpers/pluralization_helpers.rb
|
239
|
+
- spec/support/acceptance/helpers/rails_migration_helpers.rb
|
232
240
|
- spec/support/acceptance/helpers/rails_version_helpers.rb
|
233
241
|
- spec/support/acceptance/helpers/rspec_helpers.rb
|
234
242
|
- spec/support/acceptance/helpers/ruby_version_helpers.rb
|
@@ -253,6 +261,7 @@ files:
|
|
253
261
|
- spec/support/unit/create_model_arguments/basic.rb
|
254
262
|
- spec/support/unit/create_model_arguments/has_many.rb
|
255
263
|
- spec/support/unit/create_model_arguments/uniqueness_matcher.rb
|
264
|
+
- spec/support/unit/helpers/action_pack_versions.rb
|
256
265
|
- spec/support/unit/helpers/active_model_helpers.rb
|
257
266
|
- spec/support/unit/helpers/active_model_versions.rb
|
258
267
|
- spec/support/unit/helpers/active_record_versions.rb
|
@@ -265,6 +274,7 @@ files:
|
|
265
274
|
- spec/support/unit/helpers/database_helpers.rb
|
266
275
|
- spec/support/unit/helpers/i18n_faker.rb
|
267
276
|
- spec/support/unit/helpers/mailer_builder.rb
|
277
|
+
- spec/support/unit/helpers/message_helpers.rb
|
268
278
|
- spec/support/unit/helpers/model_builder.rb
|
269
279
|
- spec/support/unit/helpers/rails_versions.rb
|
270
280
|
- spec/support/unit/helpers/validation_matcher_scenario_helpers.rb
|
@@ -324,6 +334,7 @@ files:
|
|
324
334
|
- spec/unit/shoulda/matchers/active_record/have_db_column_matcher_spec.rb
|
325
335
|
- spec/unit/shoulda/matchers/active_record/have_db_index_matcher_spec.rb
|
326
336
|
- spec/unit/shoulda/matchers/active_record/have_readonly_attributes_matcher_spec.rb
|
337
|
+
- spec/unit/shoulda/matchers/active_record/have_secure_token_matcher_spec.rb
|
327
338
|
- spec/unit/shoulda/matchers/active_record/serialize_matcher_spec.rb
|
328
339
|
- spec/unit/shoulda/matchers/active_record/validate_uniqueness_of_matcher_spec.rb
|
329
340
|
- spec/unit/shoulda/matchers/doublespeak/double_collection_spec.rb
|
@@ -346,7 +357,7 @@ files:
|
|
346
357
|
- spec/warnings_spy/reporter.rb
|
347
358
|
- tasks/documentation.rb
|
348
359
|
- zeus.json
|
349
|
-
homepage:
|
360
|
+
homepage: https://matchers.shoulda.io/
|
350
361
|
licenses:
|
351
362
|
- MIT
|
352
363
|
metadata: {}
|
@@ -358,12 +369,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
358
369
|
requirements:
|
359
370
|
- - ">="
|
360
371
|
- !ruby/object:Gem::Version
|
361
|
-
version: 2.
|
372
|
+
version: 2.2.0
|
362
373
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
363
374
|
requirements:
|
364
|
-
- - "
|
375
|
+
- - ">"
|
365
376
|
- !ruby/object:Gem::Version
|
366
|
-
version:
|
377
|
+
version: 1.3.1
|
367
378
|
requirements: []
|
368
379
|
rubyforge_project:
|
369
380
|
rubygems_version: 2.7.6
|
@@ -390,6 +401,7 @@ test_files:
|
|
390
401
|
- spec/support/acceptance/helpers/minitest_helpers.rb
|
391
402
|
- spec/support/acceptance/helpers/n_unit_helpers.rb
|
392
403
|
- spec/support/acceptance/helpers/pluralization_helpers.rb
|
404
|
+
- spec/support/acceptance/helpers/rails_migration_helpers.rb
|
393
405
|
- spec/support/acceptance/helpers/rails_version_helpers.rb
|
394
406
|
- spec/support/acceptance/helpers/rspec_helpers.rb
|
395
407
|
- spec/support/acceptance/helpers/ruby_version_helpers.rb
|
@@ -414,6 +426,7 @@ test_files:
|
|
414
426
|
- spec/support/unit/create_model_arguments/basic.rb
|
415
427
|
- spec/support/unit/create_model_arguments/has_many.rb
|
416
428
|
- spec/support/unit/create_model_arguments/uniqueness_matcher.rb
|
429
|
+
- spec/support/unit/helpers/action_pack_versions.rb
|
417
430
|
- spec/support/unit/helpers/active_model_helpers.rb
|
418
431
|
- spec/support/unit/helpers/active_model_versions.rb
|
419
432
|
- spec/support/unit/helpers/active_record_versions.rb
|
@@ -426,6 +439,7 @@ test_files:
|
|
426
439
|
- spec/support/unit/helpers/database_helpers.rb
|
427
440
|
- spec/support/unit/helpers/i18n_faker.rb
|
428
441
|
- spec/support/unit/helpers/mailer_builder.rb
|
442
|
+
- spec/support/unit/helpers/message_helpers.rb
|
429
443
|
- spec/support/unit/helpers/model_builder.rb
|
430
444
|
- spec/support/unit/helpers/rails_versions.rb
|
431
445
|
- spec/support/unit/helpers/validation_matcher_scenario_helpers.rb
|
@@ -485,6 +499,7 @@ test_files:
|
|
485
499
|
- spec/unit/shoulda/matchers/active_record/have_db_column_matcher_spec.rb
|
486
500
|
- spec/unit/shoulda/matchers/active_record/have_db_index_matcher_spec.rb
|
487
501
|
- spec/unit/shoulda/matchers/active_record/have_readonly_attributes_matcher_spec.rb
|
502
|
+
- spec/unit/shoulda/matchers/active_record/have_secure_token_matcher_spec.rb
|
488
503
|
- spec/unit/shoulda/matchers/active_record/serialize_matcher_spec.rb
|
489
504
|
- spec/unit/shoulda/matchers/active_record/validate_uniqueness_of_matcher_spec.rb
|
490
505
|
- spec/unit/shoulda/matchers/doublespeak/double_collection_spec.rb
|
data/gemfiles/4.0.0.gemfile
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gem "appraisal", "~> 2.0"
|
6
|
-
gem "bundler", "~> 1.1"
|
7
|
-
gem "pry", :github => "pry/pry"
|
8
|
-
gem "pry-byebug"
|
9
|
-
gem "rake", ">= 10.5.0", "< 11"
|
10
|
-
gem "rspec", "~> 3.2"
|
11
|
-
gem "zeus"
|
12
|
-
gem "yard"
|
13
|
-
gem "redcarpet"
|
14
|
-
gem "pygments.rb"
|
15
|
-
gem "fssm"
|
16
|
-
gem "rspec-rails", ">= 3.2.0", "< 4"
|
17
|
-
gem "shoulda-context", "~> 1.2.0"
|
18
|
-
gem "sqlite3", :platform => :ruby
|
19
|
-
gem "pg", :platform => :ruby
|
20
|
-
gem "activerecord-jdbc-adapter", :platform => :jruby
|
21
|
-
gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
|
22
|
-
gem "jdbc-sqlite3", :platform => :jruby
|
23
|
-
gem "jruby-openssl", :platform => :jruby
|
24
|
-
gem "therubyrhino", :platform => :jruby
|
25
|
-
gem "spring"
|
26
|
-
gem "spring-commands-rspec"
|
27
|
-
gem "uglifier", ">= 1.3.0"
|
28
|
-
gem "coffee-rails", "~> 4.0.0"
|
29
|
-
gem "jquery-rails"
|
30
|
-
gem "turbolinks"
|
31
|
-
gem "sdoc"
|
32
|
-
gem "activeresource", "4.0.0"
|
33
|
-
gem "protected_attributes"
|
34
|
-
gem "minitest-reporters"
|
35
|
-
gem "rails", "4.0.0"
|
36
|
-
gem "jbuilder", "~> 1.2"
|
37
|
-
gem "sass-rails", "~> 4.0.0"
|
38
|
-
gem "bcrypt-ruby", "~> 3.0.0"
|
data/gemfiles/4.0.0.gemfile.lock
DELETED
@@ -1,223 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: git://github.com/pry/pry.git
|
3
|
-
revision: 3c138cbf94a44f7a6696afdab1ab5149d7541974
|
4
|
-
specs:
|
5
|
-
pry (0.10.1)
|
6
|
-
coderay (~> 1.1.0)
|
7
|
-
method_source (~> 0.8.1)
|
8
|
-
slop (~> 3.4)
|
9
|
-
|
10
|
-
GEM
|
11
|
-
remote: https://rubygems.org/
|
12
|
-
specs:
|
13
|
-
actionmailer (4.0.0)
|
14
|
-
actionpack (= 4.0.0)
|
15
|
-
mail (~> 2.5.3)
|
16
|
-
actionpack (4.0.0)
|
17
|
-
activesupport (= 4.0.0)
|
18
|
-
builder (~> 3.1.0)
|
19
|
-
erubis (~> 2.7.0)
|
20
|
-
rack (~> 1.5.2)
|
21
|
-
rack-test (~> 0.6.2)
|
22
|
-
activemodel (4.0.0)
|
23
|
-
activesupport (= 4.0.0)
|
24
|
-
builder (~> 3.1.0)
|
25
|
-
activerecord (4.0.0)
|
26
|
-
activemodel (= 4.0.0)
|
27
|
-
activerecord-deprecated_finders (~> 1.0.2)
|
28
|
-
activesupport (= 4.0.0)
|
29
|
-
arel (~> 4.0.0)
|
30
|
-
activerecord-deprecated_finders (1.0.4)
|
31
|
-
activeresource (4.0.0)
|
32
|
-
activemodel (~> 4.0)
|
33
|
-
activesupport (~> 4.0)
|
34
|
-
rails-observers (~> 0.1.1)
|
35
|
-
activesupport (4.0.0)
|
36
|
-
i18n (~> 0.6, >= 0.6.4)
|
37
|
-
minitest (~> 4.2)
|
38
|
-
multi_json (~> 1.3)
|
39
|
-
thread_safe (~> 0.1)
|
40
|
-
tzinfo (~> 0.3.37)
|
41
|
-
ansi (1.5.0)
|
42
|
-
appraisal (2.1.0)
|
43
|
-
bundler
|
44
|
-
rake
|
45
|
-
thor (>= 0.14.0)
|
46
|
-
arel (4.0.2)
|
47
|
-
bcrypt-ruby (3.0.1)
|
48
|
-
builder (3.1.4)
|
49
|
-
byebug (5.0.0)
|
50
|
-
columnize (= 0.9.0)
|
51
|
-
coderay (1.1.0)
|
52
|
-
coffee-rails (4.0.1)
|
53
|
-
coffee-script (>= 2.2.0)
|
54
|
-
railties (>= 4.0.0, < 5.0)
|
55
|
-
coffee-script (2.4.1)
|
56
|
-
coffee-script-source
|
57
|
-
execjs
|
58
|
-
coffee-script-source (1.9.1.1)
|
59
|
-
columnize (0.9.0)
|
60
|
-
diff-lcs (1.2.5)
|
61
|
-
erubis (2.7.0)
|
62
|
-
execjs (2.6.0)
|
63
|
-
fssm (0.2.10)
|
64
|
-
hashie (3.4.2)
|
65
|
-
hike (1.2.3)
|
66
|
-
i18n (0.7.0)
|
67
|
-
jbuilder (1.5.3)
|
68
|
-
activesupport (>= 3.0.0)
|
69
|
-
multi_json (>= 1.2.0)
|
70
|
-
jquery-rails (3.1.4)
|
71
|
-
railties (>= 3.0, < 5.0)
|
72
|
-
thor (>= 0.14, < 2.0)
|
73
|
-
json (1.8.3)
|
74
|
-
mail (2.5.4)
|
75
|
-
mime-types (~> 1.16)
|
76
|
-
treetop (~> 1.4.8)
|
77
|
-
method_source (0.8.2)
|
78
|
-
mime-types (1.25.1)
|
79
|
-
minitest (4.7.5)
|
80
|
-
minitest-reporters (0.14.24)
|
81
|
-
ansi
|
82
|
-
builder
|
83
|
-
minitest (>= 2.12, < 5.0)
|
84
|
-
powerbar
|
85
|
-
multi_json (1.11.2)
|
86
|
-
pg (0.18.3)
|
87
|
-
polyglot (0.3.5)
|
88
|
-
posix-spawn (0.3.11)
|
89
|
-
powerbar (1.0.12)
|
90
|
-
ansi (~> 1.5.0)
|
91
|
-
hashie (>= 1.1.0)
|
92
|
-
protected_attributes (1.0.3)
|
93
|
-
activemodel (>= 4.0.0, < 5.0)
|
94
|
-
pry-byebug (3.2.0)
|
95
|
-
byebug (~> 5.0)
|
96
|
-
pry (~> 0.10)
|
97
|
-
pygments.rb (0.6.3)
|
98
|
-
posix-spawn (~> 0.3.6)
|
99
|
-
yajl-ruby (~> 1.2.0)
|
100
|
-
rack (1.5.5)
|
101
|
-
rack-test (0.6.3)
|
102
|
-
rack (>= 1.0)
|
103
|
-
rails (4.0.0)
|
104
|
-
actionmailer (= 4.0.0)
|
105
|
-
actionpack (= 4.0.0)
|
106
|
-
activerecord (= 4.0.0)
|
107
|
-
activesupport (= 4.0.0)
|
108
|
-
bundler (>= 1.3.0, < 2.0)
|
109
|
-
railties (= 4.0.0)
|
110
|
-
sprockets-rails (~> 2.0.0)
|
111
|
-
rails-observers (0.1.2)
|
112
|
-
activemodel (~> 4.0)
|
113
|
-
railties (4.0.0)
|
114
|
-
actionpack (= 4.0.0)
|
115
|
-
activesupport (= 4.0.0)
|
116
|
-
rake (>= 0.8.7)
|
117
|
-
thor (>= 0.18.1, < 2.0)
|
118
|
-
rake (10.5.0)
|
119
|
-
rdoc (4.3.0)
|
120
|
-
redcarpet (3.3.2)
|
121
|
-
rspec (3.4.0)
|
122
|
-
rspec-core (~> 3.4.0)
|
123
|
-
rspec-expectations (~> 3.4.0)
|
124
|
-
rspec-mocks (~> 3.4.0)
|
125
|
-
rspec-core (3.4.1)
|
126
|
-
rspec-support (~> 3.4.0)
|
127
|
-
rspec-expectations (3.4.0)
|
128
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
129
|
-
rspec-support (~> 3.4.0)
|
130
|
-
rspec-mocks (3.4.0)
|
131
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
132
|
-
rspec-support (~> 3.4.0)
|
133
|
-
rspec-rails (3.4.0)
|
134
|
-
actionpack (>= 3.0, < 4.3)
|
135
|
-
activesupport (>= 3.0, < 4.3)
|
136
|
-
railties (>= 3.0, < 4.3)
|
137
|
-
rspec-core (~> 3.4.0)
|
138
|
-
rspec-expectations (~> 3.4.0)
|
139
|
-
rspec-mocks (~> 3.4.0)
|
140
|
-
rspec-support (~> 3.4.0)
|
141
|
-
rspec-support (3.4.1)
|
142
|
-
sass (3.2.19)
|
143
|
-
sass-rails (4.0.5)
|
144
|
-
railties (>= 4.0.0, < 5.0)
|
145
|
-
sass (~> 3.2.2)
|
146
|
-
sprockets (~> 2.8, < 3.0)
|
147
|
-
sprockets-rails (~> 2.0)
|
148
|
-
sdoc (0.4.1)
|
149
|
-
json (~> 1.7, >= 1.7.7)
|
150
|
-
rdoc (~> 4.0)
|
151
|
-
shoulda-context (1.2.1)
|
152
|
-
slop (3.6.0)
|
153
|
-
spring (1.4.0)
|
154
|
-
spring-commands-rspec (1.0.4)
|
155
|
-
spring (>= 0.9.1)
|
156
|
-
sprockets (2.12.4)
|
157
|
-
hike (~> 1.2)
|
158
|
-
multi_json (~> 1.0)
|
159
|
-
rack (~> 1.0)
|
160
|
-
tilt (~> 1.1, != 1.3.0)
|
161
|
-
sprockets-rails (2.0.1)
|
162
|
-
actionpack (>= 3.0)
|
163
|
-
activesupport (>= 3.0)
|
164
|
-
sprockets (~> 2.8)
|
165
|
-
sqlite3 (1.3.10)
|
166
|
-
thor (0.19.1)
|
167
|
-
thread_safe (0.3.5)
|
168
|
-
tilt (1.4.1)
|
169
|
-
treetop (1.4.15)
|
170
|
-
polyglot
|
171
|
-
polyglot (>= 0.3.1)
|
172
|
-
turbolinks (2.5.3)
|
173
|
-
coffee-rails
|
174
|
-
tzinfo (0.3.46)
|
175
|
-
uglifier (2.7.2)
|
176
|
-
execjs (>= 0.3.0)
|
177
|
-
json (>= 1.8.0)
|
178
|
-
yajl-ruby (1.2.1)
|
179
|
-
yard (0.8.7.6)
|
180
|
-
zeus (0.15.4)
|
181
|
-
method_source (>= 0.6.7)
|
182
|
-
|
183
|
-
PLATFORMS
|
184
|
-
ruby
|
185
|
-
|
186
|
-
DEPENDENCIES
|
187
|
-
activerecord-jdbc-adapter
|
188
|
-
activerecord-jdbcsqlite3-adapter
|
189
|
-
activeresource (= 4.0.0)
|
190
|
-
appraisal (~> 2.0)
|
191
|
-
bcrypt-ruby (~> 3.0.0)
|
192
|
-
bundler (~> 1.1)
|
193
|
-
coffee-rails (~> 4.0.0)
|
194
|
-
fssm
|
195
|
-
jbuilder (~> 1.2)
|
196
|
-
jdbc-sqlite3
|
197
|
-
jquery-rails
|
198
|
-
jruby-openssl
|
199
|
-
minitest-reporters
|
200
|
-
pg
|
201
|
-
protected_attributes
|
202
|
-
pry!
|
203
|
-
pry-byebug
|
204
|
-
pygments.rb
|
205
|
-
rails (= 4.0.0)
|
206
|
-
rake (>= 10.5.0, < 11)
|
207
|
-
redcarpet
|
208
|
-
rspec (~> 3.2)
|
209
|
-
rspec-rails (>= 3.2.0, < 4)
|
210
|
-
sass-rails (~> 4.0.0)
|
211
|
-
sdoc
|
212
|
-
shoulda-context (~> 1.2.0)
|
213
|
-
spring
|
214
|
-
spring-commands-rspec
|
215
|
-
sqlite3
|
216
|
-
therubyrhino
|
217
|
-
turbolinks
|
218
|
-
uglifier (>= 1.3.0)
|
219
|
-
yard
|
220
|
-
zeus
|
221
|
-
|
222
|
-
BUNDLED WITH
|
223
|
-
1.11.2
|