echowrap 0.0.3 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +4 -1
- data/echowrap.gemspec +1 -1
- data/lib/echowrap/version.rb +2 -2
- metadata +4 -4
data/README.md
CHANGED
@@ -14,7 +14,7 @@ can be found at http://developer.echonest.com/
|
|
14
14
|
* Various http clients are supported via [Faraday](https://github.com/lostisland/faraday)
|
15
15
|
* Uses Unix philosophy of "do one thing and do it well"
|
16
16
|
|
17
|
-
[![Dependency Status](https://gemnasium.com/timcase/
|
17
|
+
[![Dependency Status](https://gemnasium.com/timcase/echowrap.png)](https://gemnasium.com/timcase/echowrap)
|
18
18
|
[![Build
|
19
19
|
Status](https://travis-ci.org/timcase/echowrap.png)](https://travis-ci.org/timcase/echowrap)
|
20
20
|
[![Code Climate](https://codeclimate.com/github/timcase/echonest.png)](https://codeclimate.com/github/timcase/echonest)
|
@@ -88,6 +88,8 @@ documentation available [on the
|
|
88
88
|
wiki](https://github.com/timcase/echowrap/wiki).
|
89
89
|
|
90
90
|
## API Documentation
|
91
|
+
Full API Documentation can be found in the
|
92
|
+
[wiki](https://github.com/timcase/echowrap/wiki)
|
91
93
|
|
92
94
|
## License
|
93
95
|
Echowrap is released under the [MIT
|
@@ -107,5 +109,6 @@ tracking page](https://github.com/timcase/echowrap/issues).
|
|
107
109
|
|
108
110
|
##Acknowledgement
|
109
111
|
Much of the heavy lifting was done by studying the [Twitter gem](https://github.com/sferik/twitter).
|
112
|
+
|
110
113
|
##Contributors
|
111
114
|
[Tim Case](timcase.me)
|
data/echowrap.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |gem|
|
|
19
19
|
gem.require_paths = ["lib"]
|
20
20
|
|
21
21
|
gem.add_dependency 'faraday', '~> 0.9.0.rc5'
|
22
|
-
gem.add_dependency 'multi_json', '~> 1.
|
22
|
+
gem.add_dependency 'multi_json', '~> 1.8.0'
|
23
23
|
gem.add_dependency 'simple_oauth', '~> 0.2'
|
24
24
|
|
25
25
|
end
|
data/lib/echowrap/version.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
module Echowrap
|
2
2
|
class Version
|
3
3
|
MAJOR = 0 unless defined? Echowrap::Version::MAJOR
|
4
|
-
MINOR =
|
5
|
-
PATCH =
|
4
|
+
MINOR = 1 unless defined? Echowrap::Version::MINOR
|
5
|
+
PATCH = 0 unless defined? Echowrap::Version::PATCH
|
6
6
|
PRE = nil unless defined? Echowrap::Version::PRE
|
7
7
|
|
8
8
|
class << self
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: echowrap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-09-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: faraday
|
@@ -34,7 +34,7 @@ dependencies:
|
|
34
34
|
requirements:
|
35
35
|
- - ~>
|
36
36
|
- !ruby/object:Gem::Version
|
37
|
-
version: 1.
|
37
|
+
version: 1.8.0
|
38
38
|
type: :runtime
|
39
39
|
prerelease: false
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -42,7 +42,7 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - ~>
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version: 1.
|
45
|
+
version: 1.8.0
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
47
|
name: simple_oauth
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|