trunkly 0.1.0

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 (7) hide show
  1. data/CHANGELOG +2 -0
  2. data/LICENSE +202 -0
  3. data/README +107 -0
  4. data/lib/trunkly.rb +143 -0
  5. data/test/helper.rb +9 -0
  6. data/test/test_trunkly.rb +92 -0
  7. metadata +89 -0
data/CHANGELOG ADDED
@@ -0,0 +1,2 @@
1
+ v0.1.0 initial version
2
+
data/LICENSE ADDED
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
data/README ADDED
@@ -0,0 +1,107 @@
1
+ This Trunkly ruby client library has been developed by Filippo Diotalevi (filippo@diotalevi.com)
2
+ and it's distributed under the terms of the Apache License v.2.0
3
+ ------------------------------------------------------------------------------------------------------
4
+
5
+ This project provides a Ruby client to connect to the Trunkly API.
6
+
7
+ You don't need to be a Trunkly registered user to use the API, but without your API KEY you won't be able to post new links.
8
+
9
+ To register to Trunk.ly go to http://trunk.ly/ and click on Sign Up.
10
+ Once you are signed up go on your profile page and copy the API KEY somewhere; you will use it later.
11
+
12
+
13
+ HOW TO USE THE RUBY CLIENT
14
+
15
+ The Ruby client is contained in the lib/trunkly.rb file. Remember to load this file in your ruby script before starting!
16
+
17
+ 1) Retrieve the latest links shared by a user
18
+
19
+ t = Trunkly::Trunkly.new
20
+ links = t.links(:user => 'fdiotalevi') #this retrieves my 100 latest links
21
+
22
+ Alternatively, you can use the dynamic method links_by_<user-name-here>, f.i.
23
+
24
+ links = t.links_by_fdiotalevi #this retrieves my 100 latest links
25
+
26
+ The method 'links' returns an array of Trunkly::Link. The meaningful instance variables of Link are
27
+ - url
28
+ - title
29
+ - tags #comma separated list of tags
30
+ - note #description of the link
31
+ - dt_string #date when the link was shared
32
+
33
+
34
+ 2) Retrieve your latest links
35
+
36
+ You can retrieve your links in two ways:
37
+ a) using the method explained in section 1 and your username
38
+
39
+ b) using your API Key like in the example
40
+
41
+ t = Trunkly::Trunkly.new('my_api_key_goes_here')
42
+ links = t.links #this retrieves my 100 latest links
43
+
44
+
45
+ 3) Advanced search
46
+
47
+ Some examples of advanced search
48
+
49
+ t = Trunkly::Trunkly.new
50
+ links = t.links(:user => 'fdiotalevi', :tags => 'ruby') #retrieves links shared with tag ruby
51
+ links = t.links(:user => 'fdiotalevi', :tags => 'ruby,rails') #retrieves links shared with tag ruby and rails
52
+ links = t.links(:since_time => '2011-01-01 00:00:00') #retrieves links shared after 01/01/2011. Date format is '%Y-%m-%d %H:%M:%S'
53
+
54
+ You can mix and match all the search parameters in your query
55
+
56
+ If you use the dynamic method, you can of course omit the user, f.i.
57
+
58
+ links = t.links_by_fdiotalevi(:tags => 'ruby') #retrieves links shared with tag ruby
59
+
60
+
61
+ 4) Pagination
62
+
63
+ By default Trunkly returns the 100 latest links. You can specify exactly how many results you want and paginate them:
64
+
65
+ t = Trunkly::Trunkly.new
66
+ t.links(:count => 10) #returns the 10 latest links
67
+ t.links(:count => 10, :page => 1) #returns the 2nd page of results (so results from 11..20)
68
+
69
+ An even shorter method is, after the first invocation, use the 'next_page' and 'prev_page' method
70
+
71
+ t = Trunkly::Trunkly.new
72
+ t.links(:count => 10) #returns the 10 latest links
73
+ t.next_page #returns results from 11..20
74
+ t.prev_page #returns restult 1..10
75
+
76
+
77
+ 5) Save a link
78
+
79
+ Saving a link is very simple
80
+
81
+ t = Trunkly::Trunkly.new('my_api_key_goes_here') #you need an API key to save a link
82
+ t.save do |it|
83
+ it.url = 'http://github.com'
84
+ it.title = 'GitHub'
85
+ it.tags = ['git','vcs']
86
+ it.note = 'GitHub website'
87
+ end
88
+
89
+ Note that 'tags' and 'note' are optional parameters.
90
+
91
+ Alternative way (longer and dumber):
92
+
93
+ t = Trunkly::Trunkly.new('my_api_key_goes_here') #you need an API key to save a link
94
+ it = Trunkly::Link.new
95
+ it.url = 'http://github.com'
96
+ it.title = 'GitHub'
97
+ it.tags = ['git','vcs']
98
+ it.note = 'GitHub website'
99
+ t.save it
100
+
101
+ Alternative alternative way:
102
+
103
+ t = Trunkly::Trunkly.new('my_api_key_goes_here') #you need an API key to save a link
104
+ it = Trunkly::Link.new(
105
+ {:url => 'http://github.com', :title=> 'GitHub', :tags => ['git','vcs'], :note => 'GitHub website'}
106
+ )
107
+ t.save it
data/lib/trunkly.rb ADDED
@@ -0,0 +1,143 @@
1
+ require 'rubygems'
2
+ require 'json'
3
+ require 'net/http'
4
+ require 'uri'
5
+
6
+ module Trunkly
7
+
8
+ class Trunkly
9
+
10
+ attr_accessor :api_key
11
+
12
+ LINKS = "http://trunk.ly/api/v1/links/"
13
+ LINK = "http://trunk.ly/api/v1/link/"
14
+
15
+ def initialize(key = nil)
16
+ @api_key = key
17
+ @last_used_params = {}
18
+ @next_page, @prev_page = 0, 0
19
+ end
20
+
21
+ def links(params = {})
22
+ @last_used_params = params
23
+ response = Net::HTTP.get_response(get_links(params))
24
+ case response
25
+ when Net::HTTPUnauthorized then
26
+ raise AuthorizationError, "Unauthorized: no or wrong api_key"
27
+ when Net::HTTPSuccess
28
+ links = []
29
+ result = JSON.parse(response.body)
30
+ @prev_page, @next_page = result['prev_page'] || 0, result['next_page'] || 0
31
+ result['links'].each do |it|
32
+ links << Link.new(it)
33
+ end
34
+ links
35
+ else
36
+ raise ApiError, "Exception trying to get links: "+response.body.to_s
37
+ end
38
+ end
39
+
40
+ def save(link = Link.new)
41
+ raise ArgumentError, "save method parameter must be a Trunkly::List" unless link.class == Link
42
+ yield link if block_given?
43
+ post_params = link.to_hash
44
+ post_params[:api_key] = @api_key
45
+ response = Net::HTTP.post_form(URI.parse(LINK), post_params)
46
+ case response
47
+ when Net::HTTPSuccess
48
+ response
49
+ else
50
+ raise ApiError, "Exception trying to save a link: "+response.body.to_s
51
+ end
52
+ end
53
+
54
+ def next_page
55
+ @last_used_params[:page] = @next_page
56
+ links @last_used_params
57
+ end
58
+
59
+ def prev_page
60
+ @last_used_params[:page] = @prev_page
61
+ links @last_used_params
62
+ end
63
+ alias :previous_page :prev_page
64
+
65
+ def method_missing(method_id, *args)
66
+ if method_id.to_s =~/^links_by_(.*)/
67
+ args << {} if args.size == 0
68
+ args[0][:user] = $1
69
+ links args[0]
70
+ else
71
+ super
72
+ end
73
+ end
74
+
75
+
76
+ private
77
+
78
+ def get_links(params = {})
79
+ userpart = params[:user] ? "#{params[:user]}/" : "";
80
+ URI.parse(URI.escape(LINKS + userpart + query_string(params)))
81
+ end
82
+
83
+ def query_string(params = {})
84
+ query_string = ""
85
+ params.each_pair do |k, v|
86
+ query_string += "&#{k.to_s}=#{v}" unless k == :user
87
+ end
88
+ query_string += "&api_key=#{@api_key}" if @api_key #adds api key if available
89
+ query_string[0] = '?' if query_string[0] == '&'
90
+ query_string
91
+ end
92
+
93
+ end
94
+
95
+
96
+
97
+ class Link
98
+
99
+ attr_reader :lid, :dt_string, :tags
100
+ attr_accessor :url, :title, :note
101
+
102
+ def initialize(params = {})
103
+ %w[url lid title dt_string note url tags].each { |it| set_param(params, it) }
104
+ @tags = [@tags] if @tags.class == String
105
+ @tags = [] unless @tags
106
+ end
107
+
108
+ def tags=(some_tags)
109
+ if some_tags.class == String
110
+ @tags = some_tags.split(',')
111
+ else
112
+ @tags = some_tags
113
+ end
114
+ end
115
+
116
+ def to_s
117
+ "title: #{@title}\nurl: #{@url}\ntags: #{@tags.join(',')}\n\n"
118
+ end
119
+
120
+ def to_hash
121
+ params = {}
122
+ %w[url lid title dt_string note url].each { |it| hash_param(params, it) }
123
+ params['tags'] = @tags.join(',') if @tags
124
+ params
125
+ end
126
+
127
+ def hash_param(params, name)
128
+ params[name] = instance_variable_get("@#{name}") if instance_variable_get("@#{name}")
129
+ end
130
+
131
+ def set_param(params, name)
132
+ instance_variable_set("@#{name}", params[name])
133
+ end
134
+
135
+ end
136
+
137
+
138
+ class AuthorizationError < StandardError
139
+ end
140
+
141
+ class ApiError < StandardError
142
+ end
143
+ end
data/test/helper.rb ADDED
@@ -0,0 +1,9 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+
4
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
5
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
6
+ require 'trunkly'
7
+
8
+ class Test::Unit::TestCase
9
+ end
@@ -0,0 +1,92 @@
1
+ require File.join(File.dirname(__FILE__), "helper.rb")
2
+
3
+ class TestTrunkly < Test::Unit::TestCase
4
+
5
+ def test_can_instantiate
6
+ assert_not_nil Trunkly::Trunkly.new
7
+ end
8
+
9
+ def test_api_key_nil_if_not_initialized
10
+ assert_nil Trunkly::Trunkly.new.api_key
11
+ end
12
+
13
+ def test_api_key_set_if_initialized
14
+ assert_equal '12345', Trunkly::Trunkly.new('12345').api_key
15
+ end
16
+
17
+ # def test_get_public_links
18
+ # timslinks = Trunkly::Trunkly.new.links(:user => 'timbull')
19
+ # assert timslinks.size > 50
20
+ # end
21
+
22
+ def test_query_string
23
+ t = Trunkly::Trunkly.new
24
+ assert_equal "", t.send("query_string", {})
25
+
26
+ params = {}
27
+ params[:user] = 'a'
28
+ assert_equal "", t.send("query_string", params)
29
+
30
+ params = {}
31
+ params[:one] = 1
32
+ assert_equal "?one=1", t.send("query_string", params)
33
+
34
+ params = {}
35
+ params[:one] = 1
36
+ params[:two] = 2
37
+ assert_equal "?one=1&two=2", t.send("query_string", params)
38
+
39
+ t.api_key = '12345'
40
+ params = {}
41
+ params[:one] = 1
42
+ assert_equal "?one=1&api_key=12345", t.send("query_string", params)
43
+ end
44
+
45
+ def test_link_empty_initializer
46
+ l = Trunkly::Link.new
47
+ assert_nil l.url
48
+ assert_nil l.lid
49
+ assert_equal [], l.tags
50
+ assert_nil l.note
51
+ assert_nil l.dt_string
52
+ assert_nil l.title
53
+ end
54
+
55
+ def test_link_initializer
56
+ l = Trunkly::Link.new
57
+ l.title = 'title'
58
+ l.url = 'url'
59
+ l.note = 'note'
60
+ assert_equal 'url', l.url
61
+ assert_equal 'note', l.note
62
+ assert_equal 'title', l.title
63
+ end
64
+
65
+ def test_link_tags_handling
66
+ l = Trunkly::Link.new
67
+
68
+ l.tags = "one"
69
+ assert_equal ['one'], l.tags
70
+
71
+ l.tags = "one,two"
72
+ assert_equal ['one','two'], l.tags
73
+
74
+ l.tags = [1,2,3]
75
+ assert_equal [1,2,3], l.tags
76
+ end
77
+
78
+
79
+ def test_link_to_hash
80
+ l = Trunkly::Link.new
81
+ l.title = 'title'
82
+ l.url = 'url'
83
+ l.note = 'note'
84
+ h = l.to_hash
85
+ assert_equal 'title', h['title']
86
+ assert_equal 'url', h['url']
87
+ assert_equal 'note', h['note']
88
+ assert_nil h['lid']
89
+ end
90
+
91
+
92
+ end
metadata ADDED
@@ -0,0 +1,89 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: trunkly
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 0
10
+ version: 0.1.0
11
+ platform: ruby
12
+ authors:
13
+ - Filippo Diotalevi
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-01-12 00:00:00 +01:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: json
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 23
30
+ segments:
31
+ - 1
32
+ - 0
33
+ - 0
34
+ version: 1.0.0
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ description: A Ruby Client for Trunk.ly API
38
+ email:
39
+ - filippo.diotalevi@gmail.com
40
+ executables: []
41
+
42
+ extensions: []
43
+
44
+ extra_rdoc_files: []
45
+
46
+ files:
47
+ - CHANGELOG
48
+ - LICENSE
49
+ - README
50
+ - lib/trunkly.rb
51
+ - test/helper.rb
52
+ - test/test_trunkly.rb
53
+ has_rdoc: true
54
+ homepage: https://github.com/fdiotalevi/trunkly-ruby
55
+ licenses: []
56
+
57
+ post_install_message:
58
+ rdoc_options: []
59
+
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ hash: 3
68
+ segments:
69
+ - 0
70
+ version: "0"
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ hash: 3
77
+ segments:
78
+ - 0
79
+ version: "0"
80
+ requirements: []
81
+
82
+ rubyforge_project:
83
+ rubygems_version: 1.4.2
84
+ signing_key:
85
+ specification_version: 3
86
+ summary: Ruby Client for Trunk.ly API
87
+ test_files:
88
+ - test/helper.rb
89
+ - test/test_trunkly.rb