public
Description: RR (Double Ruby) is a test double framework that features a rich selection of double techniques and a terse syntax.
Homepage: http://rubyforge.org/projects/double-ruby
Clone URL: git://github.com/btakita/rr.git
rr / rr.gemspec
100644 176 lines (171 sloc) 8.698 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{rr}
  s.version = "0.10.4"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Brian Takita"]
  s.date = %q{2009-09-26}
  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"
  ]
  s.files = [
    "CHANGES",
     "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/double.rb",
     "lib/rr/double_definitions/child_double_definition_creator.rb",
     "lib/rr/double_definitions/double_definition.rb",
     "lib/rr/double_definitions/double_definition_creator.rb",
     "lib/rr/double_definitions/double_definition_creator_proxy.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/scope/instance.rb",
     "lib/rr/double_definitions/strategies/scope/instance_of_class.rb",
     "lib/rr/double_definitions/strategies/scope/scope_strategy.rb",
     "lib/rr/double_definitions/strategies/strategy.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/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/core_spec_suite.rb",
     "spec/environment_fixture_setup.rb",
     "spec/high_level_spec.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_creator_proxy_spec.rb",
     "spec/rr/double_definitions/double_definition_creator_spec.rb",
     "spec/rr/double_definitions/double_definition_spec.rb",
     "spec/rr/double_injection/double_injection_spec.rb",
     "spec/rr/double_injection/double_injection_verify_spec.rb",
     "spec/rr/double_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/expectations/times_called_expectation/times_called_expectation_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"
  ]
  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.5}
  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/high_level_spec.rb",
     "spec/rr_spec.rb",
     "spec/proc_from_block_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::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
    else
    end
  else
  end
end