gill 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -6,6 +6,10 @@ Files created by gill:
6
6
  * ~/.gillrc #=> gill configurations
7
7
  * ~/.gillcache #=> List of all gilled (installed) repos.
8
8
 
9
+ == Install
10
+
11
+ gem install gill
12
+
9
13
  == Example
10
14
 
11
15
  Gill Usage:
@@ -33,23 +37,23 @@ Cloning a git repo with gill:
33
37
  This will create a folder called 'rails' and clone the repo inside a folder called 'snorby'. ie: '/Users/mephux/Source/rails/snorby/'
34
38
 
35
39
  gill jruby:jruby:http://github.com/jruby/jruby.git
36
- gill security:ronin:http://github.com/postmodern/ronin.git
40
+ gill security:ronin:http://github.com/ronin-ruby/ronin.git
37
41
  gill work:project:uri_to_work_proejct
38
42
  etc...
39
43
 
40
- Listing cloned repos:
44
+ Listing cloned repositories:
41
45
 
42
46
  $ gill --list
43
- Listing Installed Repos:
47
+ Listing Cloned Repositories:
44
48
 
45
49
  rails:
46
50
  snorby => git@github.com:mephux/Snorby.git
47
51
 
48
- Removing a cloned repo:
52
+ Removing cloned repositories:
49
53
 
50
54
  $ gill -r rails:snorby
51
55
  Removing: rails-test => snorby
52
- Repo Removed Successfully.
56
+ Repository Removed Successfully.
53
57
  Updating Cache...
54
58
 
55
59
  == Note on Patches/Pull Requests
data/Rakefile CHANGED
@@ -1,7 +1,4 @@
1
1
  require 'rubygems'
2
- require 'rake'
3
- require 'jeweler'
4
- require './lib/gill/version.rb'
5
2
  require 'bundler'
6
3
 
7
4
  begin
@@ -12,6 +9,10 @@ rescue Bundler::BundlerError => e
12
9
  exit e.status_code
13
10
  end
14
11
 
12
+ require 'rake'
13
+ require 'jeweler'
14
+ require './lib/gill/version.rb'
15
+
15
16
  Jeweler::Tasks.new do |gem|
16
17
  gem.name = 'gill'
17
18
  gem.version = Gill::VERSION
@@ -34,4 +35,4 @@ end
34
35
  task :default => :spec
35
36
 
36
37
  require 'yard'
37
- YARD::Rake::YardocTask.new
38
+ YARD::Rake::YardocTask.new
data/gill.gemspec ADDED
@@ -0,0 +1,72 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{gill}
8
+ s.version = "0.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Dustin Willis Webber"]
12
+ s.date = %q{2010-06-27}
13
+ s.default_executable = %q{gill}
14
+ s.description = %q{Gill is a simple Ruby app to help keep your git clones clean and organized.}
15
+ s.email = %q{dustin.webber@gmail.com}
16
+ s.executables = ["gill"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE",
19
+ "README.rdoc"
20
+ ]
21
+ s.files = [
22
+ ".document",
23
+ ".gitignore",
24
+ ".specopts",
25
+ ".yardopts",
26
+ "Gemfile",
27
+ "LICENSE",
28
+ "README.rdoc",
29
+ "Rakefile",
30
+ "bin/gill",
31
+ "gill.gemspec",
32
+ "lib/gill.rb",
33
+ "lib/gill/app.rb",
34
+ "lib/gill/config.rb",
35
+ "lib/gill/git.rb",
36
+ "lib/gill/remove.rb",
37
+ "lib/gill/version.rb",
38
+ "spec/gill_spec.rb",
39
+ "spec/spec.opts",
40
+ "spec/spec_helper.rb"
41
+ ]
42
+ s.has_rdoc = %q{yard}
43
+ s.homepage = %q{http://github.com/mephux/gill}
44
+ s.licenses = ["MIT"]
45
+ s.require_paths = ["lib"]
46
+ s.rubygems_version = %q{1.3.6}
47
+ s.summary = %q{Gill- Git, Clone, Cleanliness.}
48
+ s.test_files = [
49
+ "spec/gill_spec.rb",
50
+ "spec/spec_helper.rb"
51
+ ]
52
+
53
+ if s.respond_to? :specification_version then
54
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
55
+ s.specification_version = 3
56
+
57
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
58
+ s.add_development_dependency(%q<rake>, ["~> 0.8.7"])
59
+ s.add_development_dependency(%q<jeweler>, ["~> 1.4.0"])
60
+ s.add_development_dependency(%q<rspec>, ["~> 1.3.0"])
61
+ else
62
+ s.add_dependency(%q<rake>, ["~> 0.8.7"])
63
+ s.add_dependency(%q<jeweler>, ["~> 1.4.0"])
64
+ s.add_dependency(%q<rspec>, ["~> 1.3.0"])
65
+ end
66
+ else
67
+ s.add_dependency(%q<rake>, ["~> 0.8.7"])
68
+ s.add_dependency(%q<jeweler>, ["~> 1.4.0"])
69
+ s.add_dependency(%q<rspec>, ["~> 1.3.0"])
70
+ end
71
+ end
72
+
data/lib/gill/app.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  require 'gill/config'
2
2
  require 'gill/git'
3
+ require 'fileutils'
3
4
  require 'gill/remove'
4
5
  require 'gill/version'
5
6
  require 'yaml'
data/lib/gill/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Gill
2
2
  # Gill Version
3
- VERSION = '0.0.1'
3
+ VERSION = '0.0.2'
4
4
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Dustin Willis Webber
@@ -78,6 +78,7 @@ files:
78
78
  - README.rdoc
79
79
  - Rakefile
80
80
  - bin/gill
81
+ - gill.gemspec
81
82
  - lib/gill.rb
82
83
  - lib/gill/app.rb
83
84
  - lib/gill/config.rb