sailor 0.0.1
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/.gitignore +4 -0
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/Rakefile +2 -0
- data/bin/sailor +5 -0
- data/bin/sl +5 -0
- data/lib/sailor.rb +5 -0
- data/lib/sailor/cli.rb +7 -0
- data/lib/sailor/version.rb +3 -0
- data/sailor.gemspec +23 -0
- data/spec/sailor_spec.rb +7 -0
- data/spec/spec_helper.rb +6 -0
- metadata +71 -0
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
data/bin/sailor
ADDED
data/bin/sl
ADDED
data/lib/sailor.rb
ADDED
data/lib/sailor/cli.rb
ADDED
data/sailor.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "sailor/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "sailor"
|
7
|
+
s.version = Sailor::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Utkarsh Kukreti"]
|
10
|
+
s.email = ["utkarshkukreti@gmail.com"]
|
11
|
+
s.homepage = "http://github.com/utkarshkukreti/sailor/"
|
12
|
+
s.summary = %q{Git based deployment tool.}
|
13
|
+
s.description = %q{Git based deployment tool.}
|
14
|
+
|
15
|
+
s.rubyforge_project = "sailor"
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
|
+
s.require_paths = ["lib"]
|
21
|
+
|
22
|
+
s.add_development_dependency 'rspec', '~> 2.5'
|
23
|
+
end
|
data/spec/sailor_spec.rb
ADDED
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sailor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Utkarsh Kukreti
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2011-04-29 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: &74753790 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '2.5'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *74753790
|
25
|
+
description: Git based deployment tool.
|
26
|
+
email:
|
27
|
+
- utkarshkukreti@gmail.com
|
28
|
+
executables:
|
29
|
+
- sailor
|
30
|
+
- sl
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- .gitignore
|
35
|
+
- .rspec
|
36
|
+
- Gemfile
|
37
|
+
- Rakefile
|
38
|
+
- bin/sailor
|
39
|
+
- bin/sl
|
40
|
+
- lib/sailor.rb
|
41
|
+
- lib/sailor/cli.rb
|
42
|
+
- lib/sailor/version.rb
|
43
|
+
- sailor.gemspec
|
44
|
+
- spec/sailor_spec.rb
|
45
|
+
- spec/spec_helper.rb
|
46
|
+
homepage: http://github.com/utkarshkukreti/sailor/
|
47
|
+
licenses: []
|
48
|
+
post_install_message:
|
49
|
+
rdoc_options: []
|
50
|
+
require_paths:
|
51
|
+
- lib
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ! '>='
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ! '>='
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
requirements: []
|
65
|
+
rubyforge_project: sailor
|
66
|
+
rubygems_version: 1.7.2
|
67
|
+
signing_key:
|
68
|
+
specification_version: 3
|
69
|
+
summary: Git based deployment tool.
|
70
|
+
test_files: []
|
71
|
+
has_rdoc:
|