hoe-telicopter 0.1.5 → 0.1.6
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/Manifest.txt
CHANGED
@@ -12,18 +12,18 @@
|
|
12
12
|
require 'rake'
|
13
13
|
gem "gemcutter" # lame. gemcutter doesn't have a VERSION const.
|
14
14
|
|
15
|
-
module Hoe::
|
15
|
+
module Hoe::Hotelicutter
|
16
16
|
|
17
17
|
GEM_PREFIX = 'g1nn13'
|
18
18
|
|
19
|
-
def
|
19
|
+
def initialize_hotelicutter
|
20
20
|
version = Gem.loaded_specs['gemcutter'].version
|
21
21
|
dependency_target << ['gemcutter', ">= #{version}"]
|
22
22
|
end
|
23
23
|
|
24
|
-
def
|
24
|
+
def define_hotelicutter_tasks
|
25
25
|
desc "Push g1nn13- gem to gemcutter."
|
26
|
-
task :
|
26
|
+
task :release_to_hotelicutter => [:clean, :package, :release_sanity] do
|
27
27
|
pkg = "pkg/#{spec.name}-#{spec.version}"
|
28
28
|
gems = Dir["#{pkg}*.gem"]
|
29
29
|
|
@@ -38,6 +38,6 @@ module Hoe::HotelicopterGemcutter
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
task :release_to => :
|
41
|
+
task :release_to => :release_to_hotelicutter
|
42
42
|
end
|
43
|
-
end unless defined? Hoe::
|
43
|
+
end unless defined? Hoe::Hotelicutter
|
data/lib/hoe/telicopter.rb
CHANGED
@@ -2,10 +2,10 @@
|
|
2
2
|
# all this really does is include the other plugins defined here
|
3
3
|
#
|
4
4
|
|
5
|
-
Hoe.plugin :email, :
|
5
|
+
Hoe.plugin :email, :hotelicutter
|
6
6
|
|
7
7
|
module Hoe::Telicopter
|
8
|
-
VERSION = "0.1.
|
8
|
+
VERSION = "0.1.6"
|
9
9
|
|
10
10
|
def define_telicopter_tasks
|
11
11
|
# nothing to do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hoe-telicopter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jim nist
|
@@ -53,7 +53,7 @@ files:
|
|
53
53
|
- README.txt
|
54
54
|
- Rakefile
|
55
55
|
- lib/hoe/email.rb
|
56
|
-
- lib/hoe/
|
56
|
+
- lib/hoe/hotelicutter.rb
|
57
57
|
- lib/hoe/telicopter.rb
|
58
58
|
has_rdoc: true
|
59
59
|
homepage: https://github.com/g1nn13/hoe-telicopter
|