git-topic 0.2.7.1 → 0.2.7.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/Gemfile +4 -5
- data/History.rdoc +5 -0
- data/VERSION.yml +1 -1
- data/lib/git_topic.rb +0 -6
- metadata +19 -6
- data/Gemfile.lock +0 -64
data/.gitignore
CHANGED
data/Gemfile
CHANGED
@@ -5,14 +5,10 @@ source :gemcutter
|
|
5
5
|
group :runtime do
|
6
6
|
gem 'activesupport', '~> 3.0'
|
7
7
|
gem 'trollop'
|
8
|
-
|
9
|
-
# This nutiness makes very little sense, but I can't find a sane way of
|
10
|
-
# calling ‘gemspec’ that works. Of course, the non-exisistant documentation
|
11
|
-
# is of little help.
|
12
|
-
gem 'git-topic'
|
13
8
|
end
|
14
9
|
|
15
10
|
group :development do
|
11
|
+
gem 'rake'
|
16
12
|
gem 'jeweler'
|
17
13
|
gem 'rake'
|
18
14
|
gem 'rspec', '~> 2.0.0'
|
@@ -23,6 +19,9 @@ group :development do
|
|
23
19
|
gem 'autotest-screen'
|
24
20
|
|
25
21
|
gem 'ruby-debug19'
|
22
|
+
|
23
|
+
# Kind of a big dependency just for the source annotation extractor
|
24
|
+
gem 'rails', '~> 3.0'
|
26
25
|
end
|
27
26
|
|
28
27
|
|
data/History.rdoc
CHANGED
data/VERSION.yml
CHANGED
data/lib/git_topic.rb
CHANGED
@@ -2,12 +2,6 @@
|
|
2
2
|
# encoding: utf-8
|
3
3
|
|
4
4
|
require 'rubygems'
|
5
|
-
require 'bundler'
|
6
|
-
|
7
|
-
# Work around absurd bundler API
|
8
|
-
ENV['BUNDLE_GEMFILE'] = "#{File.dirname __FILE__}/../Gemfile"
|
9
|
-
Bundler.setup :runtime
|
10
|
-
ENV.delete 'BUNDLE_GEMFILE'
|
11
5
|
|
12
6
|
require 'active_support'
|
13
7
|
require 'active_support/core_ext/hash/keys'
|
metadata
CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
|
|
6
6
|
- 0
|
7
7
|
- 2
|
8
8
|
- 7
|
9
|
-
-
|
10
|
-
version: 0.2.7.
|
9
|
+
- 2
|
10
|
+
version: 0.2.7.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- David J. Hamilton
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-10-
|
18
|
+
date: 2010-10-22 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -46,7 +46,7 @@ dependencies:
|
|
46
46
|
prerelease: false
|
47
47
|
version_requirements: *id002
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
|
-
name:
|
49
|
+
name: rake
|
50
50
|
requirement: &id003 !ruby/object:Gem::Requirement
|
51
51
|
none: false
|
52
52
|
requirements:
|
@@ -55,7 +55,7 @@ dependencies:
|
|
55
55
|
segments:
|
56
56
|
- 0
|
57
57
|
version: "0"
|
58
|
-
type: :
|
58
|
+
type: :development
|
59
59
|
prerelease: false
|
60
60
|
version_requirements: *id003
|
61
61
|
- !ruby/object:Gem::Dependency
|
@@ -166,6 +166,20 @@ dependencies:
|
|
166
166
|
type: :development
|
167
167
|
prerelease: false
|
168
168
|
version_requirements: *id011
|
169
|
+
- !ruby/object:Gem::Dependency
|
170
|
+
name: rails
|
171
|
+
requirement: &id012 !ruby/object:Gem::Requirement
|
172
|
+
none: false
|
173
|
+
requirements:
|
174
|
+
- - ~>
|
175
|
+
- !ruby/object:Gem::Version
|
176
|
+
segments:
|
177
|
+
- 3
|
178
|
+
- 0
|
179
|
+
version: "3.0"
|
180
|
+
type: :development
|
181
|
+
prerelease: false
|
182
|
+
version_requirements: *id012
|
169
183
|
description: "\n gem command around reviewed topic branches. Supports workflow of the form:\n\n # alexander:\n git work-on <topic>\n git done\n\n # bismarck:\n git status # notice a review branch\n git review <topic>\n # happy, merge into master, push and cleanup\n git accept\n\n git review <topic2>\n # unhappy\n git reject\n\n # alexander:\n git status # notice rejected topic\n git work-on <topic>\n\n see README.rdoc for more (any) details.\n\n\n To make use of bash autocompletion, you must do the following:\n\n 1. Make sure you source share/completion.bash before you source git's completion.\n 2. Optionally, copy git-topic-completion to your gem's bin directory.\n This is to sidestep ruby issue 3465 which makes loading gems far too\n slow for autocompletion.\n "
|
170
184
|
email: git-topic@hjdivad.com
|
171
185
|
executables:
|
@@ -187,7 +201,6 @@ files:
|
|
187
201
|
- .vimspell.utf8.add
|
188
202
|
- .vimspell.utf8.add.spl
|
189
203
|
- Gemfile
|
190
|
-
- Gemfile.lock
|
191
204
|
- History.rdoc
|
192
205
|
- LICENSE
|
193
206
|
- README.rdoc
|
data/Gemfile.lock
DELETED
@@ -1,64 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
activesupport (3.0.1)
|
5
|
-
archive-tar-minitar (0.5.2)
|
6
|
-
autotest (4.4.1)
|
7
|
-
autotest-screen (0.1.0.1)
|
8
|
-
columnize (0.3.1)
|
9
|
-
diff-lcs (1.1.2)
|
10
|
-
gemcutter (0.5.0)
|
11
|
-
json_pure
|
12
|
-
git (1.2.5)
|
13
|
-
git-topic (0.2.7.1)
|
14
|
-
activesupport (~> 3.0)
|
15
|
-
git-topic
|
16
|
-
trollop
|
17
|
-
jeweler (1.4.0)
|
18
|
-
gemcutter (>= 0.1.0)
|
19
|
-
git (>= 1.2.5)
|
20
|
-
rubyforge (>= 2.0.0)
|
21
|
-
json_pure (1.4.6)
|
22
|
-
linecache19 (0.5.11)
|
23
|
-
ruby_core_source (>= 0.1.4)
|
24
|
-
rake (0.8.7)
|
25
|
-
rspec (2.0.1)
|
26
|
-
rspec-core (~> 2.0.1)
|
27
|
-
rspec-expectations (~> 2.0.1)
|
28
|
-
rspec-mocks (~> 2.0.1)
|
29
|
-
rspec-core (2.0.1)
|
30
|
-
rspec-expectations (2.0.1)
|
31
|
-
diff-lcs (>= 1.1.2)
|
32
|
-
rspec-mocks (2.0.1)
|
33
|
-
rspec-core (~> 2.0.1)
|
34
|
-
rspec-expectations (~> 2.0.1)
|
35
|
-
ruby-debug-base19 (0.11.24)
|
36
|
-
columnize (>= 0.3.1)
|
37
|
-
linecache19 (>= 0.5.11)
|
38
|
-
ruby_core_source (>= 0.1.4)
|
39
|
-
ruby-debug19 (0.11.6)
|
40
|
-
columnize (>= 0.3.1)
|
41
|
-
linecache19 (>= 0.5.11)
|
42
|
-
ruby-debug-base19 (>= 0.11.19)
|
43
|
-
ruby_core_source (0.1.4)
|
44
|
-
archive-tar-minitar (>= 0.5.2)
|
45
|
-
rubyforge (2.0.4)
|
46
|
-
json_pure (>= 1.1.7)
|
47
|
-
trollop (1.16.2)
|
48
|
-
yard (0.6.1)
|
49
|
-
|
50
|
-
PLATFORMS
|
51
|
-
ruby
|
52
|
-
|
53
|
-
DEPENDENCIES
|
54
|
-
activesupport (~> 3.0)
|
55
|
-
autotest
|
56
|
-
autotest-screen
|
57
|
-
gemcutter (~> 0.5.0)
|
58
|
-
git-topic
|
59
|
-
jeweler
|
60
|
-
rake
|
61
|
-
rspec (~> 2.0.0)
|
62
|
-
ruby-debug19
|
63
|
-
trollop
|
64
|
-
yard
|