lighthouse_branch 1.1.0 → 1.1.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/README.rdoc +2 -2
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/lighthouse_branch.gemspec +10 -6
- metadata +4 -4
data/README.rdoc
CHANGED
|
@@ -22,10 +22,10 @@ If remote_name is given, the branch will be pushed to the remote.
|
|
|
22
22
|
lh-branch 1 #=> git checkout -b 1-ticket-title
|
|
23
23
|
|
|
24
24
|
lh-branch push [ticket_id] [remote_name]: Pushes the ticket's branch to the named remote.
|
|
25
|
-
lh-branch 1 origin #=> git push origin 1-ticket-title
|
|
25
|
+
lh-branch push 1 origin #=> git push origin 1-ticket-title
|
|
26
26
|
|
|
27
27
|
lh-branch pull [ticket_id] [remote_name]: Pulls the ticket's branch from the named remote.
|
|
28
|
-
lh-branch 1 origin #=> git pull origin 1-ticket-title
|
|
28
|
+
lh-branch pull 1 origin #=> git pull origin 1-ticket-title
|
|
29
29
|
|
|
30
30
|
lh-branch merge [ticket_id]: Merges the ticket's branch with the current branch.
|
|
31
31
|
lh-branch merge 1 #=> git merge 1-ticket-title
|
data/Rakefile
CHANGED
|
@@ -11,10 +11,10 @@ begin
|
|
|
11
11
|
gem.authors = ["Matt Pruitt"]
|
|
12
12
|
gem.rubyforge_project = "lh-branch"
|
|
13
13
|
gem.add_dependency('grit', '>= 1.1.1')
|
|
14
|
-
gem.add_dependency('
|
|
14
|
+
gem.add_dependency('lighthouse-api', '>= 1.0.0')
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
-
Jeweler::
|
|
17
|
+
Jeweler::GemcutterTasks.new
|
|
18
18
|
rescue LoadError
|
|
19
19
|
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
|
20
20
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.1
|
data/lighthouse_branch.gemspec
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
|
|
1
4
|
# -*- encoding: utf-8 -*-
|
|
2
5
|
|
|
3
6
|
Gem::Specification.new do |s|
|
|
4
7
|
s.name = %q{lighthouse_branch}
|
|
5
|
-
s.version = "1.1.
|
|
8
|
+
s.version = "1.1.1"
|
|
6
9
|
|
|
7
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
11
|
s.authors = ["Matt Pruitt"]
|
|
9
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2010-02-02}
|
|
10
13
|
s.email = %q{guitsaru@gmail.com}
|
|
11
14
|
s.executables = ["lh-branch", "lhb"]
|
|
12
15
|
s.extra_rdoc_files = [
|
|
@@ -50,7 +53,7 @@ Gem::Specification.new do |s|
|
|
|
50
53
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
51
54
|
s.require_paths = ["lib"]
|
|
52
55
|
s.rubyforge_project = %q{lh-branch}
|
|
53
|
-
s.rubygems_version = %q{1.3.
|
|
56
|
+
s.rubygems_version = %q{1.3.5}
|
|
54
57
|
s.summary = %q{Easily manage branches based off lighthouse tickets.}
|
|
55
58
|
s.test_files = [
|
|
56
59
|
"test/command/test_base.rb",
|
|
@@ -72,13 +75,14 @@ Gem::Specification.new do |s|
|
|
|
72
75
|
|
|
73
76
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
74
77
|
s.add_runtime_dependency(%q<grit>, [">= 1.1.1"])
|
|
75
|
-
s.add_runtime_dependency(%q<
|
|
78
|
+
s.add_runtime_dependency(%q<lighthouse-api>, [">= 1.0.0"])
|
|
76
79
|
else
|
|
77
80
|
s.add_dependency(%q<grit>, [">= 1.1.1"])
|
|
78
|
-
s.add_dependency(%q<
|
|
81
|
+
s.add_dependency(%q<lighthouse-api>, [">= 1.0.0"])
|
|
79
82
|
end
|
|
80
83
|
else
|
|
81
84
|
s.add_dependency(%q<grit>, [">= 1.1.1"])
|
|
82
|
-
s.add_dependency(%q<
|
|
85
|
+
s.add_dependency(%q<lighthouse-api>, [">= 1.0.0"])
|
|
83
86
|
end
|
|
84
87
|
end
|
|
88
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lighthouse_branch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Pruitt
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date:
|
|
12
|
+
date: 2010-02-02 00:00:00 -06:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -23,7 +23,7 @@ dependencies:
|
|
|
23
23
|
version: 1.1.1
|
|
24
24
|
version:
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
|
-
name:
|
|
26
|
+
name: lighthouse-api
|
|
27
27
|
type: :runtime
|
|
28
28
|
version_requirement:
|
|
29
29
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
98
98
|
requirements: []
|
|
99
99
|
|
|
100
100
|
rubyforge_project: lh-branch
|
|
101
|
-
rubygems_version: 1.3.
|
|
101
|
+
rubygems_version: 1.3.5
|
|
102
102
|
signing_key:
|
|
103
103
|
specification_version: 3
|
|
104
104
|
summary: Easily manage branches based off lighthouse tickets.
|