doo 0.2.3 → 0.2.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.
Files changed (4) hide show
  1. data/Rakefile +4 -4
  2. data/VERSION +1 -1
  3. data/spec/doo/base_spec.rb +0 -10
  4. metadata +4 -4
data/Rakefile CHANGED
@@ -3,7 +3,7 @@ begin
3
3
  Jeweler::Tasks.new do |gem|
4
4
  gem.version
5
5
  gem.name = "doo"
6
- gem.summary = %Q{Doo - an stacked-cotnext approach to deployment scripting }
6
+ gem.summary = %Q{Doo - a stacked-context approach to deployment scripting }
7
7
  gem.description = %Q{Doo is a deployment scripting tool in the vein of capistrano and sprinkle that uses stacked contexts and a aspect-ish data model}
8
8
  gem.homepage = "http://github.com/mtrudel/doo"
9
9
  gem.authors = [ "Mat Trudel" ]
@@ -16,10 +16,10 @@ rescue LoadError
16
16
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
17
17
  end
18
18
 
19
- require 'spec/rake/spectask'
19
+ require 'rspec/core/rake_task'
20
20
  desc "Run all tests"
21
- Spec::Rake::SpecTask.new('spec') do |t|
22
- t.spec_files = FileList['spec/**/*.rb']
21
+ RSpec::Core::RakeTask.new('spec') do |t|
22
+ t.pattern = 'spec/**/*.rb'
23
23
  end
24
24
 
25
25
  task :default => :spec
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.3
1
+ 0.2.4
@@ -70,14 +70,4 @@ describe Doo::Base do
70
70
  end
71
71
  @inst.should_not respond_to :extra
72
72
  end
73
-
74
- it "understands namespaces" do
75
- @inst.should respond_to :namespace
76
- @inst.extra.should == "bologna"
77
- end
78
-
79
- it "namespaces should take a block" do
80
- raise
81
- end
82
-
83
73
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 3
9
- version: 0.2.3
8
+ - 4
9
+ version: 0.2.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Mat Trudel
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-12-01 00:00:00 -05:00
17
+ date: 2010-12-10 00:00:00 -05:00
18
18
  default_executable: doo
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -86,7 +86,7 @@ rubyforge_project:
86
86
  rubygems_version: 1.3.7
87
87
  signing_key:
88
88
  specification_version: 3
89
- summary: Doo - an stacked-cotnext approach to deployment scripting
89
+ summary: Doo - a stacked-context approach to deployment scripting
90
90
  test_files:
91
91
  - examples/sample.rb
92
92
  - spec/doo/base_spec.rb