zapnap-tumblr 0.0.9 → 0.0.10

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 (8) hide show
  1. data/Rakefile +1 -0
  2. data/VERSION.yml +4 -0
  3. metadata +15 -9
  4. data/.document +0 -5
  5. data/.gitignore +0 -7
  6. data/History +0 -9
  7. data/VERSION +0 -1
  8. data/tumblr.gemspec +0 -54
data/Rakefile CHANGED
@@ -10,6 +10,7 @@ begin
10
10
  gem.homepage = "http://github.com/jeffkreeftmeijer/tumblr"
11
11
  gem.authors = ["Jeff Kreeftmeijer"]
12
12
  gem.add_dependency('httparty')
13
+ gem.add_dependency('activesupport')
13
14
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
14
15
  end
15
16
 
@@ -0,0 +1,4 @@
1
+ ---
2
+ :minor: 0
3
+ :patch: 10
4
+ :major: 0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zapnap-tumblr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Kreeftmeijer
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-15 00:00:00 -07:00
12
+ date: 2009-07-11 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -22,6 +22,16 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: "0"
24
24
  version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: activesupport
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ version:
25
35
  description:
26
36
  email: jeff@kreeftmeijer.nl
27
37
  executables: []
@@ -32,21 +42,17 @@ extra_rdoc_files:
32
42
  - LICENSE
33
43
  - README.rdoc
34
44
  files:
35
- - .document
36
- - .gitignore
37
- - History
38
45
  - LICENSE
39
46
  - README.rdoc
40
47
  - Rakefile
41
- - VERSION
48
+ - VERSION.yml
42
49
  - lib/tumblr.rb
43
50
  - lib/tumblr/post.rb
44
51
  - lib/tumblr/request.rb
45
52
  - lib/tumblr/user.rb
46
53
  - test/test_helper.rb
47
54
  - test/tumblr_test.rb
48
- - tumblr.gemspec
49
- has_rdoc: true
55
+ has_rdoc: false
50
56
  homepage: http://github.com/jeffkreeftmeijer/tumblr
51
57
  post_install_message:
52
58
  rdoc_options:
@@ -70,7 +76,7 @@ requirements: []
70
76
  rubyforge_project:
71
77
  rubygems_version: 1.2.0
72
78
  signing_key:
73
- specification_version: 2
79
+ specification_version: 3
74
80
  summary: Tumblr API wrapper
75
81
  test_files:
76
82
  - test/test_helper.rb
data/.document DELETED
@@ -1,5 +0,0 @@
1
- README.rdoc
2
- lib/**/*.rb
3
- bin/*
4
- features/**/*.feature
5
- LICENSE
data/.gitignore DELETED
@@ -1,7 +0,0 @@
1
- *.sw?
2
- .DS_Store
3
- coverage
4
- rdoc
5
- pkg
6
- website
7
- tumblr_example
data/History DELETED
@@ -1,9 +0,0 @@
1
- 0.0.9 - Removed the version number from the HTTParty dependency
2
- 0.0.8 - The example app slipped in. Removed it.
3
- 0.0.7 - Somethig went wrong, pushing again...
4
- 0.0.6 - Fixed a bug in Post::find_from_id (the post-id wasn't being passed to the api)
5
- 0.0.5 - Finished README.rdoc!
6
- 0.0.4 - Updated README.rdoc, removed the docs folder (http://rdoc.info/projects/jeffkreeftmeijer/tumblr)
7
- 0.0.3 - Forgot to update the gemspec. Here it goes! :)
8
- 0.0.2 - Added the docs
9
- 0.0.1 - Initial Release
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.0.9
@@ -1,54 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{tumblr}
5
- s.version = "0.0.9"
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Jeff Kreeftmeijer"]
9
- s.date = %q{2009-05-15}
10
- s.email = %q{jeff@kreeftmeijer.nl}
11
- s.extra_rdoc_files = [
12
- "LICENSE",
13
- "README.rdoc"
14
- ]
15
- s.files = [
16
- ".document",
17
- ".gitignore",
18
- "History",
19
- "LICENSE",
20
- "README.rdoc",
21
- "Rakefile",
22
- "VERSION",
23
- "lib/tumblr.rb",
24
- "lib/tumblr/post.rb",
25
- "lib/tumblr/request.rb",
26
- "lib/tumblr/user.rb",
27
- "test/test_helper.rb",
28
- "test/tumblr_test.rb",
29
- "tumblr.gemspec"
30
- ]
31
- s.has_rdoc = true
32
- s.homepage = %q{http://github.com/jeffkreeftmeijer/tumblr}
33
- s.rdoc_options = ["--charset=UTF-8"]
34
- s.require_paths = ["lib"]
35
- s.rubygems_version = %q{1.3.1}
36
- s.summary = %q{Tumblr API wrapper}
37
- s.test_files = [
38
- "test/test_helper.rb",
39
- "test/tumblr_test.rb"
40
- ]
41
-
42
- if s.respond_to? :specification_version then
43
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
44
- s.specification_version = 2
45
-
46
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
47
- s.add_runtime_dependency(%q<httparty>, [">= 0"])
48
- else
49
- s.add_dependency(%q<httparty>, [">= 0"])
50
- end
51
- else
52
- s.add_dependency(%q<httparty>, [">= 0"])
53
- end
54
- end