shoe 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +6 -2
- data/lib/shoe/templates/gemspec.erb +6 -1
- data/lib/shoe/version.rb +1 -1
- data/shoe.gemspec +3 -1
- metadata +5 -3
data/CHANGELOG.rdoc
CHANGED
@@ -1,11 +1,15 @@
|
|
1
|
-
==
|
1
|
+
== 0.5.1 -- 2010 April 7
|
2
|
+
|
3
|
+
* Include summary in description.
|
4
|
+
|
5
|
+
== 0.5.0 -- 2010 April 7
|
2
6
|
|
3
7
|
* Lean on cucumber.yml to define cucumber tasks.
|
4
8
|
* Lean on spec.test_files and Gem::Validator to run tests.
|
5
9
|
* Shoe::Tasks can now be used a la carte.
|
6
10
|
* The shoe generator script now requires a path argument.
|
7
11
|
|
8
|
-
== 0.4.0
|
12
|
+
== 0.4.0 -- 2010 April 6
|
9
13
|
|
10
14
|
* Don't generate the gemspec; *use* it instead.
|
11
15
|
|
@@ -6,7 +6,12 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.version = <%= project_module %>::VERSION
|
7
7
|
|
8
8
|
spec.summary = ''
|
9
|
-
spec.description =
|
9
|
+
spec.description = <<-END.gsub(/^ */, '')
|
10
|
+
#{spec.summary}
|
11
|
+
|
12
|
+
Further description here.
|
13
|
+
END
|
14
|
+
|
10
15
|
spec.author = '<%= `git config --get user.name`.chomp %>'
|
11
16
|
spec.email = '<%= `git config --get user.email`.chomp %>'
|
12
17
|
spec.homepage = 'http://github.com/<%= `git config --get github.user`.chomp %>/<%= project_name %>'
|
data/lib/shoe/version.rb
CHANGED
data/shoe.gemspec
CHANGED
@@ -6,7 +6,9 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.version = Shoe::VERSION
|
7
7
|
|
8
8
|
spec.summary = 'An ecosystem-friendly library of Rake tasks for your gem.'
|
9
|
-
spec.description = <<-END.gsub(
|
9
|
+
spec.description = <<-END.gsub(/^ */, '')
|
10
|
+
#{spec.summary}
|
11
|
+
|
10
12
|
Shoe assumes you could be using any number of other tools -- bundler,
|
11
13
|
cucumber, git, rip, rubygems -- and so leans hard on them for the things
|
12
14
|
they do well, relegating command-line rake to mere syntactic sugar.
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 5
|
8
|
-
-
|
9
|
-
version: 0.5.
|
8
|
+
- 1
|
9
|
+
version: 0.5.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Matthew Todd
|
@@ -42,6 +42,8 @@ dependencies:
|
|
42
42
|
type: :development
|
43
43
|
version_requirements: *id002
|
44
44
|
description: |
|
45
|
+
An ecosystem-friendly library of Rake tasks for your gem.
|
46
|
+
|
45
47
|
Shoe assumes you could be using any number of other tools -- bundler,
|
46
48
|
cucumber, git, rip, rubygems -- and so leans hard on them for the things
|
47
49
|
they do well, relegating command-line rake to mere syntactic sugar.
|
@@ -98,7 +100,7 @@ rdoc_options:
|
|
98
100
|
- --main
|
99
101
|
- README.rdoc
|
100
102
|
- --title
|
101
|
-
- shoe-0.5.
|
103
|
+
- shoe-0.5.1
|
102
104
|
- --inline-source
|
103
105
|
require_paths:
|
104
106
|
- lib
|