cape 1.0.0 → 1.0.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.
@@ -1,7 +1,6 @@
1
- bundler_args: --without development
1
+ bundler_args: --without debug doc
2
2
  rvm:
3
3
  - 1.8.7
4
- - 1.9.2
5
4
  - 1.9.3
6
5
  - ree
7
- script: "bundle exec rake test"
6
+ script: "bundle exec rake"
data/Gemfile CHANGED
@@ -4,7 +4,7 @@ gemspec
4
4
 
5
5
  gem 'jruby-openssl', :platforms => :jruby
6
6
 
7
- group :development do
7
+ group :debug do
8
8
  gem 'ruby-debug', :platforms => :mri_18
9
9
 
10
10
  # This is a dependency of ruby-debug. We're specifying it here because its
@@ -12,7 +12,9 @@ group :development do
12
12
  gem 'linecache', '<= 0.43', :platforms => :mri_18
13
13
 
14
14
  gem 'ruby-debug19', :platforms => :mri_19
15
+ end
15
16
 
17
+ group :doc do
16
18
  gem 'yard', :platforms => [:ruby, :mswin, :mingw]
17
19
  gem 'rdiscount', :platforms => [:ruby, :mswin, :mingw]
18
20
  end
@@ -1,6 +1,11 @@
1
1
  Version history for the _Cape_ project
2
2
  ======================================
3
3
 
4
+ <a name="v1.0.1"></a>v1.0.0, Tue 11/29/2011
5
+ -------------------------------------------
6
+
7
+ * Don’t run Cucumber features from `gem test cape` because they fail
8
+
4
9
  <a name="v1.0.0"></a>v1.0.0, Mon 11/28/2011
5
10
  -------------------------------------------
6
11
 
@@ -29,8 +29,8 @@
29
29
  <hNNBNBh=(. / \ `
30
30
  ..
31
31
 
32
- Cape
33
- ====
32
+ [<img align="right" src="https://secure.travis-ci.org/njonsson/cape.png?branch=master" title="Travis CI build status" />](http://travis-ci.org/njonsson/cape) Cape
33
+ ==================================================================================================================================================================
34
34
 
35
35
  If
36
36
 
@@ -42,6 +42,15 @@ Then
42
42
  * **You can invoke [Cape](http://github.com/njonsson/cape)** to dynamically add Capistrano recipes for each of your application’s Rake tasks, and
43
43
  * **You can run your Rake tasks on your deployed servers,** friction-free, and look like a superhero. _[cue fanfare]_
44
44
 
45
+ Installation
46
+ ------------
47
+
48
+ Install [the RubyGem](http://rubygems.org/gems/cape "Cape at RubyGems.org"):
49
+
50
+ $ gem install cape
51
+
52
+ Or you may want to make Cape a dependency of your project by using [Bundler](http://gembundler.com).
53
+
45
54
  Features
46
55
  --------
47
56
 
data/Rakefile CHANGED
@@ -37,13 +37,5 @@ task '' => [:spec, :features]
37
37
  task :default => [:spec, :features]
38
38
 
39
39
  # Support the 'gem test' command.
40
- namespace :test do
41
- desc ''
42
- define_spec_task :specs, :debug => false
43
-
44
- Cucumber::Rake::Task.new :features, '' do |t|
45
- t.bundler = false
46
- t.cucumber_opts = '--backtrace'
47
- end
48
- end
49
- task :test => %w(test:specs test:features)
40
+ desc ''
41
+ define_spec_task :test, :debug => false
@@ -1,6 +1,6 @@
1
1
  module Cape
2
2
 
3
3
  # The version of Cape.
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
 
6
6
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cape
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Nils Jonsson
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-11-28 00:00:00 Z
18
+ date: 2011-11-30 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: aruba
@@ -159,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
159
  requirements: []
160
160
 
161
161
  rubyforge_project:
162
- rubygems_version: 1.8.10
162
+ rubygems_version: 1.8.11
163
163
  signing_key:
164
164
  specification_version: 3
165
165
  summary: Dynamically generates Capistrano recipes for Rake tasks