rspec 0.3.0 → 0.3.1
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/CHANGES +10 -4
- data/Rakefile +2 -2
- metadata +2 -1
data/CHANGES
CHANGED
|
@@ -13,14 +13,20 @@
|
|
|
13
13
|
* Make sure the PKG_VERSION constant in Rakefile.rb is
|
|
14
14
|
consistent with the latest version in this document.
|
|
15
15
|
|
|
16
|
+
== Version 0.3.1
|
|
17
|
+
|
|
18
|
+
This is just 0.3.0, but with the TUTORIAL added to the documentation list.
|
|
19
|
+
|
|
20
|
+
* forgot to include TUTORIAL in the documentation
|
|
21
|
+
|
|
16
22
|
== Version 0.3.0
|
|
17
23
|
|
|
18
24
|
It's been a while since last release, lots of new stuff is available. For instance:
|
|
19
25
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
26
|
+
* improvements to the runners
|
|
27
|
+
* addition of should_raise expectation (thanks to Brian Takita)
|
|
28
|
+
* some documentation improvements
|
|
29
|
+
* RSpec usable as a DSL
|
|
24
30
|
|
|
25
31
|
== Version 0.2.0
|
|
26
32
|
|
data/Rakefile
CHANGED
|
@@ -19,7 +19,7 @@ PKG_NAME = "rspec"
|
|
|
19
19
|
# (This is subject to change - AH)
|
|
20
20
|
#
|
|
21
21
|
# REMEMBER TO KEEP PKG_VERSION IN SYNC WITH CHANGELOG
|
|
22
|
-
PKG_VERSION = "0.3.
|
|
22
|
+
PKG_VERSION = "0.3.1"
|
|
23
23
|
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
|
24
24
|
PKG_FILES = FileList[
|
|
25
25
|
'[A-Z]*',
|
|
@@ -53,7 +53,7 @@ rd = Rake::RDocTask.new("rdoc") do |rdoc|
|
|
|
53
53
|
rdoc.rdoc_dir = 'html'
|
|
54
54
|
rdoc.title = "RSpec"
|
|
55
55
|
rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README'
|
|
56
|
-
rdoc.rdoc_files.include('README', 'CHANGES')
|
|
56
|
+
rdoc.rdoc_files.include('README', 'CHANGES', 'TUTORIAL')
|
|
57
57
|
rdoc.rdoc_files.include('lib/**/*.rb', 'doc/**/*.rdoc')
|
|
58
58
|
rdoc.rdoc_files.exclude('doc/**/*_attrs.rdoc')
|
|
59
59
|
end
|
metadata
CHANGED
|
@@ -3,7 +3,7 @@ rubygems_version: 0.8.11
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: rspec
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.3.
|
|
6
|
+
version: 0.3.1
|
|
7
7
|
date: 2006-01-20 00:00:00 -08:00
|
|
8
8
|
summary: Behaviour Specification Framework for Ruby
|
|
9
9
|
require_paths:
|
|
@@ -75,6 +75,7 @@ rdoc_options:
|
|
|
75
75
|
extra_rdoc_files:
|
|
76
76
|
- README
|
|
77
77
|
- CHANGES
|
|
78
|
+
- TUTORIAL
|
|
78
79
|
executables:
|
|
79
80
|
- spec
|
|
80
81
|
extensions: []
|