rake-gem-ghost 0.0.1.2 → 0.0.1.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/LICENSE.txt +1 -1
- data/{README.rdoc → README.markdown} +4 -5
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/rake-gem-ghost.gemspec +5 -5
- metadata +7 -7
data/LICENSE.txt
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
# rake-gem-ghost
|
|
2
2
|
|
|
3
3
|
Help gem developers to test created gems — creates symlink from installed gem to current folder.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Example
|
|
6
6
|
|
|
7
7
|
require 'rake/gem_ghost_task'
|
|
8
8
|
|
|
@@ -10,7 +10,6 @@ Help gem developers to test created gems — creates symlink from installed gem
|
|
|
10
10
|
|
|
11
11
|
Rake::GemGhostTask.new('rake-gem-ghost')
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
## Copyright
|
|
14
14
|
|
|
15
|
-
Copyright (c) 2010
|
|
16
|
-
further details.
|
|
15
|
+
Copyright (c) 2010 Ivan Kuchin. See LICENSE.txt for details.
|
data/Rakefile
CHANGED
|
@@ -12,7 +12,7 @@ Jeweler::Tasks.new do |gem|
|
|
|
12
12
|
gem.description = %Q{Help gem developers to test created gems — creates symlink from installed gem to current folder.}
|
|
13
13
|
gem.homepage = "http://github.com/toy/#{name}"
|
|
14
14
|
gem.license = 'MIT'
|
|
15
|
-
gem.authors = ['
|
|
15
|
+
gem.authors = ['Ivan Kuchin']
|
|
16
16
|
gem.add_runtime_dependency 'rake'
|
|
17
17
|
gem.add_development_dependency 'jeweler', '~> 1.5.1'
|
|
18
18
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.1.
|
|
1
|
+
0.0.1.3
|
data/rake-gem-ghost.gemspec
CHANGED
|
@@ -5,19 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{rake-gem-ghost}
|
|
8
|
-
s.version = "0.0.1.
|
|
8
|
+
s.version = "0.0.1.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = ["
|
|
12
|
-
s.date = %q{2010-12-
|
|
11
|
+
s.authors = ["Ivan Kuchin"]
|
|
12
|
+
s.date = %q{2010-12-15}
|
|
13
13
|
s.description = %q{Help gem developers to test created gems — creates symlink from installed gem to current folder.}
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"LICENSE.txt",
|
|
16
|
-
"README.
|
|
16
|
+
"README.markdown"
|
|
17
17
|
]
|
|
18
18
|
s.files = [
|
|
19
19
|
"LICENSE.txt",
|
|
20
|
-
"README.
|
|
20
|
+
"README.markdown",
|
|
21
21
|
"Rakefile",
|
|
22
22
|
"VERSION",
|
|
23
23
|
"lib/rake/gem_ghost_task.rb",
|
metadata
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rake-gem-ghost
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 77
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
9
|
- 1
|
|
10
|
-
-
|
|
11
|
-
version: 0.0.1.
|
|
10
|
+
- 3
|
|
11
|
+
version: 0.0.1.3
|
|
12
12
|
platform: ruby
|
|
13
13
|
authors:
|
|
14
|
-
-
|
|
14
|
+
- Ivan Kuchin
|
|
15
15
|
autorequire:
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2010-12-
|
|
19
|
+
date: 2010-12-15 00:00:00 +03:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|
|
@@ -57,10 +57,10 @@ extensions: []
|
|
|
57
57
|
|
|
58
58
|
extra_rdoc_files:
|
|
59
59
|
- LICENSE.txt
|
|
60
|
-
- README.
|
|
60
|
+
- README.markdown
|
|
61
61
|
files:
|
|
62
62
|
- LICENSE.txt
|
|
63
|
-
- README.
|
|
63
|
+
- README.markdown
|
|
64
64
|
- Rakefile
|
|
65
65
|
- VERSION
|
|
66
66
|
- lib/rake/gem_ghost_task.rb
|