claudiob-radiotagmap 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/.gitignore +2 -1
- data/README.md +4 -1
- data/Rakefile +4 -1
- data/VERSION +1 -1
- data/radiotagmap.gemspec +12 -4
- metadata +32 -3
- data/.document +0 -5
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -8,7 +8,7 @@ Ruby gem to map by U.S. state the music played on FM radios
|
|
8
8
|
|
9
9
|
## Documentation ##
|
10
10
|
|
11
|
-
http://rdoc.info/projects/claudiob/radiotagmap
|
11
|
+
[http://rdoc.info/projects/claudiob/radiotagmap](http://rdoc.info/projects/claudiob/radiotagmap)
|
12
12
|
|
13
13
|
## Examples ##
|
14
14
|
|
@@ -19,6 +19,9 @@ http://rdoc.info/projects/claudiob/radiotagmap
|
|
19
19
|
|
20
20
|
## History ##
|
21
21
|
|
22
|
+
v0.0.2 2009/09/17
|
23
|
+
Added gem dependencies.
|
24
|
+
|
22
25
|
v0.0.1 2009/09/16
|
23
26
|
First commit to compare two families of tags against the others.
|
24
27
|
API calls are threaded. Needs more control and documentation.
|
data/Rakefile
CHANGED
@@ -9,8 +9,11 @@ begin
|
|
9
9
|
gem.description = %Q{Radiotagmap reads from Yes.com the songs that are currently playing in FM radios, then extracts the most played tag/genre in every U.S. state and returns a KML representation of this data, which can be plotted on a map using Google Maps or Google Earth.}
|
10
10
|
gem.email = "claudiob@gmail.com"
|
11
11
|
gem.homepage = "http://github.com/claudiob/radiotagmap"
|
12
|
-
gem.authors = ["
|
12
|
+
gem.authors = ["Claudio Baccigalupo"]
|
13
13
|
gem.add_development_dependency "cucumber"
|
14
|
+
gem.add_dependency "claudiob-yesradio", ">=0.1.1"
|
15
|
+
gem.add_dependency "nokogiri", ">=1.3.2"
|
16
|
+
gem.add_dependency "scrobbler", ">=0.2.3"
|
14
17
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
18
|
end
|
16
19
|
rescue LoadError
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/radiotagmap.gemspec
CHANGED
@@ -5,10 +5,10 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{radiotagmap}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = ["
|
11
|
+
s.authors = ["Claudio Baccigalupo"]
|
12
12
|
s.date = %q{2009-09-17}
|
13
13
|
s.description = %q{Radiotagmap reads from Yes.com the songs that are currently playing in FM radios, then extracts the most played tag/genre in every U.S. state and returns a KML representation of this data, which can be plotted on a map using Google Maps or Google Earth.}
|
14
14
|
s.email = %q{claudiob@gmail.com}
|
@@ -17,8 +17,7 @@ Gem::Specification.new do |s|
|
|
17
17
|
"README.md"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
|
-
".
|
21
|
-
".gitignore",
|
20
|
+
".gitignore",
|
22
21
|
"LICENSE",
|
23
22
|
"README.md",
|
24
23
|
"Rakefile",
|
@@ -48,10 +47,19 @@ Gem::Specification.new do |s|
|
|
48
47
|
|
49
48
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
50
49
|
s.add_development_dependency(%q<cucumber>, [">= 0"])
|
50
|
+
s.add_runtime_dependency(%q<claudiob-yesradio>, [">= 0.1.1"])
|
51
|
+
s.add_runtime_dependency(%q<nokogiri>, [">= 1.3.2"])
|
52
|
+
s.add_runtime_dependency(%q<scrobbler>, [">= 0.2.3"])
|
51
53
|
else
|
52
54
|
s.add_dependency(%q<cucumber>, [">= 0"])
|
55
|
+
s.add_dependency(%q<claudiob-yesradio>, [">= 0.1.1"])
|
56
|
+
s.add_dependency(%q<nokogiri>, [">= 1.3.2"])
|
57
|
+
s.add_dependency(%q<scrobbler>, [">= 0.2.3"])
|
53
58
|
end
|
54
59
|
else
|
55
60
|
s.add_dependency(%q<cucumber>, [">= 0"])
|
61
|
+
s.add_dependency(%q<claudiob-yesradio>, [">= 0.1.1"])
|
62
|
+
s.add_dependency(%q<nokogiri>, [">= 1.3.2"])
|
63
|
+
s.add_dependency(%q<scrobbler>, [">= 0.2.3"])
|
56
64
|
end
|
57
65
|
end
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: claudiob-radiotagmap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Claudio Baccigalupo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
@@ -22,6 +22,36 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: "0"
|
24
24
|
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: claudiob-yesradio
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.1.1
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: nokogiri
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.3.2
|
44
|
+
version:
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: scrobbler
|
47
|
+
type: :runtime
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 0.2.3
|
54
|
+
version:
|
25
55
|
description: Radiotagmap reads from Yes.com the songs that are currently playing in FM radios, then extracts the most played tag/genre in every U.S. state and returns a KML representation of this data, which can be plotted on a map using Google Maps or Google Earth.
|
26
56
|
email: claudiob@gmail.com
|
27
57
|
executables: []
|
@@ -32,7 +62,6 @@ extra_rdoc_files:
|
|
32
62
|
- LICENSE
|
33
63
|
- README.md
|
34
64
|
files:
|
35
|
-
- .document
|
36
65
|
- .gitignore
|
37
66
|
- LICENSE
|
38
67
|
- README.md
|