littlebird_api_client 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. checksums.yaml +8 -8
  2. data/{little_bird.rb → lib/littlebird_api_client.rb} +0 -0
  3. data/lib/{client.rb → littlebird_api_client/client.rb} +1 -1
  4. data/lib/{errors → littlebird_api_client/errors}/authorization.rb +0 -0
  5. data/lib/{errors → littlebird_api_client/errors}/internal.rb +0 -0
  6. data/lib/{errors → littlebird_api_client/errors}/parameter.rb +0 -0
  7. data/lib/{errors → littlebird_api_client/errors}/rate_limit.rb +0 -0
  8. data/lib/{little_bird_errors.rb → littlebird_api_client/little_bird_errors.rb} +0 -0
  9. data/lib/{request.rb → littlebird_api_client/request.rb} +0 -0
  10. data/lib/{response.rb → littlebird_api_client/response.rb} +0 -0
  11. data/lib/{response_type.rb → littlebird_api_client/response_type.rb} +0 -0
  12. data/lib/{response_types → littlebird_api_client/response_types}/api_structure.rb +0 -0
  13. data/lib/{response_types → littlebird_api_client/response_types}/community.rb +0 -0
  14. data/lib/{response_types → littlebird_api_client/response_types}/compare_result.rb +0 -0
  15. data/lib/{response_types → littlebird_api_client/response_types}/discover_url.rb +0 -0
  16. data/lib/{response_types → littlebird_api_client/response_types}/gexf.rb +0 -0
  17. data/lib/{response_types → littlebird_api_client/response_types}/graph.rb +0 -0
  18. data/lib/{response_types → littlebird_api_client/response_types}/graph_attribute.rb +0 -0
  19. data/lib/{response_types → littlebird_api_client/response_types}/screen_name_resolution.rb +0 -0
  20. data/lib/{response_types → littlebird_api_client/response_types}/topic.rb +0 -0
  21. data/lib/{response_types → littlebird_api_client/response_types}/tweet.rb +0 -0
  22. data/lib/{response_types → littlebird_api_client/response_types}/user.rb +0 -0
  23. data/lib/{response_types → littlebird_api_client/response_types}/user_metric.rb +0 -0
  24. data/littlebird_api_client.gemspec +4 -3
  25. metadata +23 -25
  26. data/lib/api/client.rb +0 -7
  27. data/lib/api/client/version.rb +0 -5
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- N2U4M2JmYjVkNjI0NTFkNWE4MzRhYTFhMWViM2U4ZTVhNDBmMmExMg==
4
+ MTdmYjEyMjFmMTUxNjVjZDI2MTAyZmY2ZWQ0NDMyODkxYzdmOGQ1Yg==
5
5
  data.tar.gz: !binary |-
6
- ZDFhYjJkMzUyNGNiNDZhOTUyMjNlYjQ3ODhmNzUwZmE1ZGM4ZmMyYQ==
6
+ MzQzNGMxYzBhMjViYTYxMDU3MzcxODA5MGFmZDNhMTFlOWM1MzQwOQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- Yjg5YjNmNzcyZWM2MTA1MzUxMmNhNTRjNjYyM2RhNWVhNWMzN2M3MjUyMDRm
10
- ZjhiMzY5ZGU1NWFhZmMxY2MwMzc4ZDQ5YTI3MGJiNjUzZjc5N2Q3YmVkNjNj
11
- Mjg2NzJjODU1OTIzODJlMGUyZmFhZGE5M2IwZGIzNjNiYTAxYTM=
9
+ OGQxNWViMWEyMmNiODAyN2QyMzY2OGI1OGMyNzMwNzIwNjA5OTQwYzczNmNh
10
+ MzY0MGI4YmM2ZWU5N2M0YjNmYWZmNWE1ZDJmMzA2NTQxOGUyNzM5ZTRiZjRh
11
+ YzBmODg4NzRlZWFjNjFjNzJhMTM2OWMyZGJkZDk1OGE5M2I3OTY=
12
12
  data.tar.gz: !binary |-
13
- NWMyYmUxZDcyZGQ1NzdiZDlmMmIxYzg1YTgzNmUwYTVjMjg5OTJhZDJkMjVi
14
- ZTM4YTljYWQwNTQ5NTdiNzk2YTA3YjIzM2JlMmY3NDZhYTU4NjFkODkxMjdk
15
- YTdkZWY5NWRlNmY0ZmNlMDUwZDJhYzY5ZTk5YjMwM2ZlM2M3YmI=
13
+ YzQzNjdlMzcxMWFjMjM2OGIwODQ3NDAyZjMwMTI2OWRkYTU5ODgxNzAwNjBl
14
+ YzgwMzA5YjAzMjE5MTA2YTIyZTk4MjRhMjAzMWNmNzhhNjgxM2VkOTg2Y2Fj
15
+ ZTcwODJmMDQ0ZTcyMDlhYjQ1ZjdjMTA3MjgyMWY4MjU2YjM5YTU=
File without changes
@@ -2,7 +2,7 @@ module LittleBird
2
2
  module Request;end
