-
Notifications
You must be signed in to change notification settings - Fork 0
/
firstfm.gemspec
executable file
·94 lines (89 loc) · 3.16 KB
/
firstfm.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
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: firstfm 0.8.0 ruby lib
Gem::Specification.new do |s|
s.name = "firstfm"
s.version = "0.8.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Aleksandr Lossenko"]
s.date = "2015-08-16"
s.description = "Firstfm is a ruby wrapper for the Last.fm APIs ( http://www.last.fm/api ). My main focus is to import events from Last.FM, but with time I will try to add support for all API methods."
s.email = "[email protected]"
s.extra_rdoc_files = [
"LICENSE.txt",
"README.rdoc"
]
s.files = [
".rvmrc",
"Gemfile",
"Gemfile.lock",
"LICENSE.txt",
"README.rdoc",
"Rakefile",
"VERSION.yml",
"firstfm.gemspec",
"lib/firstfm.rb",
"lib/firstfm/artist.rb",
"lib/firstfm/configuration.rb",
"lib/firstfm/event.rb",
"lib/firstfm/geo.rb",
"lib/firstfm/image.rb",
"lib/firstfm/location.rb",
"lib/firstfm/track.rb",
"lib/firstfm/user.rb",
"lib/firstfm/venue.rb",
"test/fixtures/artist.json",
"test/fixtures/artists.json",
"test/fixtures/events.json",
"test/fixtures/geo_event.json",
"test/fixtures/geo_events.json",
"test/fixtures/geo_get_metro_artist_chart.json",
"test/fixtures/get_correction.json",
"test/fixtures/get_correction_blank.json",
"test/fixtures/top_tracks.json",
"test/fixtures/tracks.json",
"test/fixtures/user_artists.json",
"test/fixtures/venues.json",
"test/helper.rb",
"test/test_artist.rb",
"test/test_geo.rb",
"test/test_track.rb",
"test/test_user.rb",
"test/test_venue.rb"
]
s.homepage = "http://github.com/egze/firstfm"
s.licenses = ["MIT"]
s.rubygems_version = "2.2.2"
s.summary = "A ruby wrapper for the Last.fm APIs"
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<httparty>, ["~> 0.13.5"])
s.add_runtime_dependency(%q<will_paginate>, ["~> 3.0.7"])
s.add_runtime_dependency(%q<chronic>, ["~> 0.10.2"])
s.add_development_dependency(%q<rake>, [">= 0"])
s.add_development_dependency(%q<bundler>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
s.add_development_dependency(%q<fakeweb>, [">= 0"])
else
s.add_dependency(%q<httparty>, ["~> 0.13.5"])
s.add_dependency(%q<will_paginate>, ["~> 3.0.7"])
s.add_dependency(%q<chronic>, ["~> 0.10.2"])
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<bundler>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<fakeweb>, [">= 0"])
end
else
s.add_dependency(%q<httparty>, ["~> 0.13.5"])
s.add_dependency(%q<will_paginate>, ["~> 3.0.7"])
s.add_dependency(%q<chronic>, ["~> 0.10.2"])
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<bundler>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<fakeweb>, [">= 0"])
end
end