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.
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in sailor.gemspec
4
+ gemspec
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require 'sailor'
4
+
5
+ Sailor::CLI.new(ARGV)
data/bin/sl ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require 'sailor'
4
+
5
+ Sailor::CLI.new(ARGV)
@@ -0,0 +1,5 @@
1
+ module Sailor
2
+ # Your code goes here...
3
+ end
4
+
5
+ require 'sailor/cli'
@@ -0,0 +1,7 @@
1
+ module Sailor
2
+ class CLI
3
+ def initialize(argv)
4
+ puts "You sent #{argv}"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module Sailor
2
+ VERSION = "0.0.1"
3
+ end
@@ -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
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe Sailor do
4
+ it "should have a version" do
5
+ Sailor::VERSION.should be_a(String)
6
+ end
7
+ end
@@ -0,0 +1,6 @@
1
+ require 'bundler/setup'
2
+ require 'sailor'
3
+
4
+ RSpec.configure do |config|
5
+
6
+ end
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: