genki-wormhole 0.0.2 → 0.0.3
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 +4 -3
- metadata +3 -3
data/Rakefile
CHANGED
|
@@ -7,6 +7,7 @@ require 'rake/gempackagetask'
|
|
|
7
7
|
require 'rake/rdoctask'
|
|
8
8
|
require 'rake/contrib/rubyforgepublisher'
|
|
9
9
|
require 'rake/contrib/sshpublisher'
|
|
10
|
+
require 'rubyforge'
|
|
10
11
|
require 'fileutils'
|
|
11
12
|
include FileUtils
|
|
12
13
|
|
|
@@ -14,10 +15,10 @@ NAME = "wormhole"
|
|
|
14
15
|
AUTHOR = "Genki Takiuchi"
|
|
15
16
|
EMAIL = "genki@s21g.com"
|
|
16
17
|
DESCRIPTION = "The utility library for making a wormhole on the stack frame."
|
|
17
|
-
RUBYFORGE_PROJECT = "
|
|
18
|
+
RUBYFORGE_PROJECT = "cocktail-party"
|
|
18
19
|
HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
|
|
19
20
|
BIN_FILES = %w( )
|
|
20
|
-
VERS = "0.0.
|
|
21
|
+
VERS = "0.0.3"
|
|
21
22
|
|
|
22
23
|
REV = File.read(".svn/entries")[/committed-rev="(d+)"/, 1] rescue nil
|
|
23
24
|
CLEAN.include ['**/.*.sw?', '*.gem', '.config']
|
|
@@ -112,7 +113,7 @@ task :release => [:clean, :package] do |t|
|
|
|
112
113
|
abort "Versions don't match #{v} vs #{VERS}" unless v == VERS
|
|
113
114
|
pkg = "pkg/#{NAME}-#{VERS}"
|
|
114
115
|
|
|
115
|
-
rf = RubyForge.new
|
|
116
|
+
rf = RubyForge.new.configure
|
|
116
117
|
puts "Logging in"
|
|
117
118
|
rf.login
|
|
118
119
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: genki-wormhole
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Genki Takiuchi
|
|
@@ -30,7 +30,7 @@ files:
|
|
|
30
30
|
- test/wormhole_test.rb
|
|
31
31
|
- lib/wormhole.rb
|
|
32
32
|
has_rdoc: true
|
|
33
|
-
homepage: http://
|
|
33
|
+
homepage: http://cocktail-party.rubyforge.org
|
|
34
34
|
post_install_message:
|
|
35
35
|
rdoc_options:
|
|
36
36
|
- --title
|
|
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
61
61
|
version:
|
|
62
62
|
requirements: []
|
|
63
63
|
|
|
64
|
-
rubyforge_project:
|
|
64
|
+
rubyforge_project: cocktail-party
|
|
65
65
|
rubygems_version: 1.2.0
|
|
66
66
|
signing_key:
|
|
67
67
|
specification_version: 2
|