ruby-github 0.0.2 → 0.0.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.
Files changed (3) hide show
  1. data/Rakefile +1 -1
  2. data/lib/ruby-github.rb +1 -1
  3. metadata +5 -5
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require './lib/ruby-github.rb'
7
7
  Hoe.new('ruby-github', GitHub::VERSION) do |p|
8
8
  p.developer('Michael Bleigh', 'michael@example.com')
9
9
  p.remote_rdoc_dir = ''
10
- p.extra_deps = ["mash >= 0.0.2", "json"]
10
+ p.extra_deps = [["mash",">= 0.0.3"], "json"]
11
11
  end
12
12
 
13
13
  # vim: syntax=Ruby
@@ -4,7 +4,7 @@ require 'open-uri'
4
4
  require 'mash'
5
5
 
6
6
  module GitHub
7
- VERSION = "0.0.2"
7
+ VERSION = "0.0.3"
8
8
  class API
9
9
  BASE_URL = "http://github.com/api/v1/json"
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-github
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bleigh
@@ -9,17 +9,17 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-04-12 00:00:00 -04:00
12
+ date: 2008-04-16 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
- name: mash >= 0.0.2
16
+ name: mash
17
17
  version_requirement:
18
18
  version_requirements: !ruby/object:Gem::Requirement
19
19
  requirements:
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: "0"
22
+ version: 0.0.3
23
23
  version:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: json
@@ -79,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  requirements: []
80
80
 
81
81
  rubyforge_project: ruby-github
82
- rubygems_version: 1.1.0
82
+ rubygems_version: 1.1.1
83
83
  signing_key:
84
84
  specification_version: 2
85
85
  summary: Ruby-GitHub is a simple wrapper library for the evolving GitHub API.