bones-git 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/History.txt +5 -0
- data/Rakefile +1 -1
- data/lib/bones/app/git.rb +2 -2
- metadata +2 -2
data/History.txt
CHANGED
data/Rakefile
CHANGED
data/lib/bones/app/git.rb
CHANGED
|
@@ -65,8 +65,8 @@ module Bones::App::Git
|
|
|
65
65
|
user = Git.global_config['github.user']
|
|
66
66
|
token = Git.global_config['github.token']
|
|
67
67
|
|
|
68
|
-
raise Error, 'A GitHub username was not found in the global configuration.' unless user
|
|
69
|
-
raise Error, 'A GitHub token was not found in the global configuration.' unless token
|
|
68
|
+
raise ::Bones::App::Error, 'A GitHub username was not found in the global configuration.' unless user
|
|
69
|
+
raise ::Bones::App::Error, 'A GitHub token was not found in the global configuration.' unless token
|
|
70
70
|
|
|
71
71
|
Net::HTTP.post_form(
|
|
72
72
|
URI.parse('http://github.com/api/v2/yaml/repos/create'),
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bones-git
|
|
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
|
- Tim Pease
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-11-
|
|
12
|
+
date: 2009-11-14 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|