forked from putpat/rockstar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrockstar.gemspec
149 lines (144 loc) · 5.81 KB
/
rockstar.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{rockstar}
s.version = "0.4.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Bodo Tasche"]
s.date = %q{2010-07-30}
s.description = %q{This gem is an updated version of jnunemakers scrobbler gem. Rockstar uses v2.0 of the last.fm api.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
".gitignore",
"History.txt",
"MIT-LICENSE",
"Manifest",
"README.rdoc",
"Rakefile",
"VERSION",
"examples/.gitignore",
"examples/album.rb",
"examples/artist.rb",
"examples/geo.rb",
"examples/lastfm.yml_example",
"examples/scrobble.rb",
"examples/tag.rb",
"examples/track.rb",
"examples/user.rb",
"lib/rockstar.rb",
"lib/rockstar/album.rb",
"lib/rockstar/artist.rb",
"lib/rockstar/auth.rb",
"lib/rockstar/base.rb",
"lib/rockstar/chart.rb",
"lib/rockstar/event.rb",
"lib/rockstar/geo.rb",
"lib/rockstar/metro.rb",
"lib/rockstar/playing.rb",
"lib/rockstar/rest.rb",
"lib/rockstar/scrobble.rb",
"lib/rockstar/session.rb",
"lib/rockstar/simpleauth.rb",
"lib/rockstar/tag.rb",
"lib/rockstar/tokenauth.rb",
"lib/rockstar/track.rb",
"lib/rockstar/user.rb",
"lib/rockstar/venue.rb",
"lib/rockstar/version.rb",
"rockstar.gemspec",
"test/fixtures/xml/album/getinfo_album_Some_Hearts_artist_Carrie_Underwood.xml",
"test/fixtures/xml/artist/getsimilar_artist_Metallica.xml",
"test/fixtures/xml/artist/gettopalbums_artist_Metallica.xml",
"test/fixtures/xml/artist/gettopfans_artist_Metallica.xml",
"test/fixtures/xml/artist/gettoptags_artist_Metallica.xml",
"test/fixtures/xml/artist/gettoptracks_artist_Metallica.xml",
"test/fixtures/xml/geo/getevents_location_london.xml",
"test/fixtures/xml/geo/getmetros_country_germany.xml",
"test/fixtures/xml/tag/gettopalbums_tag_rock.xml",
"test/fixtures/xml/tag/gettopartists_tag_rock.xml",
"test/fixtures/xml/tag/gettoptags.xml",
"test/fixtures/xml/tag/gettoptracks_tag_rock.xml",
"test/fixtures/xml/track/gettopfans_artist_Carrie_Underwood_track_Before_He_Cheats.xml",
"test/fixtures/xml/track/gettoptags_artist_Carrie_Underwood_track_Before_He_Cheats.xml",
"test/fixtures/xml/track/love_artist_Carrie_Underwood_sk_tag_track_Before_He_Cheats.xml",
"test/fixtures/xml/user/getevents_sk_token_user_bodot.xml",
"test/fixtures/xml/user/getfriends_user_jnunemaker.xml",
"test/fixtures/xml/user/getinfo_user_jnunemaker.xml",
"test/fixtures/xml/user/getinfo_user_oaknd1.xml",
"test/fixtures/xml/user/getinfo_user_wharle.xml",
"test/fixtures/xml/user/getlovedtracks_user_jnunemaker.xml",
"test/fixtures/xml/user/getneighbours_user_jnunemaker.xml",
"test/fixtures/xml/user/getrecenttracks_user_jnunemaker.xml",
"test/fixtures/xml/user/getrecommendedartists_sk_token_user_jnunemaker.xml",
"test/fixtures/xml/user/gettopalbums_user_jnunemaker.xml",
"test/fixtures/xml/user/gettopartists_user_jnunemaker.xml",
"test/fixtures/xml/user/gettoptags_user_jnunemaker.xml",
"test/fixtures/xml/user/gettoptracks_user_jnunemaker.xml",
"test/fixtures/xml/user/getweeklyalbumchart_from_1138536002_to_1139140802_user_jnunemaker.xml",
"test/fixtures/xml/user/getweeklyalbumchart_from__to__user_jnunemaker.xml",
"test/fixtures/xml/user/getweeklyartistchart_from_1138536002_to_1139140802_user_jnunemaker.xml",
"test/fixtures/xml/user/getweeklyartistchart_from__to__user_jnunemaker.xml",
"test/fixtures/xml/user/getweeklychartlist_user_jnunemaker.xml",
"test/fixtures/xml/user/getweeklytrackchart_from_1138536002_to_1139140802_user_jnunemaker.xml",
"test/fixtures/xml/user/getweeklytrackchart_from__to__user_jnunemaker.xml",
"test/mocks/rest.rb",
"test/test_helper.rb",
"test/unit/test_album.rb",
"test/unit/test_artist.rb",
"test/unit/test_chart.rb",
"test/unit/test_geo.rb",
"test/unit/test_playing.rb",
"test/unit/test_scrobble.rb",
"test/unit/test_simpleauth.rb",
"test/unit/test_tag.rb",
"test/unit/test_tokenauth.rb",
"test/unit/test_track.rb",
"test/unit/test_user.rb"
]
s.homepage = %q{http://github.com/bitboxer/rockstar}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{wrapper for audioscrobbler (last.fm) web services}
s.test_files = [
"test/mocks/rest.rb",
"test/test_helper.rb",
"test/unit/test_album.rb",
"test/unit/test_artist.rb",
"test/unit/test_chart.rb",
"test/unit/test_geo.rb",
"test/unit/test_playing.rb",
"test/unit/test_scrobble.rb",
"test/unit/test_simpleauth.rb",
"test/unit/test_tag.rb",
"test/unit/test_tokenauth.rb",
"test/unit/test_track.rb",
"test/unit/test_user.rb",
"examples/album.rb",
"examples/artist.rb",
"examples/geo.rb",
"examples/scrobble.rb",
"examples/tag.rb",
"examples/track.rb",
"examples/user.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<hpricot>, [">= 0.4.86"])
s.add_runtime_dependency(%q<activesupport>, [">= 1.4.2"])
else
s.add_dependency(%q<hpricot>, [">= 0.4.86"])
s.add_dependency(%q<activesupport>, [">= 1.4.2"])
end
else
s.add_dependency(%q<hpricot>, [">= 0.4.86"])
s.add_dependency(%q<activesupport>, [">= 1.4.2"])
end
end