echowrap 0.0.1 → 0.0.2
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.
- data/echowrap.gemspec +1 -0
- data/lib/echowrap/version.rb +1 -1
- metadata +4 -3
data/echowrap.gemspec
CHANGED
|
@@ -11,6 +11,7 @@ Gem::Specification.new do |gem|
|
|
|
11
11
|
gem.description = %q{A Ruby interface to the Echonest API, details can be found at http://echowrap.com.}
|
|
12
12
|
gem.summary = %q{A Ruby interface to the Echonest API.}
|
|
13
13
|
gem.homepage = "https://github.com/timcase/echowrap"
|
|
14
|
+
gem.license = 'MIT'
|
|
14
15
|
|
|
15
16
|
gem.files = `git ls-files`.split($/)
|
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/echowrap/version.rb
CHANGED
|
@@ -2,7 +2,7 @@ module Echowrap
|
|
|
2
2
|
class Version
|
|
3
3
|
MAJOR = 0 unless defined? Echowrap::Version::MAJOR
|
|
4
4
|
MINOR = 0 unless defined? Echowrap::Version::MINOR
|
|
5
|
-
PATCH =
|
|
5
|
+
PATCH = 2 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.0.2
|
|
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-08-
|
|
12
|
+
date: 2013-08-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: faraday
|
|
@@ -225,7 +225,8 @@ files:
|
|
|
225
225
|
- spec/fixtures/track/upload.json
|
|
226
226
|
- spec/helper.rb
|
|
227
227
|
homepage: https://github.com/timcase/echowrap
|
|
228
|
-
licenses:
|
|
228
|
+
licenses:
|
|
229
|
+
- MIT
|
|
229
230
|
post_install_message:
|
|
230
231
|
rdoc_options: []
|
|
231
232
|
require_paths:
|