infomeme_client 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/.document +5 -0
  2. data/Rakefile +2 -1
  3. data/VERSION +1 -1
  4. data/infomeme_client.gemspec +114 -0
  5. metadata +102 -44
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
data/Rakefile CHANGED
@@ -1,3 +1,4 @@
1
+ require 'psych'
1
2
  require 'rubygems'
2
3
  require 'rake'
3
4
 
@@ -6,7 +7,7 @@ begin
6
7
  Jeweler::Tasks.new do |gem|
7
8
  gem.name = "infomeme_client"
8
9
  gem.summary = "A RubyGem for implementing both Infomeme client and meme applications."
9
- gem.description = gem.summary
10
+ gem.description = gem.summary + "\n More coming soon..."
10
11
  gem.email = "infomeme@infomeme.com"
11
12
  gem.homepage = "https://api.infomeme.com"
12
13
  gem.authors = ["Infomeme Ltd."]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.4
1
+ 0.2.5
@@ -0,0 +1,114 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{infomeme_client}
8
+ s.version = "0.2.5"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Infomeme Ltd."]
12
+ s.date = %q{2011-03-24}
13
+ s.description = %q{A RubyGem for implementing both Infomeme client and meme applications.
14
+ More coming soon...}
15
+ s.email = %q{infomeme@infomeme.com}
16
+ s.extra_rdoc_files = [
17
+ "LICENSE",
18
+ "README.rdoc"
19
+ ]
20
+ s.files = [
21
+ ".document",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "infomeme_client.gemspec",
27
+ "lib/infomeme_client.rb",
28
+ "lib/infomeme_client/base.rb",
29
+ "lib/infomeme_client/communication.rb",
30
+ "lib/infomeme_client/entity_hash.rb",
31
+ "lib/infomeme_client/entity_hash/comment.rb",
32
+ "lib/infomeme_client/entity_hash/invoice.rb",
33
+ "lib/infomeme_client/entity_hash/meme.rb",
34
+ "lib/infomeme_client/entity_hash/meme_type.rb",
35
+ "lib/infomeme_client/entity_hash/transaction.rb",
36
+ "lib/infomeme_client/entity_hash/user.rb",
37
+ "lib/infomeme_client/errors.rb",
38
+ "lib/infomeme_client/functions.rb",
39
+ "lib/infomeme_client/functions/meme.rb",
40
+ "lib/infomeme_client/functions/user.rb",
41
+ "lib/infomeme_client/functions/user_meme.rb",
42
+ "lib/infomeme_client/functions/user_order.rb",
43
+ "lib/infomeme_client/meme_application.rb",
44
+ "lib/infomeme_client/permissions.rb",
45
+ "lib/infomeme_client/response.rb",
46
+ "test/fixtures/memes/comments.json",
47
+ "test/fixtures/memes/meme.json",
48
+ "test/fixtures/memes/memes.json",
49
+ "test/fixtures/memes/types.json",
50
+ "test/fixtures/oauth/access_token.json",
51
+ "test/fixtures/oauth/authorize.json",
52
+ "test/fixtures/oauth/permissions.json",
53
+ "test/fixtures/oauth/request_token.json",
54
+ "test/fixtures/oauth/verify_access.json",
55
+ "test/fixtures/response/error.json",
56
+ "test/fixtures/response/ok.json",
57
+ "test/fixtures/response/test.json",
58
+ "test/fixtures/response/test_extract.json",
59
+ "test/fixtures/users/invoice.json",
60
+ "test/fixtures/users/invoices.json",
61
+ "test/fixtures/users/memes.json",
62
+ "test/fixtures/users/order_paypal.json",
63
+ "test/fixtures/users/permissions.json",
64
+ "test/fixtures/users/transactions.json",
65
+ "test/fixtures/users/user.json",
66
+ "test/fixtures/users/user_public.json",
67
+ "test/helper.rb",
68
+ "test/test_authorization.rb",
69
+ "test/test_communication.rb",
70
+ "test/test_entity_hash.rb",
71
+ "test/test_meme_functions.rb",
72
+ "test/test_permissions.rb",
73
+ "test/test_user_functions.rb",
74
+ "test/test_user_meme_functions.rb",
75
+ "test/test_user_order_functions.rb"
76
+ ]
77
+ s.homepage = %q{https://api.infomeme.com}
78
+ s.require_paths = ["lib"]
79
+ s.rubygems_version = %q{1.5.3}
80
+ s.summary = %q{A RubyGem for implementing both Infomeme client and meme applications.}
81
+ s.test_files = [
82
+ "test/helper.rb",
83
+ "test/test_authorization.rb",
84
+ "test/test_communication.rb",
85
+ "test/test_entity_hash.rb",
86
+ "test/test_meme_functions.rb",
87
+ "test/test_permissions.rb",
88
+ "test/test_user_functions.rb",
89
+ "test/test_user_meme_functions.rb",
90
+ "test/test_user_order_functions.rb"
91
+ ]
92
+
93
+ if s.respond_to? :specification_version then
94
+ s.specification_version = 3
95
+
96
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
97
+ s.add_runtime_dependency(%q<oauth>, [">= 0"])
98
+ s.add_runtime_dependency(%q<json>, [">= 0"])
99
+ s.add_runtime_dependency(%q<multipart-post>, [">= 0"])
100
+ s.add_runtime_dependency(%q<mime-types>, [">= 0"])
101
+ else
102
+ s.add_dependency(%q<oauth>, [">= 0"])
103
+ s.add_dependency(%q<json>, [">= 0"])
104
+ s.add_dependency(%q<multipart-post>, [">= 0"])
105
+ s.add_dependency(%q<mime-types>, [">= 0"])
106
+ end
107
+ else
108
+ s.add_dependency(%q<oauth>, [">= 0"])
109
+ s.add_dependency(%q<json>, [">= 0"])
110
+ s.add_dependency(%q<multipart-post>, [">= 0"])
111
+ s.add_dependency(%q<mime-types>, [">= 0"])
112
+ end
113
+ end
114
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: infomeme_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,68 +11,117 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2011-03-24 00:00:00.000000000 +01:00
13
13
  default_executable:
14
- dependencies: []
15
- description: Coming soon...
16
- email: gem_info@infomeme.com
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: oauth
17
+ requirement: &19670040 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *19670040
26
+ - !ruby/object:Gem::Dependency
27
+ name: json
28
+ requirement: &19669220 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: *19669220
37
+ - !ruby/object:Gem::Dependency
38
+ name: multipart-post
39
+ requirement: &19664720 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ type: :runtime
46
+ prerelease: false
47
+ version_requirements: *19664720
48
+ - !ruby/object:Gem::Dependency
49
+ name: mime-types
50
+ requirement: &19663200 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: *19663200
59
+ description: ! "A RubyGem for implementing both Infomeme client and meme applications.\n
60
+ More coming soon..."
61
+ email: infomeme@infomeme.com
17
62
  executables: []
18
63
  extensions: []
19
- extra_rdoc_files: []
64
+ extra_rdoc_files:
65
+ - LICENSE
66
+ - README.rdoc
20
67
  files:
21
- - lib/infomeme_client/errors.rb
22
- - lib/infomeme_client/entity_hash.rb
23
- - lib/infomeme_client/functions/user.rb
24
- - lib/infomeme_client/functions/user_order.rb
25
- - lib/infomeme_client/functions/meme.rb
26
- - lib/infomeme_client/functions/user_meme.rb
27
- - lib/infomeme_client/communication.rb
28
- - lib/infomeme_client/response.rb
68
+ - .document
69
+ - LICENSE
70
+ - README.rdoc
71
+ - Rakefile
72
+ - VERSION
73
+ - infomeme_client.gemspec
74
+ - lib/infomeme_client.rb
29
75
  - lib/infomeme_client/base.rb
30
- - lib/infomeme_client/functions.rb
31
- - lib/infomeme_client/permissions.rb
32
- - lib/infomeme_client/entity_hash/user.rb
33
- - lib/infomeme_client/entity_hash/meme_type.rb
76
+ - lib/infomeme_client/communication.rb
77
+ - lib/infomeme_client/entity_hash.rb
34
78
  - lib/infomeme_client/entity_hash/comment.rb
35
- - lib/infomeme_client/entity_hash/meme.rb
36
79
  - lib/infomeme_client/entity_hash/invoice.rb
80
+ - lib/infomeme_client/entity_hash/meme.rb
81
+ - lib/infomeme_client/entity_hash/meme_type.rb
37
82
  - lib/infomeme_client/entity_hash/transaction.rb
83
+ - lib/infomeme_client/entity_hash/user.rb
84
+ - lib/infomeme_client/errors.rb
85
+ - lib/infomeme_client/functions.rb
86
+ - lib/infomeme_client/functions/meme.rb
87
+ - lib/infomeme_client/functions/user.rb
88
+ - lib/infomeme_client/functions/user_meme.rb
89
+ - lib/infomeme_client/functions/user_order.rb
38
90
  - lib/infomeme_client/meme_application.rb
39
- - lib/infomeme_client.rb
40
- - test/helper.rb
41
- - test/test_user_order_functions.rb
42
- - test/test_permissions.rb
43
- - test/test_entity_hash.rb
44
- - test/test_communication.rb
91
+ - lib/infomeme_client/permissions.rb
92
+ - lib/infomeme_client/response.rb
93
+ - test/fixtures/memes/comments.json
94
+ - test/fixtures/memes/meme.json
95
+ - test/fixtures/memes/memes.json
96
+ - test/fixtures/memes/types.json
45
97
  - test/fixtures/oauth/access_token.json
46
- - test/fixtures/oauth/permissions.json
47
- - test/fixtures/oauth/verify_access.json
48
98
  - test/fixtures/oauth/authorize.json
99
+ - test/fixtures/oauth/permissions.json
49
100
  - test/fixtures/oauth/request_token.json
50
- - test/fixtures/response/test.json
101
+ - test/fixtures/oauth/verify_access.json
102
+ - test/fixtures/response/error.json
51
103
  - test/fixtures/response/ok.json
104
+ - test/fixtures/response/test.json
52
105
  - test/fixtures/response/test_extract.json
53
- - test/fixtures/response/error.json
54
- - test/fixtures/memes/meme.json
55
- - test/fixtures/memes/types.json
56
- - test/fixtures/memes/comments.json
57
- - test/fixtures/memes/memes.json
58
- - test/fixtures/users/transactions.json
106
+ - test/fixtures/users/invoice.json
59
107
  - test/fixtures/users/invoices.json
60
- - test/fixtures/users/user_public.json
61
- - test/fixtures/users/permissions.json
62
108
  - test/fixtures/users/memes.json
63
- - test/fixtures/users/user.json
64
- - test/fixtures/users/invoice.json
65
109
  - test/fixtures/users/order_paypal.json
110
+ - test/fixtures/users/permissions.json
111
+ - test/fixtures/users/transactions.json
112
+ - test/fixtures/users/user.json
113
+ - test/fixtures/users/user_public.json
114
+ - test/helper.rb
66
115
  - test/test_authorization.rb
67
- - test/test_user_functions.rb
116
+ - test/test_communication.rb
117
+ - test/test_entity_hash.rb
68
118
  - test/test_meme_functions.rb
119
+ - test/test_permissions.rb
120
+ - test/test_user_functions.rb
69
121
  - test/test_user_meme_functions.rb
70
- - Rakefile
71
- - README.rdoc
72
- - VERSION
73
- - LICENSE
122
+ - test/test_user_order_functions.rb
74
123
  has_rdoc: true
75
- homepage: https://github.com/Infomeme/infomeme_client
124
+ homepage: https://api.infomeme.com
76
125
  licenses: []
77
126
  post_install_message:
78
127
  rdoc_options: []
@@ -96,4 +145,13 @@ rubygems_version: 1.5.3
96
145
  signing_key:
97
146
  specification_version: 3
98
147
  summary: A RubyGem for implementing both Infomeme client and meme applications.
99
- test_files: []
148
+ test_files:
149
+ - test/helper.rb
150
+ - test/test_authorization.rb
151
+ - test/test_communication.rb
152
+ - test/test_entity_hash.rb
153
+ - test/test_meme_functions.rb
154
+ - test/test_permissions.rb
155
+ - test/test_user_functions.rb
156
+ - test/test_user_meme_functions.rb
157
+ - test/test_user_order_functions.rb