git-process 1.0.1 → 1.0.2
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/Gemfile +1 -2
- data/Gemfile.lock +2 -4
- data/git-process.gemspec +2 -4
- data/lib/git-process/version.rb +1 -1
- metadata +4 -18
data/Gemfile
CHANGED
@@ -5,8 +5,7 @@ group :default do
|
|
5
5
|
gem "json", "~> 1.7.3"
|
6
6
|
gem "trollop", "~> 1.16.2" # CLI options parser
|
7
7
|
gem "highline", "~> 1.6.12" # user CLI interaction
|
8
|
-
gem "termios", "~> 0.9.4" # used by highline to make things a little nicer
|
9
|
-
gem "system_timer", "~> 1.2.4" # Needed by faraday via octokit
|
8
|
+
gem "ruby-termios", "~> 0.9.4" # used by highline to make things a little nicer
|
10
9
|
end
|
11
10
|
|
12
11
|
group :development do
|
data/Gemfile.lock
CHANGED
@@ -29,8 +29,7 @@ GEM
|
|
29
29
|
rspec-expectations (2.10.0)
|
30
30
|
diff-lcs (~> 1.1.3)
|
31
31
|
rspec-mocks (2.10.1)
|
32
|
-
|
33
|
-
termios (0.9.4)
|
32
|
+
ruby-termios (0.9.6)
|
34
33
|
trollop (1.16.2)
|
35
34
|
webmock (1.8.7)
|
36
35
|
addressable (>= 2.2.7)
|
@@ -47,8 +46,7 @@ DEPENDENCIES
|
|
47
46
|
rake (~> 0.9.2)
|
48
47
|
redcarpet (~> 2.1.1)
|
49
48
|
rspec (~> 2.10.0)
|
50
|
-
|
51
|
-
termios (~> 0.9.4)
|
49
|
+
ruby-termios (~> 0.9.4)
|
52
50
|
trollop (~> 1.16.2)
|
53
51
|
webmock (~> 1.8.7)
|
54
52
|
yard (~> 0.8.2.1)
|
data/git-process.gemspec
CHANGED
@@ -1,7 +1,6 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
1
|
require File.expand_path('../lib/git-process/version', __FILE__)
|
3
2
|
|
4
|
-
Gem::Specification.new do |gem|
|
3
|
+
gemspec = Gem::Specification.new do |gem|
|
5
4
|
gem.authors = ["Jim Moore"]
|
6
5
|
gem.email = ["moore.jim@gmail.com"]
|
7
6
|
gem.description = %q{A set of scripts to make working with git easier and more consistent}
|
@@ -13,8 +12,7 @@ Gem::Specification.new do |gem|
|
|
13
12
|
gem.add_dependency "json", "~> 1.7.3"
|
14
13
|
gem.add_dependency "trollop", "~> 1.16.2" # CLI options parser
|
15
14
|
gem.add_dependency "highline", "~> 1.6.12" # user CLI interaction
|
16
|
-
gem.add_dependency "termios", "~> 0.9.4" # used by highline to make things a little nicer
|
17
|
-
gem.add_dependency "system_timer", "~> 1.2.4" # Needed by faraday via octokit
|
15
|
+
gem.add_dependency "ruby-termios", "~> 0.9.4" # used by highline to make things a little nicer
|
18
16
|
|
19
17
|
gem.files = `git ls-files`.split($\).delete_if{|f| f =~ /^\./}
|
20
18
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/git-process/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 1.0.
|
8
|
+
- 2
|
9
|
+
version: 1.0.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Jim Moore
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2012-08-
|
17
|
+
date: 2012-08-27 00:00:00 -06:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -84,23 +84,9 @@ dependencies:
|
|
84
84
|
- 9
|
85
85
|
- 4
|
86
86
|
version: 0.9.4
|
87
|
-
name: termios
|
87
|
+
name: ruby-termios
|
88
88
|
requirement: *id005
|
89
89
|
prerelease: false
|
90
|
-
- !ruby/object:Gem::Dependency
|
91
|
-
type: :runtime
|
92
|
-
version_requirements: &id006 !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ~>
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
segments:
|
97
|
-
- 1
|
98
|
-
- 2
|
99
|
-
- 4
|
100
|
-
version: 1.2.4
|
101
|
-
name: system_timer
|
102
|
-
requirement: *id006
|
103
|
-
prerelease: false
|
104
90
|
description: A set of scripts to make working with git easier and more consistent
|
105
91
|
email:
|
106
92
|
- moore.jim@gmail.com
|