bones-git 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +5 -0
  2. data/Rakefile +1 -1
  3. data/lib/bones/app/git.rb +2 -2
  4. metadata +2 -2
@@ -1,3 +1,8 @@
1
+ == 1.1.1 / 2009-11-14
2
+
3
+ * 1 bug fix
4
+ * Namespacing problem when referencing the Error class
5
+
1
6
  == 1.1.0 / 2009-11-13
2
7
 
3
8
  * 1 minor enhancement
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ Bones {
12
12
  authors 'Tim Pease'
13
13
  email 'tim.pease@gmail.com'
14
14
  url 'http://github.com/TwP/bones-git'
15
- version '1.1.0'
15
+ version '1.1.1'
16
16
  ignore_file '.gitignore'
17
17
 
18
18
  depend_on 'bones'
@@ -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.0
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-13 00:00:00 -07:00
12
+ date: 2009-11-14 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency