git-graph 0.1.2 → 0.1.3

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.tar.gz.sig CHANGED
Binary file
@@ -1,4 +1,4 @@
1
+ bundler_args: ""
1
2
  rvm:
2
- - ree
3
- - 1.9.2
4
3
  - 1.9.3
4
+ - 2.0.0
@@ -0,0 +1,30 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ git-graph (0.1.3)
5
+ gchartrb
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ bump (0.3.9)
11
+ diff-lcs (1.1.3)
12
+ gchartrb (0.8)
13
+ rake (10.0.3)
14
+ rspec (2.12.0)
15
+ rspec-core (~> 2.12.0)
16
+ rspec-expectations (~> 2.12.0)
17
+ rspec-mocks (~> 2.12.0)
18
+ rspec-core (2.12.2)
19
+ rspec-expectations (2.12.1)
20
+ diff-lcs (~> 1.1.3)
21
+ rspec-mocks (2.12.2)
22
+
23
+ PLATFORMS
24
+ ruby
25
+
26
+ DEPENDENCIES
27
+ bump
28
+ git-graph!
29
+ rake
30
+ rspec (~> 2)
data/Readme.md CHANGED
@@ -48,4 +48,4 @@ Author
48
48
  [Michael Grosser](http://grosser.it)<br/>
49
49
  michael@grosser.it<br/>
50
50
  License: MIT<br/>
51
- [![Build Status](https://travis-ci.org/grosser/git_graph.png)](https://travis-ci.org/grosser/git_graph)
51
+ [![Build Status](https://travis-ci.org/grosser/git-graph.png)](https://travis-ci.org/grosser/git-graph)
@@ -112,7 +112,7 @@ when "chart"
112
112
  end.to_url
113
113
  puts url
114
114
  else
115
- raise "Format #{options[:format]} unknonw"
115
+ raise "Format #{options[:format]} unknown"
116
116
  end
117
117
 
118
118
  run("git checkout master")
@@ -9,8 +9,11 @@ Gem::Specification.new name, Git::Graph::VERSION do |s|
9
9
  s.homepage = "http://github.com/grosser/#{name}"
10
10
  s.files = `git ls-files`.split("\n")
11
11
  s.license = "MIT"
12
- s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem")
13
- s.cert_chain = ["gem-public_cert.pem"]
12
+ cert = File.expand_path("~/.ssh/gem-private-key-grosser.pem")
13
+ if File.exist?(cert)
14
+ s.signing_key = cert
15
+ s.cert_chain = ["gem-public_cert.pem"]
16
+ end
14
17
  s.executables = ["git-graph"]
15
18
  s.add_runtime_dependency "gchartrb"
16
19
  end
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  module Graph
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
@@ -19,12 +19,13 @@ describe Git::Graph do
19
19
 
20
20
  before :all do
21
21
  run("rm -rf #{Bundler.root.join("tmp/parallel")}")
22
+ run("mkdir -p #{Bundler.root.join("tmp")}")
22
23
  run("cd #{Bundler.root.join("tmp")} && git clone git://github.com/grosser/parallel.git 2>&1")
23
24
  end
24
25
 
25
26
  around do |example|
26
27
  Dir.chdir(Bundler.root.join("tmp/parallel")) do
27
- run("git co master 2>&1")
28
+ run("git checkout master 2>&1")
28
29
  example.call
29
30
  end
30
31
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -36,7 +36,7 @@ cert_chain:
36
36
  VHNmKzZNYWVud0FNa0FnSGRzd0dzSnp0T25ObkJhM0YKeTBrQ1NXbUs2RCt4
37
37
  L1NiZlM2cjdLZTA3TVJxemlKZEI5R3VFMSswY0lSdUZoOEVRK0xONkhYQ0tN
38
38
  NXBvbi9HVQp5Y3dNWGZsMAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
39
- date: 2013-03-10 00:00:00.000000000 Z
39
+ date: 2013-08-24 00:00:00.000000000 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: gchartrb
@@ -63,6 +63,7 @@ extra_rdoc_files: []
63
63
  files:
64
64
  - .travis.yml
65
65
  - Gemfile
66
+ - Gemfile.lock
66
67
  - Rakefile
67
68
  - Readme.md
68
69
  - bin/git-graph
@@ -87,7 +88,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
87
88
  version: '0'
88
89
  segments:
89
90
  - 0
90
- hash: 2178104070771132017
91
+ hash: 1244151225510363496
91
92
  required_rubygems_version: !ruby/object:Gem::Requirement
92
93
  none: false
93
94
  requirements:
@@ -96,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
97
  version: '0'
97
98
  segments:
98
99
  - 0
99
- hash: 2178104070771132017
100
+ hash: 1244151225510363496
100
101
  requirements: []
101
102
  rubyforge_project:
102
103
  rubygems_version: 1.8.25
metadata.gz.sig CHANGED
Binary file