dust 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +10 -6
- data/lib/dust.rb +1 -0
- data/lib/object_extension.rb +1 -1
- data/rakefile.rb +1 -1
- data/test/test_helper.rb +0 -1
- metadata +2 -2
data/README
CHANGED
@@ -16,16 +16,20 @@ You may use, copy and redistribute this library under the same terms as Ruby its
|
|
16
16
|
|
17
17
|
== Examples
|
18
18
|
|
19
|
-
unit_tests do
|
19
|
+
unit_tests do
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
|
21
|
+
test "assert true" do
|
22
|
+
assert_equal true, true
|
23
|
+
end
|
24
24
|
|
25
|
-
end
|
25
|
+
end
|
26
26
|
|
27
27
|
See the tests for more examples
|
28
28
|
|
29
|
+
== IDE specific files
|
30
|
+
|
31
|
+
You can download TextMate and JEdit Run Focused Test Commands from http://rubyforge.org/projects/dust/ (in Files)
|
32
|
+
|
29
33
|
== Contributors
|
30
34
|
|
31
|
-
Dan Manges
|
35
|
+
Dan Manges, David Vollbracht, Shane Harvie
|
data/lib/dust.rb
CHANGED
data/lib/object_extension.rb
CHANGED
data/rakefile.rb
CHANGED
@@ -28,7 +28,7 @@ Gem::manage_gems
|
|
28
28
|
specification = Gem::Specification.new do |s|
|
29
29
|
s.name = "dust"
|
30
30
|
s.summary = "Dust is an add on for Test::Unit that allows an alternative test definintion syntax."
|
31
|
-
s.version = "0.1.
|
31
|
+
s.version = "0.1.6"
|
32
32
|
s.author = 'Jay Fields'
|
33
33
|
s.description = "Dust is an add on for Test::Unit that allows an alternative test definintion syntax."
|
34
34
|
s.email = 'dust-developer@rubyforge.org'
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: dust
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.1.
|
7
|
-
date: 2007-
|
6
|
+
version: 0.1.6
|
7
|
+
date: 2007-11-04 00:00:00 -04:00
|
8
8
|
summary: Dust is an add on for Test::Unit that allows an alternative test definintion syntax.
|
9
9
|
require_paths:
|
10
10
|
- lib
|