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 +8 -8
- data/lib/client.rb +1 -1
- metadata +1 -2
- data/little_bird_api_client.gemspec +0 -29
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
N2U4M2JmYjVkNjI0NTFkNWE4MzRhYTFhMWViM2U4ZTVhNDBmMmExMg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZDFhYjJkMzUyNGNiNDZhOTUyMjNlYjQ3ODhmNzUwZmE1ZGM4ZmMyYQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
Yjg5YjNmNzcyZWM2MTA1MzUxMmNhNTRjNjYyM2RhNWVhNWMzN2M3MjUyMDRm
|
10
|
+
ZjhiMzY5ZGU1NWFhZmMxY2MwMzc4ZDQ5YTI3MGJiNjUzZjc5N2Q3YmVkNjNj
|
11
|
+
Mjg2NzJjODU1OTIzODJlMGUyZmFhZGE5M2IwZGIzNjNiYTAxYTM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NWMyYmUxZDcyZGQ1NzdiZDlmMmIxYzg1YTgzNmUwYTVjMjg5OTJhZDJkMjVi
|
14
|
+
ZTM4YTljYWQwNTQ5NTdiNzk2YTA3YjIzM2JlMmY3NDZhYTU4NjFkODkxMjdk
|
15
|
+
YTdkZWY5NWRlNmY0ZmNlMDUwZDJhYzY5ZTk5YjMwM2ZlM2M3YmI=
|
data/lib/client.rb
CHANGED
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.
|
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
|