collecta_ruby 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -44,11 +44,10 @@ Then create a initializer called `collecta.rb` and specify your Collecta API key
44
44
 
45
45
  ### Plain Ruby
46
46
 
47
- Supply your API to the Collecta class:
47
+ Supply your API key to the Collecta class:
48
48
 
49
49
  Collecta.api_key = "APIKEY"
50
50
 
51
-
52
51
  ## Usage
53
52
 
54
53
  Search for iPhone:
data/Rakefile CHANGED
@@ -6,8 +6,8 @@ begin
6
6
  require 'jeweler'
7
7
  Jeweler::Tasks.new do |gemspec|
8
8
  gemspec.name = "collecta_ruby"
9
- gemspec.summary = "Ruby library to query the Collecta.com API."
10
- gemspec.description = "A quick and rough Ruby/Rails library to query info from the Collecta API."
9
+ gemspec.summary = "NOTE: This gem has been renamed to \"collecta\"."
10
+ gemspec.description = "NOTE: This gem has been renamed to \"collecta\"."
11
11
  gemspec.email = "contact@jimeh.me"
12
12
  gemspec.homepage = "http://github.com/jimeh/collecta_ruby"
13
13
  gemspec.authors = ["Jim Myhrberg"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{collecta_ruby}
8
- s.version = "0.1.2"
8
+ s.version = "0.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jim Myhrberg"]
12
- s.date = %q{2009-10-13}
13
- s.description = %q{A quick and rough Ruby/Rails library to query info from the Collecta API.}
12
+ s.date = %q{2009-10-14}
13
+ s.description = %q{NOTE: This gem has been renamed to "collecta".}
14
14
  s.email = %q{contact@jimeh.me}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
37
37
  s.rdoc_options = ["--charset=UTF-8"]
38
38
  s.require_paths = ["lib"]
39
39
  s.rubygems_version = %q{1.3.5}
40
- s.summary = %q{Ruby library to query the Collecta.com API.}
40
+ s.summary = %q{NOTE: This gem has been renamed to "collecta".}
41
41
  s.test_files = [
42
42
  "test/collecta_ruby_test.rb",
43
43
  "test/test_helper.rb"
@@ -5,6 +5,16 @@ require "cgi"
5
5
  require "json"
6
6
  require "xml"
7
7
 
8
+ puts <<-hd
9
+ WARNING: The collecta_ruby gem has been renamed to collecta.
10
+
11
+ Please uninstall collecta_ruby and install collecta with the
12
+ following commands:
13
+
14
+ sudo gem uninstall collecta_ruby
15
+ sudo gem install collecta
16
+
17
+ hd
8
18
 
9
19
  class Collecta
10
20
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: collecta_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Myhrberg
@@ -9,11 +9,11 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-13 00:00:00 +03:00
12
+ date: 2009-10-14 00:00:00 +03:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: A quick and rough Ruby/Rails library to query info from the Collecta API.
16
+ description: "NOTE: This gem has been renamed to \"collecta\"."
17
17
  email: contact@jimeh.me
18
18
  executables: []
19
19
 
@@ -65,7 +65,7 @@ rubyforge_project:
65
65
  rubygems_version: 1.3.5
66
66
  signing_key:
67
67
  specification_version: 3
68
- summary: Ruby library to query the Collecta.com API.
68
+ summary: "NOTE: This gem has been renamed to \"collecta\"."
69
69
  test_files:
70
70
  - test/collecta_ruby_test.rb
71
71
  - test/test_helper.rb