littlebird_api_client 0.0.2 → 0.0.3

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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NDE0ZTQzZTk1Nzk4NDY0MDhhOGZiOWI2NTliYjhmNjgwNzExNWE5Ng==
4
+ N2U4M2JmYjVkNjI0NTFkNWE4MzRhYTFhMWViM2U4ZTVhNDBmMmExMg==
5
5
  data.tar.gz: !binary |-
6
- M2FmMDVlZTljZDhiYWQ4N2IyNzIxYjNkOTVlMTNkZDA3OTZhYmIxNg==
6
+ ZDFhYjJkMzUyNGNiNDZhOTUyMjNlYjQ3ODhmNzUwZmE1ZGM4ZmMyYQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YzIwYzE5NDRjYTY0YTkyYjk5ZjZiYzMxOWE2ZTAzNWZiZGRhMjE0MGQyZjA3
10
- YjIyNmM4ZDRmNzhjNjVmMTRiYTdkYjU4NmIxNTBhMjgwNWMxZjI3YWEwMTMy
11
- MzZjNzY5ZDcwMmM1ODNlZTE5ZThhOWY3ZTg3NzU5MDRkODg4ZmE=
9
+ Yjg5YjNmNzcyZWM2MTA1MzUxMmNhNTRjNjYyM2RhNWVhNWMzN2M3MjUyMDRm
10
+ ZjhiMzY5ZGU1NWFhZmMxY2MwMzc4ZDQ5YTI3MGJiNjUzZjc5N2Q3YmVkNjNj
11
+ Mjg2NzJjODU1OTIzODJlMGUyZmFhZGE5M2IwZGIzNjNiYTAxYTM=
12
12
  data.tar.gz: !binary |-
13
- OTQ5MGMxNzZkMDY5MzhlMTQxZmFiZTc4ZWEyOTExOTk4MDZlM2RhNTc5NzNh
14
- NGZiNThkN2JiMjYxNjI1ZGFhYTQ4NjQzY2NlZmQxNDBjMTkxMWFmMjdlZDFj
15
- Y2ViZGI4MDVkODMxOWZkZmFhMDdmZGZlMzQ1ZWQ0NGE0ZTJkNGM=
13
+ NWMyYmUxZDcyZGQ1NzdiZDlmMmIxYzg1YTgzNmUwYTVjMjg5OTJhZDJkMjVi
14
+ ZTM4YTljYWQwNTQ5NTdiNzk2YTA3YjIzM2JlMmY3NDZhYTU4NjFkODkxMjdk
15
+ YTdkZWY5NWRlNmY0ZmNlMDUwZDJhYzY5ZTk5YjMwM2ZlM2M3YmI=
data/lib/client.rb CHANGED
@@ -2,7 +2,7 @@ module LittleBird
2
2
  module Request;end
3
3
  module Response;end
4
4
  class Client
5
- VERSION = "0.0.2"
5
+ VERSION = "0.0.3"
6
6
  include Request
7
7
  include Response
8
8
  def initialize(api_key, version=1, base_url="api.getlittlebird.com")
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.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Devin Gaffney
@@ -75,7 +75,6 @@ files:
75
75
  - lib/response_types/user.rb
76
76
  - lib/response_types/user_metric.rb
77
77
  - little_bird.rb
78
- - little_bird_api_client.gemspec
79
78
  - littlebird_api_client.gemspec
80
79
  homepage: ''
81
80
  licenses:
@@ -1,29 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- puts lib
4
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require 'rest_client'
6
- require 'json'
7
- require 'time'
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 }
12
- Gem::Specification.new do |spec|
13
- spec.name = "littlebird_api_client"
14
- spec.version = LittleBird::Client::VERSION
15
- spec.authors = ["Devin Gaffney"]
16
- spec.email = ["devin@getlittlebird.com"]
17
- spec.summary = %q{A thin wrapper for the Little Bird api (http://api.getlittlebird.com/index.html)}
18
- spec.description = %q{For use with Little Bird! Ya goof!}
19
- spec.homepage = ""
20
- spec.license = "Proprietary"
21
-
22
- spec.files = `git ls-files -z`.split("\x0")
23
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
24
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
25
- spec.require_paths = ["lib"]
26
-
27
- spec.add_development_dependency "bundler", "~> 1.5"
28
- spec.add_development_dependency "rake"
29
- end