lazyatom-gem-this 0.1.0 → 0.1.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.
- data/Rakefile +7 -7
- data/bin/gem-this +3 -2
- metadata +6 -6
data/Rakefile
CHANGED
|
@@ -15,20 +15,20 @@ spec = Gem::Specification.new do |s|
|
|
|
15
15
|
|
|
16
16
|
# Change these as appropriate
|
|
17
17
|
s.name = "gem-this"
|
|
18
|
-
s.version = "0.1.
|
|
19
|
-
s.summary = "
|
|
20
|
-
s.author = "
|
|
21
|
-
s.email = "
|
|
22
|
-
s.homepage = "http://
|
|
18
|
+
s.version = "0.1.1"
|
|
19
|
+
s.summary = "Make existing code into a gem, without any fuss."
|
|
20
|
+
s.author = "James Adam"
|
|
21
|
+
s.email = "james@lazyatom.com"
|
|
22
|
+
s.homepage = "http://github.com/lazyatom/gem-this"
|
|
23
23
|
|
|
24
24
|
s.has_rdoc = true
|
|
25
25
|
# s.extra_rdoc_files = %w(Readme.markdown)
|
|
26
26
|
# s.rdoc_options = %w(--main Readme.markdown)
|
|
27
27
|
|
|
28
28
|
# Add any extra files to include in the gem
|
|
29
|
-
s.files = %w(Rakefile Readme.markdown) + Dir.glob("{bin}/**/*")
|
|
29
|
+
s.files = %w(Rakefile Readme.markdown) + Dir.glob("{bin,lib}/**/*")
|
|
30
30
|
s.executables = FileList["bin/**"].map { |f| File.basename(f) }
|
|
31
|
-
|
|
31
|
+
s.require_paths = ["bin"]
|
|
32
32
|
|
|
33
33
|
# If you want to depend on other gems, add them here, along with any
|
|
34
34
|
# relevant versions
|
data/bin/gem-this
CHANGED
|
@@ -116,8 +116,8 @@ spec = Gem::Specification.new do |s|
|
|
|
116
116
|
|
|
117
117
|
s.has_rdoc = true
|
|
118
118
|
<% if readme %>
|
|
119
|
-
|
|
120
|
-
|
|
119
|
+
s.extra_rdoc_files = %w(<%= readme %>)
|
|
120
|
+
s.rdoc_options = %w(--main <%= readme %>)
|
|
121
121
|
|
|
122
122
|
# Add any extra files to include in the gem
|
|
123
123
|
<% else %>
|
|
@@ -132,6 +132,7 @@ spec = Gem::Specification.new do |s|
|
|
|
132
132
|
<% if has_executables? %>
|
|
133
133
|
s.executables = FileList["bin/**"].map { |f| File.basename(f) }
|
|
134
134
|
<% end %>
|
|
135
|
+
s.require_paths = ["lib"]
|
|
135
136
|
|
|
136
137
|
# If you want to depend on other gems, add them here, along with any
|
|
137
138
|
# relevant versions
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lazyatom-gem-this
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- James Adam
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
@@ -14,7 +14,7 @@ default_executable: gem-this
|
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
16
16
|
description:
|
|
17
|
-
email:
|
|
17
|
+
email: james@lazyatom.com
|
|
18
18
|
executables:
|
|
19
19
|
- gem-this
|
|
20
20
|
extensions: []
|
|
@@ -26,12 +26,12 @@ files:
|
|
|
26
26
|
- Readme.markdown
|
|
27
27
|
- bin/gem-this
|
|
28
28
|
has_rdoc: true
|
|
29
|
-
homepage: http://
|
|
29
|
+
homepage: http://github.com/lazyatom/gem-this
|
|
30
30
|
post_install_message:
|
|
31
31
|
rdoc_options: []
|
|
32
32
|
|
|
33
33
|
require_paths:
|
|
34
|
-
-
|
|
34
|
+
- bin
|
|
35
35
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - ">="
|
|
@@ -50,6 +50,6 @@ rubyforge_project: gem-this
|
|
|
50
50
|
rubygems_version: 1.2.0
|
|
51
51
|
signing_key:
|
|
52
52
|
specification_version: 2
|
|
53
|
-
summary:
|
|
53
|
+
summary: Make existing code into a gem, without any fuss.
|
|
54
54
|
test_files: []
|
|
55
55
|
|