philnash-bitly 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 0.1.1 / 2009-01-26
2
+
3
+ * 1 bug fix
4
+
5
+ * Didn't include dependency on JSON
6
+
1
7
  === 0.1.0 / 2009-01-26
2
8
 
3
9
  * 1 major enhancement
data/Rakefile CHANGED
@@ -10,6 +10,7 @@ Echoe.new('bitly', Bitly::VERSION) do |p|
10
10
  p.url = "http://github.com/philnash/bitly"
11
11
  p.author = "Phil Nash"
12
12
  p.email = "philnash@gmail.com"
13
+ p.runtime_dependencies = ['json']
13
14
  p.development_dependencies = []
14
15
  end
15
16
 
data/bitly.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{bitly}
5
- s.version = "0.1.0"
5
+ s.version = "0.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Phil Nash"]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = %q{Use the bit.ly API to shorten or expand URLs}
11
11
  s.email = %q{philnash@gmail.com}
12
12
  s.extra_rdoc_files = ["lib/bitly/client.rb", "lib/bitly/url.rb", "lib/bitly/utils.rb", "lib/bitly/version.rb", "lib/bitly.rb", "README.txt"]
13
- s.files = ["History.txt", "lib/bitly/client.rb", "lib/bitly/url.rb", "lib/bitly/utils.rb", "lib/bitly/version.rb", "lib/bitly.rb", "Rakefile", "README.txt", "test/test_bitly.rb", "Manifest", "bitly.gemspec"]
13
+ s.files = ["bitly.gemspec", "History.txt", "lib/bitly/client.rb", "lib/bitly/url.rb", "lib/bitly/utils.rb", "lib/bitly/version.rb", "lib/bitly.rb", "Manifest", "Rakefile", "README.txt", "test/test_bitly.rb"]
14
14
  s.has_rdoc = true
15
15
  s.homepage = %q{http://github.com/philnash/bitly}
16
16
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Bitly", "--main", "README.txt"]
@@ -25,8 +25,11 @@ Gem::Specification.new do |s|
25
25
  s.specification_version = 2
26
26
 
27
27
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
28
+ s.add_runtime_dependency(%q<json>, [">= 0"])
28
29
  else
30
+ s.add_dependency(%q<json>, [">= 0"])
29
31
  end
30
32
  else
33
+ s.add_dependency(%q<json>, [">= 0"])
31
34
  end
32
35
  end
data/lib/bitly/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Bitly
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philnash-bitly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phil Nash
@@ -11,8 +11,16 @@ cert_chain: []
11
11
 
12
12
  date: 2009-01-26 00:00:00 -08:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: json
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: "0"
23
+ version:
16
24
  description: Use the bit.ly API to shorten or expand URLs
17
25
  email: philnash@gmail.com
18
26
  executables: []
@@ -27,17 +35,17 @@ extra_rdoc_files:
27
35
  - lib/bitly.rb
28
36
  - README.txt
29
37
  files:
38
+ - bitly.gemspec
30
39
  - History.txt
31
40
  - lib/bitly/client.rb
32
41
  - lib/bitly/url.rb
33
42
  - lib/bitly/utils.rb
34
43
  - lib/bitly/version.rb
35
44
  - lib/bitly.rb
45
+ - Manifest
36
46
  - Rakefile
37
47
  - README.txt
38
48
  - test/test_bitly.rb
39
- - Manifest
40
- - bitly.gemspec
41
49
  has_rdoc: true
42
50
  homepage: http://github.com/philnash/bitly
43
51
  post_install_message: