Skip to content

Commit

Permalink
Regenerate gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
cespare committed Jun 17, 2011
1 parent ebee9ec commit 72b3124
Showing 1 changed file with 157 additions and 157 deletions.
314 changes: 157 additions & 157 deletions rr.gemspec
@@ -1,6 +1,6 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
Expand All @@ -9,177 +9,177 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Brian Takita"]
s.date = %q{2010-11-01}
s.date = %q{2011-06-16}
s.description = %q{RR (Double Ruby) is a double framework that features a rich selection of double techniques and a terse syntax. http://xunitpatterns.com/Test%20Double.html}
s.email = %q{brian@pivotallabs.com}
s.extra_rdoc_files = [
"CHANGES",
"README.rdoc"
"README.rdoc"
]
s.files = [
"CHANGES",
"Gemfile",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION.yml",
"lib/rr.rb",
"lib/rr/adapters/rr_methods.rb",
"lib/rr/adapters/rspec.rb",
"lib/rr/adapters/test_unit.rb",
"lib/rr/blank_slate.rb",
"lib/rr/class_instance_method_defined.rb",
"lib/rr/double.rb",
"lib/rr/double_definitions/child_double_definition_create.rb",
"lib/rr/double_definitions/double_definition.rb",
"lib/rr/double_definitions/double_definition_create.rb",
"lib/rr/double_definitions/double_definition_create_blank_slate.rb",
"lib/rr/double_definitions/double_injections/any_instance_of.rb",
"lib/rr/double_definitions/double_injections/instance.rb",
"lib/rr/double_definitions/strategies/double_injection/any_instance_of.rb",
"lib/rr/double_definitions/strategies/double_injection/double_injection_strategy.rb",
"lib/rr/double_definitions/strategies/double_injection/instance.rb",
"lib/rr/double_definitions/strategies/implementation/implementation_strategy.rb",
"lib/rr/double_definitions/strategies/implementation/proxy.rb",
"lib/rr/double_definitions/strategies/implementation/reimplementation.rb",
"lib/rr/double_definitions/strategies/implementation/strongly_typed_reimplementation.rb",
"lib/rr/double_definitions/strategies/strategy.rb",
"lib/rr/double_definitions/strategies/strategy_methods.rb",
"lib/rr/double_definitions/strategies/verification/dont_allow.rb",
"lib/rr/double_definitions/strategies/verification/mock.rb",
"lib/rr/double_definitions/strategies/verification/stub.rb",
"lib/rr/double_definitions/strategies/verification/verification_strategy.rb",
"lib/rr/double_matches.rb",
"lib/rr/errors/argument_equality_error.rb",
"lib/rr/errors/double_definition_error.rb",
"lib/rr/errors/double_not_found_error.rb",
"lib/rr/errors/double_order_error.rb",
"lib/rr/errors/rr_error.rb",
"lib/rr/errors/spy_verification_errors/double_injection_not_found_error.rb",
"lib/rr/errors/spy_verification_errors/invocation_count_error.rb",
"lib/rr/errors/spy_verification_errors/spy_verification_error.rb",
"lib/rr/errors/subject_does_not_implement_method_error.rb",
"lib/rr/errors/subject_has_different_arity_error.rb",
"lib/rr/errors/times_called_error.rb",
"lib/rr/expectations/any_argument_expectation.rb",
"lib/rr/expectations/argument_equality_expectation.rb",
"lib/rr/expectations/times_called_expectation.rb",
"lib/rr/hash_with_object_id_key.rb",
"lib/rr/injections/double_injection.rb",
"lib/rr/injections/injection.rb",
"lib/rr/injections/method_missing_injection.rb",
"lib/rr/injections/singleton_method_added_injection.rb",
"lib/rr/method_dispatches/base_method_dispatch.rb",
"lib/rr/method_dispatches/method_dispatch.rb",
"lib/rr/method_dispatches/method_missing_dispatch.rb",
"lib/rr/proc_from_block.rb",
"lib/rr/recorded_calls.rb",
"lib/rr/space.rb",
"lib/rr/spy_verification.rb",
"lib/rr/spy_verification_proxy.rb",
"lib/rr/times_called_matchers/any_times_matcher.rb",
"lib/rr/times_called_matchers/at_least_matcher.rb",
"lib/rr/times_called_matchers/at_most_matcher.rb",
"lib/rr/times_called_matchers/integer_matcher.rb",
"lib/rr/times_called_matchers/never_matcher.rb",
"lib/rr/times_called_matchers/non_terminal.rb",
"lib/rr/times_called_matchers/proc_matcher.rb",
"lib/rr/times_called_matchers/range_matcher.rb",
"lib/rr/times_called_matchers/terminal.rb",
"lib/rr/times_called_matchers/times_called_matcher.rb",
"lib/rr/wildcard_matchers.rb",
"lib/rr/wildcard_matchers/anything.rb",
"lib/rr/wildcard_matchers/boolean.rb",
"lib/rr/wildcard_matchers/duck_type.rb",
"lib/rr/wildcard_matchers/hash_including.rb",
"lib/rr/wildcard_matchers/is_a.rb",
"lib/rr/wildcard_matchers/numeric.rb",
"lib/rr/wildcard_matchers/range.rb",
"lib/rr/wildcard_matchers/regexp.rb",
"lib/rr/wildcard_matchers/satisfy.rb",
"spec/api/any_instance_of/all_instances_of_spec.rb",
"spec/api/any_instance_of/any_instance_of_spec.rb",
"spec/api/any_instance_of/instance_of_spec.rb",
"spec/api/dont_allow/dont_allow_after_stub_spec.rb",
"spec/api/mock/mock_spec.rb",
"spec/api/proxy/proxy_spec.rb",
"spec/api/spy/spy_spec.rb",
"spec/api/strong/strong_spec.rb",
"spec/api/stub/stub_spec.rb",
"spec/core_spec_suite.rb",
"spec/environment_fixture_setup.rb",
"spec/proc_from_block_spec.rb",
"spec/rr/adapters/rr_methods_argument_matcher_spec.rb",
"spec/rr/adapters/rr_methods_creator_spec.rb",
"spec/rr/adapters/rr_methods_space_spec.rb",
"spec/rr/adapters/rr_methods_spec_helper.rb",
"spec/rr/adapters/rr_methods_times_matcher_spec.rb",
"spec/rr/double_definitions/child_double_definition_creator_spec.rb",
"spec/rr/double_definitions/double_definition_create_blank_slate_spec.rb",
"spec/rr/double_definitions/double_definition_create_spec.rb",
"spec/rr/double_injection/double_injection_spec.rb",
"spec/rr/double_injection/double_injection_verify_spec.rb",
"spec/rr/errors/rr_error_spec.rb",
"spec/rr/expectations/any_argument_expectation_spec.rb",
"spec/rr/expectations/anything_argument_equality_expectation_spec.rb",
"spec/rr/expectations/argument_equality_expectation_spec.rb",
"spec/rr/expectations/boolean_argument_equality_expectation_spec.rb",
"spec/rr/expectations/hash_including_argument_equality_expectation_spec.rb",
"spec/rr/expectations/hash_including_spec.rb",
"spec/rr/expectations/satisfy_argument_equality_expectation_spec.rb",
"spec/rr/expectations/satisfy_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_any_times_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_at_least_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_at_most_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_helper.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_integer_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_proc_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_range_spec.rb",
"spec/rr/rspec/invocation_matcher_spec.rb",
"spec/rr/rspec/rspec_adapter_spec.rb",
"spec/rr/rspec/rspec_backtrace_tweaking_spec.rb",
"spec/rr/rspec/rspec_backtrace_tweaking_spec_fixture.rb",
"spec/rr/rspec/rspec_usage_spec.rb",
"spec/rr/space/hash_with_object_id_key_spec.rb",
"spec/rr/space/space_spec.rb",
"spec/rr/test_unit/test_helper.rb",
"spec/rr/test_unit/test_unit_backtrace_test.rb",
"spec/rr/test_unit/test_unit_integration_test.rb",
"spec/rr/times_called_matchers/any_times_matcher_spec.rb",
"spec/rr/times_called_matchers/at_least_matcher_spec.rb",
"spec/rr/times_called_matchers/at_most_matcher_spec.rb",
"spec/rr/times_called_matchers/integer_matcher_spec.rb",
"spec/rr/times_called_matchers/proc_matcher_spec.rb",
"spec/rr/times_called_matchers/range_matcher_spec.rb",
"spec/rr/times_called_matchers/times_called_matcher_spec.rb",
"spec/rr/wildcard_matchers/anything_spec.rb",
"spec/rr/wildcard_matchers/boolean_spec.rb",
"spec/rr/wildcard_matchers/duck_type_spec.rb",
"spec/rr/wildcard_matchers/is_a_spec.rb",
"spec/rr/wildcard_matchers/numeric_spec.rb",
"spec/rr/wildcard_matchers/range_spec.rb",
"spec/rr/wildcard_matchers/regexp_spec.rb",
"spec/rr_spec.rb",
"spec/rspec_spec_suite.rb",
"spec/spec_helper.rb",
"spec/spec_suite.rb",
"spec/spy_verification_spec.rb",
"spec/test_unit_spec_suite.rb"
"Gemfile",
"Gemfile.lock",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION.yml",
"lib/rr.rb",
"lib/rr/adapters/minitest.rb",
"lib/rr/adapters/rr_methods.rb",
"lib/rr/adapters/rspec.rb",
"lib/rr/adapters/test_unit.rb",
"lib/rr/blank_slate.rb",
"lib/rr/class_instance_method_defined.rb",
"lib/rr/double.rb",
"lib/rr/double_definitions/child_double_definition_create.rb",
"lib/rr/double_definitions/double_definition.rb",
"lib/rr/double_definitions/double_definition_create.rb",
"lib/rr/double_definitions/double_definition_create_blank_slate.rb",
"lib/rr/double_definitions/double_injections/any_instance_of.rb",
"lib/rr/double_definitions/double_injections/instance.rb",
"lib/rr/double_definitions/strategies/double_injection/any_instance_of.rb",
"lib/rr/double_definitions/strategies/double_injection/double_injection_strategy.rb",
"lib/rr/double_definitions/strategies/double_injection/instance.rb",
"lib/rr/double_definitions/strategies/implementation/implementation_strategy.rb",
"lib/rr/double_definitions/strategies/implementation/proxy.rb",
"lib/rr/double_definitions/strategies/implementation/reimplementation.rb",
"lib/rr/double_definitions/strategies/implementation/strongly_typed_reimplementation.rb",
"lib/rr/double_definitions/strategies/strategy.rb",
"lib/rr/double_definitions/strategies/strategy_methods.rb",
"lib/rr/double_definitions/strategies/verification/dont_allow.rb",
"lib/rr/double_definitions/strategies/verification/mock.rb",
"lib/rr/double_definitions/strategies/verification/stub.rb",
"lib/rr/double_definitions/strategies/verification/verification_strategy.rb",
"lib/rr/double_matches.rb",
"lib/rr/errors/argument_equality_error.rb",
"lib/rr/errors/double_definition_error.rb",
"lib/rr/errors/double_not_found_error.rb",
"lib/rr/errors/double_order_error.rb",
"lib/rr/errors/rr_error.rb",
"lib/rr/errors/spy_verification_errors/double_injection_not_found_error.rb",
"lib/rr/errors/spy_verification_errors/invocation_count_error.rb",
"lib/rr/errors/spy_verification_errors/spy_verification_error.rb",
"lib/rr/errors/subject_does_not_implement_method_error.rb",
"lib/rr/errors/subject_has_different_arity_error.rb",
"lib/rr/errors/times_called_error.rb",
"lib/rr/expectations/any_argument_expectation.rb",
"lib/rr/expectations/argument_equality_expectation.rb",
"lib/rr/expectations/times_called_expectation.rb",
"lib/rr/hash_with_object_id_key.rb",
"lib/rr/injections/double_injection.rb",
"lib/rr/injections/injection.rb",
"lib/rr/injections/method_missing_injection.rb",
"lib/rr/injections/singleton_method_added_injection.rb",
"lib/rr/method_dispatches/base_method_dispatch.rb",
"lib/rr/method_dispatches/method_dispatch.rb",
"lib/rr/method_dispatches/method_missing_dispatch.rb",
"lib/rr/proc_from_block.rb",
"lib/rr/recorded_calls.rb",
"lib/rr/space.rb",
"lib/rr/spy_verification.rb",
"lib/rr/spy_verification_proxy.rb",
"lib/rr/times_called_matchers/any_times_matcher.rb",
"lib/rr/times_called_matchers/at_least_matcher.rb",
"lib/rr/times_called_matchers/at_most_matcher.rb",
"lib/rr/times_called_matchers/integer_matcher.rb",
"lib/rr/times_called_matchers/never_matcher.rb",
"lib/rr/times_called_matchers/non_terminal.rb",
"lib/rr/times_called_matchers/proc_matcher.rb",
"lib/rr/times_called_matchers/range_matcher.rb",
"lib/rr/times_called_matchers/terminal.rb",
"lib/rr/times_called_matchers/times_called_matcher.rb",
"lib/rr/wildcard_matchers.rb",
"lib/rr/wildcard_matchers/anything.rb",
"lib/rr/wildcard_matchers/boolean.rb",
"lib/rr/wildcard_matchers/duck_type.rb",
"lib/rr/wildcard_matchers/hash_including.rb",
"lib/rr/wildcard_matchers/is_a.rb",
"lib/rr/wildcard_matchers/numeric.rb",
"lib/rr/wildcard_matchers/range.rb",
"lib/rr/wildcard_matchers/regexp.rb",
"lib/rr/wildcard_matchers/satisfy.rb",
"spec/api/any_instance_of/all_instances_of_spec.rb",
"spec/api/any_instance_of/any_instance_of_spec.rb",
"spec/api/any_instance_of/instance_of_spec.rb",
"spec/api/dont_allow/dont_allow_after_stub_spec.rb",
"spec/api/mock/mock_spec.rb",
"spec/api/proxy/proxy_spec.rb",
"spec/api/spy/spy_spec.rb",
"spec/api/strong/strong_spec.rb",
"spec/api/stub/stub_spec.rb",
"spec/core_spec_suite.rb",
"spec/environment_fixture_setup.rb",
"spec/minitest_spec_suite.rb",
"spec/proc_from_block_spec.rb",
"spec/rr/adapters/rr_methods_argument_matcher_spec.rb",
"spec/rr/adapters/rr_methods_creator_spec.rb",
"spec/rr/adapters/rr_methods_space_spec.rb",
"spec/rr/adapters/rr_methods_spec_helper.rb",
"spec/rr/adapters/rr_methods_times_matcher_spec.rb",
"spec/rr/double_definitions/child_double_definition_creator_spec.rb",
"spec/rr/double_definitions/double_definition_create_blank_slate_spec.rb",
"spec/rr/double_definitions/double_definition_create_spec.rb",
"spec/rr/double_injection/double_injection_spec.rb",
"spec/rr/double_injection/double_injection_verify_spec.rb",
"spec/rr/errors/rr_error_spec.rb",
"spec/rr/expectations/any_argument_expectation_spec.rb",
"spec/rr/expectations/anything_argument_equality_expectation_spec.rb",
"spec/rr/expectations/argument_equality_expectation_spec.rb",
"spec/rr/expectations/boolean_argument_equality_expectation_spec.rb",
"spec/rr/expectations/hash_including_argument_equality_expectation_spec.rb",
"spec/rr/expectations/hash_including_spec.rb",
"spec/rr/expectations/satisfy_argument_equality_expectation_spec.rb",
"spec/rr/expectations/satisfy_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_any_times_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_at_least_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_at_most_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_helper.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_integer_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_proc_spec.rb",
"spec/rr/expectations/times_called_expectation/times_called_expectation_range_spec.rb",
"spec/rr/minitest/minitest_integration_test.rb",
"spec/rr/minitest/test_helper.rb",
"spec/rr/rspec/invocation_matcher_spec.rb",
"spec/rr/rspec/rspec_adapter_spec.rb",
"spec/rr/rspec/rspec_backtrace_tweaking_spec.rb",
"spec/rr/rspec/rspec_backtrace_tweaking_spec_fixture.rb",
"spec/rr/rspec/rspec_usage_spec.rb",
"spec/rr/space/hash_with_object_id_key_spec.rb",
"spec/rr/space/space_spec.rb",
"spec/rr/test_unit/test_helper.rb",
"spec/rr/test_unit/test_unit_backtrace_test.rb",
"spec/rr/test_unit/test_unit_integration_test.rb",
"spec/rr/times_called_matchers/any_times_matcher_spec.rb",
"spec/rr/times_called_matchers/at_least_matcher_spec.rb",
"spec/rr/times_called_matchers/at_most_matcher_spec.rb",
"spec/rr/times_called_matchers/integer_matcher_spec.rb",
"spec/rr/times_called_matchers/proc_matcher_spec.rb",
"spec/rr/times_called_matchers/range_matcher_spec.rb",
"spec/rr/times_called_matchers/times_called_matcher_spec.rb",
"spec/rr/wildcard_matchers/anything_spec.rb",
"spec/rr/wildcard_matchers/boolean_spec.rb",
"spec/rr/wildcard_matchers/duck_type_spec.rb",
"spec/rr/wildcard_matchers/is_a_spec.rb",
"spec/rr/wildcard_matchers/numeric_spec.rb",
"spec/rr/wildcard_matchers/range_spec.rb",
"spec/rr/wildcard_matchers/regexp_spec.rb",
"spec/rr_spec.rb",
"spec/rspec_spec_suite.rb",
"spec/spec_helper.rb",
"spec/spec_suite.rb",
"spec/spy_verification_spec.rb",
"spec/test_unit_spec_suite.rb"
]
s.homepage = %q{http://pivotallabs.com}
s.rdoc_options = ["--main", "README.rdoc", "--inline-source", "--line-numbers"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{pivotalrb}
s.rubygems_version = %q{1.3.7}
s.rubygems_version = %q{1.6.2}
s.summary = %q{RR (Double Ruby) is a double framework that features a rich selection of double techniques and a terse syntax. http://xunitpatterns.com/Test%20Double.html}
s.test_files = [
"spec/spy_verification_spec.rb",
"spec/proc_from_block_spec.rb",
"spec/rr_spec.rb"
]
s.test_files = ["spec/proc_from_block_spec.rb", "spec/rr_spec.rb", "spec/spy_verification_spec.rb"]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
Expand Down

0 comments on commit 72b3124

Please sign in to comment.