bones 3.4.3 → 3.4.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.
- data/History.txt +5 -0
- data/Rakefile +1 -1
- data/lib/bones/plugins/bones_plugin.rb +1 -1
- data/lib/bones/plugins/gem.rb +7 -14
- data/version.txt +1 -1
- metadata +8 -8
data/History.txt
CHANGED
data/Rakefile
CHANGED
@@ -53,7 +53,7 @@ module Bones::Plugins::BonesPlugin
|
|
53
53
|
where others can go to find out more information about the project
|
54
54
|
such as links to source code, bug trackers, wikis, generated
|
55
55
|
documentation, etc. A good recommendation would be to point
|
56
|
-
to your gem on
|
56
|
+
to your gem on rubygems.org.
|
57
57
|
__
|
58
58
|
|
59
59
|
version nil, :desc => <<-__
|
data/lib/bones/plugins/gem.rb
CHANGED
@@ -101,11 +101,6 @@ module Bones::Plugins::Gem
|
|
101
101
|
config.gem.files ||= manifest
|
102
102
|
config.gem.executables ||= config.gem.files.find_all {|fn| fn =~ %r/^bin/}
|
103
103
|
config.gem.development_dependencies << ['bones', ">= #{Bones.version}"]
|
104
|
-
|
105
|
-
have?(:gemcutter) {
|
106
|
-
Gem.searcher.instance_variable_get(:@gemspecs).
|
107
|
-
map {|gs| gs.name}.include? 'gemcutter'
|
108
|
-
}
|
109
104
|
end
|
110
105
|
|
111
106
|
def define_tasks
|
@@ -182,16 +177,14 @@ module Bones::Plugins::Gem
|
|
182
177
|
pkg.need_zip = config.gem.need_zip
|
183
178
|
end
|
184
179
|
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
abort "Versions don't match #{v} vs #{config.version}" if v != config.version
|
180
|
+
desc 'Package and upload to rubygems.org'
|
181
|
+
task :release => [:clobber, 'gem'] do |t|
|
182
|
+
v = ENV['VERSION'] or abort 'Must supply VERSION=x.y.z'
|
183
|
+
abort "Versions don't match #{v} vs #{config.version}" if v != config.version
|
190
184
|
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
end
|
185
|
+
Dir.glob("pkg/#{config.gem._spec.full_name}*.gem").each { |fn|
|
186
|
+
sh "#{GEM} push #{fn}"
|
187
|
+
}
|
195
188
|
end
|
196
189
|
|
197
190
|
desc 'Show information about the gem'
|
data/version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.4.
|
1
|
+
3.4.4
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 3
|
7
7
|
- 4
|
8
|
-
-
|
9
|
-
version: 3.4.
|
8
|
+
- 4
|
9
|
+
version: 3.4.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Tim Pease
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-06-07 00:00:00 -06:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -55,8 +55,8 @@ dependencies:
|
|
55
55
|
segments:
|
56
56
|
- 1
|
57
57
|
- 6
|
58
|
-
-
|
59
|
-
version: 1.6.
|
58
|
+
- 2
|
59
|
+
version: 1.6.2
|
60
60
|
type: :runtime
|
61
61
|
version_requirements: *id003
|
62
62
|
- !ruby/object:Gem::Dependency
|
@@ -97,8 +97,8 @@ dependencies:
|
|
97
97
|
segments:
|
98
98
|
- 1
|
99
99
|
- 2
|
100
|
-
-
|
101
|
-
version: 1.2.
|
100
|
+
- 4
|
101
|
+
version: 1.2.4
|
102
102
|
type: :development
|
103
103
|
version_requirements: *id006
|
104
104
|
description: |-
|
@@ -169,7 +169,7 @@ files:
|
|
169
169
|
- spec/spec_helper.rb
|
170
170
|
- version.txt
|
171
171
|
has_rdoc: true
|
172
|
-
homepage: http://
|
172
|
+
homepage: http://rubygems.org/gems/bones
|
173
173
|
licenses: []
|
174
174
|
|
175
175
|
post_install_message: |
|