3
3
  module Response;end
4
4
  class Client
5
- VERSION = "0.0.3"
5
+ VERSION = "0.0.4"
6
6
  include Request
7
7
  include Response
8
8
  def initialize(api_key, version=1, base_url="api.getlittlebird.com")
@@ -6,9 +6,10 @@ require 'rest_client'
6
6
  require 'json'
7
7
  require 'time'
8
8
  require 'pry'
9
- # binding.pry
10
- Dir[File.dirname(__FILE__)+ "/lib/*.rb"].each {|file| require file }
11
- Dir[File.dirname(__FILE__)+ "/lib/**/*.rb"].each {|file| require file }
9
+ binding.pry
10
+
11
+ Dir[File.dirname(__FILE__)+ "/lib/littlebird_api_client/*.rb"].each {|file| require file }
12
+ Dir[File.dirname(__FILE__)+ "/lib/littlebird_api_client/**/*.rb"].each {|file| require file }
12
13
  Gem::Specification.new do |spec|
13
14
  spec.name = "littlebird_api_client"
14
15
  spec.version = LittleBird::Client::VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: littlebird_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Devin Gaffney
@@ -51,30 +51,28 @@ files:
51
51
  - LICENSE.txt
52
52
  - README.md
53
53
  - Rakefile
54
- - lib/api/client.rb
55
- - lib/api/client/version.rb
56
- - lib/client.rb
57
- - lib/errors/authorization.rb
58
- - lib/errors/internal.rb
59
- - lib/errors/parameter.rb
60
- - lib/errors/rate_limit.rb
61
- - lib/little_bird_errors.rb
62
- - lib/request.rb
63
- - lib/response.rb
64
- - lib/response_type.rb
65
- - lib/response_types/api_structure.rb
66
- - lib/response_types/community.rb
67
- - lib/response_types/compare_result.rb
68
- - lib/response_types/discover_url.rb
69
- - lib/response_types/gexf.rb
70
- - lib/response_types/graph.rb
71
- - lib/response_types/graph_attribute.rb
72
- - lib/response_types/screen_name_resolution.rb
73
- - lib/response_types/topic.rb
74
- - lib/response_types/tweet.rb
75
- - lib/response_types/user.rb
76
- - lib/response_types/user_metric.rb
77
- - little_bird.rb
54
+ - lib/littlebird_api_client.rb
55
+ - lib/littlebird_api_client/client.rb
56
+ - lib/littlebird_api_client/errors/authorization.rb
57
+ - lib/littlebird_api_client/errors/internal.rb
58
+ - lib/littlebird_api_client/errors/parameter.rb
59
+ - lib/littlebird_api_client/errors/rate_limit.rb
60
+ - lib/littlebird_api_client/little_bird_errors.rb
61
+ - lib/littlebird_api_client/request.rb
62
+ - lib/littlebird_api_client/response.rb
63
+ - lib/littlebird_api_client/response_type.rb
64
+ - lib/littlebird_api_client/response_types/api_structure.rb
65
+ - lib/littlebird_api_client/response_types/community.rb
66
+ - lib/littlebird_api_client/response_types/compare_result.rb
67
+ - lib/littlebird_api_client/response_types/discover_url.rb
68
+ - lib/littlebird_api_client/response_types/gexf.rb
69
+ - lib/littlebird_api_client/response_types/graph.rb
70
+ - lib/littlebird_api_client/response_types/graph_attribute.rb
71
+ - lib/littlebird_api_client/response_types/screen_name_resolution.rb
72
+ - lib/littlebird_api_client/response_types/topic.rb
73
+ - lib/littlebird_api_client/response_types/tweet.rb
74
+ - lib/littlebird_api_client/response_types/user.rb
75
+ - lib/littlebird_api_client/response_types/user_metric.rb
78
76
  - littlebird_api_client.gemspec
79
77
  homepage: ''
80
78
  licenses:
data/lib/api/client.rb DELETED
@@ -1,7 +0,0 @@
1
- require "api/client/version"
2
-
3
- module Api
4
- module Client
5
- # Your code goes here...
6
- end
7
- end
@@ -1,5 +0,0 @@
1
- module Api
2
- module Client
3
- VERSION = "0.0.1"
4
- end
5
- end