spec_converter 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.txt +2 -2
  2. data/Rakefile +1 -2
  3. data/lib/spec_converter.rb +1 -1
  4. 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 spec-converter
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://spec-converter.rubyforge.org/rdoc
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('SpecConverter', SpecConverter::VERSION) do |p|
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"
@@ -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.3"
4
+ VERSION = "0.0.4"
5
5
 
6
6
  def self.start
7
7
  spec_converter = SpecConverter.new
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spec_converter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Relevance