mocha 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +1 -1
- data/MIT-LICENSE +7 -0
- data/README +1 -1
- data/Rakefile +2 -2
- metadata +3 -2
data/COPYING
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
Copyright Revieworld Ltd. 2006
|
2
2
|
|
3
|
-
You may use, copy and redistribute this library under the same terms as Ruby itself (see http://www.ruby-lang.org/en/LICENSE.txt).
|
3
|
+
You may use, copy and redistribute this library under the same terms as Ruby itself (see http://www.ruby-lang.org/en/LICENSE.txt) or under the MIT license (see MIT-LICENSE file).
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) 2006 Revieworld Ltd.
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README
CHANGED
@@ -29,7 +29,7 @@ You can download Mocha from here[http://rubyforge.org/projects/mocha] or install
|
|
29
29
|
|
30
30
|
Copyright Revieworld Ltd. 2006
|
31
31
|
|
32
|
-
You may use, copy and redistribute this library under the same terms as Ruby itself (see http://www.ruby-lang.org/en/LICENSE.txt).
|
32
|
+
You may use, copy and redistribute this library under the same terms as Ruby itself (see http://www.ruby-lang.org/en/LICENSE.txt) or under the MIT license (see http://mocha.rubyforge.org/files/MIT-LICENSE.html).
|
33
33
|
|
34
34
|
== Examples
|
35
35
|
|
data/Rakefile
CHANGED
@@ -18,7 +18,7 @@ Rake::RDocTask.new do |task|
|
|
18
18
|
task.title = 'Mocha'
|
19
19
|
task.rdoc_dir = 'doc'
|
20
20
|
task.options << "--line-numbers" << "--inline-source"
|
21
|
-
task.rdoc_files.include('README', 'RELEASE', 'agiledox.txt', 'lib/**/*.rb')
|
21
|
+
task.rdoc_files.include('README', 'RELEASE', 'COPYING', 'MIT-LICENSE', 'agiledox.txt', 'lib/**/*.rb')
|
22
22
|
end
|
23
23
|
|
24
24
|
desc "Upload RDoc to RubyForge"
|
@@ -47,7 +47,7 @@ Gem::manage_gems
|
|
47
47
|
specification = Gem::Specification.new do |s|
|
48
48
|
s.name = "mocha"
|
49
49
|
s.summary = "Mocking and stubbing library"
|
50
|
-
s.version = "0.3.
|
50
|
+
s.version = "0.3.1"
|
51
51
|
s.author = 'James Mead'
|
52
52
|
s.description = <<-EOF
|
53
53
|
Mocking and stubbing library with JMock/SchMock syntax, which allows mocking and stubbing of methods on real (non-mock) classes.
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: mocha
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.3.
|
7
|
-
date: 2006-08-
|
6
|
+
version: 0.3.1
|
7
|
+
date: 2006-08-30 00:00:00 +01:00
|
8
8
|
summary: Mocking and stubbing library
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -82,6 +82,7 @@ files:
|
|
82
82
|
- test/stubba/object_test.rb
|
83
83
|
- test/stubba/setup_and_teardown_test.rb
|
84
84
|
- COPYING
|
85
|
+
- MIT-LICENSE
|
85
86
|
- Rakefile
|
86
87
|
- README
|
87
88
|
- RELEASE
|