rake-gem-ghost 0.0.1 → 0.0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +3 -1
- data/VERSION +1 -1
- data/rake-gem-ghost.gemspec +45 -0
- metadata +4 -2
data/README.rdoc
CHANGED
@@ -6,7 +6,9 @@ Help gem developers to test created gems — creates symlink from installed gem
|
|
6
6
|
|
7
7
|
require 'rake/gem_ghost_task'
|
8
8
|
|
9
|
-
Rake::GemGhostTask.new
|
9
|
+
Rake::GemGhostTask.new # uses direcory name as gem name
|
10
|
+
|
11
|
+
Rake::GemGhostTask.new('rake-gem-ghost')
|
10
12
|
|
11
13
|
== Copyright
|
12
14
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.1
|
1
|
+
0.0.1.1
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{rake-gem-ghost}
|
8
|
+
s.version = "0.0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Boba Fat"]
|
12
|
+
s.date = %q{2010-12-05}
|
13
|
+
s.description = %q{Help gem developers to test created gems — creates symlink from installed gem to current folder.}
|
14
|
+
s.extra_rdoc_files = [
|
15
|
+
"LICENSE.txt",
|
16
|
+
"README.rdoc"
|
17
|
+
]
|
18
|
+
s.files = [
|
19
|
+
"LICENSE.txt",
|
20
|
+
"README.rdoc",
|
21
|
+
"Rakefile",
|
22
|
+
"VERSION",
|
23
|
+
"lib/rake/gem_ghost_task.rb",
|
24
|
+
"rake-gem-ghost.gemspec"
|
25
|
+
]
|
26
|
+
s.homepage = %q{http://github.com/toy/rake-gem-ghost}
|
27
|
+
s.licenses = ["MIT"]
|
28
|
+
s.require_paths = ["lib"]
|
29
|
+
s.rubygems_version = %q{1.3.7}
|
30
|
+
s.summary = %q{Help gem developers to test created gems}
|
31
|
+
|
32
|
+
if s.respond_to? :specification_version then
|
33
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
34
|
+
s.specification_version = 3
|
35
|
+
|
36
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
37
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.5.1"])
|
38
|
+
else
|
39
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
|
40
|
+
end
|
41
|
+
else
|
42
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rake-gem-ghost
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 73
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
9
|
- 1
|
10
|
-
|
10
|
+
- 1
|
11
|
+
version: 0.0.1.1
|
11
12
|
platform: ruby
|
12
13
|
authors:
|
13
14
|
- Boba Fat
|
@@ -49,6 +50,7 @@ files:
|
|
49
50
|
- Rakefile
|
50
51
|
- VERSION
|
51
52
|
- lib/rake/gem_ghost_task.rb
|
53
|
+
- rake-gem-ghost.gemspec
|
52
54
|
has_rdoc: true
|
53
55
|
homepage: http://github.com/toy/rake-gem-ghost
|
54
56
|
licenses:
|