gap 0.0.4 → 0.0.5
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 +1 -0
- data/gap.gemspec +23 -0
- data/lib/gap.rb +1 -1
- metadata +2 -1
data/Manifest.txt
CHANGED
data/gap.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib/', __FILE__)
|
3
|
+
$:.unshift lib unless $:.include?(lib)
|
4
|
+
|
5
|
+
require "gap"
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "gap"
|
9
|
+
s.version = Gap::VERSION
|
10
|
+
s.platform = Gem::Platform::RUBY
|
11
|
+
s.authors = ["yaguchi"]
|
12
|
+
s.email = ["yaguchi@galileoscope.com"]
|
13
|
+
s.homepage = %q{http://github.com/#{github_username}/#{project_name}}
|
14
|
+
s.summary = "god + cap"
|
15
|
+
s.description = "gap is a wrapper of capistrano. gap = god + cap"
|
16
|
+
|
17
|
+
#s.required_rubygems_version = ">= 1.3.6"
|
18
|
+
s.add_dependency("capistrano", ">= 2.9.0")
|
19
|
+
s.add_dependency("god", "~> 0.11.0")
|
20
|
+
|
21
|
+
s.files = Dir.glob("lib/**/*") + %w(README.rdoc Rakefile)
|
22
|
+
s.require_path = 'lib'
|
23
|
+
end
|
data/lib/gap.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: gap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Takashi Yaguchi
|
@@ -57,6 +57,7 @@ extra_rdoc_files:
|
|
57
57
|
- Manifest.txt
|
58
58
|
- PostInstall.txt
|
59
59
|
files:
|
60
|
+
- gap.gemspec
|
60
61
|
- History.txt
|
61
62
|
- Manifest.txt
|
62
63
|
- PostInstall.txt
|