spec_converter 0.0.3 → 0.0.4
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.txt +2 -2
- data/Rakefile +1 -2
- data/lib/spec_converter.rb +1 -1
- metadata +1 -1
data/README.txt
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
This will change all files in place!! Make sure you are properly backed up and/or committed to SVN before running.
|
8
8
|
|
9
9
|
== INSTALL
|
10
|
-
sudo gem install
|
10
|
+
sudo gem install spec_converter
|
11
11
|
|
12
12
|
== USAGE
|
13
13
|
Assuming your project is at ~/work/project/:
|
@@ -19,7 +19,7 @@ Assuming your project is at ~/work/project/:
|
|
19
19
|
* test/spec: http://rubyforge.org/projects/test-spec
|
20
20
|
* trac: http://opensource.thinkrelevance.com/wiki/spec-converter
|
21
21
|
* svn trunk: https://opensource.thinkrelevance.com/svn/spec_converter/trunk
|
22
|
-
* rdoc: http://
|
22
|
+
* rdoc: http://thinkrelevance.rubyforge.org/spec_converter/
|
23
23
|
|
24
24
|
== LICENSE:
|
25
25
|
|
data/Rakefile
CHANGED
@@ -5,12 +5,11 @@ require 'hoe'
|
|
5
5
|
require 'lib/spec_converter'
|
6
6
|
require 'rcov/rcovtask'
|
7
7
|
|
8
|
-
Hoe.new('
|
8
|
+
Hoe.new('spec_converter', SpecConverter::VERSION) do |p|
|
9
9
|
p.rubyforge_name = "thinkrelevance"
|
10
10
|
p.description = "Convert your tests to test/spec specs. See http://opensource.thinkrelevance.com/wiki/spec-converter for details."
|
11
11
|
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
|
12
12
|
p.name = 'spec_converter'
|
13
|
-
p.remote_rdoc_dir = 'rdoc'
|
14
13
|
p.summary = "Convert your tests to test/spec specs"
|
15
14
|
p.author = "Relevance"
|
16
15
|
p.email = "opensource@thinkrelevance.com"
|
data/lib/spec_converter.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Simple converter to go to test/spec style
|
2
2
|
# This will change all files in place, so make sure you are properly backed up and/or committed to SVN!
|
3
3
|
class SpecConverter
|
4
|
-
VERSION = "0.0.
|
4
|
+
VERSION = "0.0.4"
|
5
5
|
|
6
6
|
def self.start
|
7
7
|
spec_converter = SpecConverter.new
|