forked from gravityblast/musix_match
-
Notifications
You must be signed in to change notification settings - Fork 0
/
musix_match.gemspec
90 lines (85 loc) · 2.85 KB
/
musix_match.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
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{musix_match}
s.version = "0.1.18"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Andrea Franz"]
s.date = %q{2011-05-14}
s.description = %q{API wrapper for musixmatch.com API's}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
"LICENSE",
"README.rdoc",
"Rakefile",
"lib/musix_match.rb",
"lib/musix_match/api/base.rb",
"lib/musix_match/api/feedback.rb",
"lib/musix_match/api/finder.rb",
"lib/musix_match/api/search.rb",
"lib/musix_match/api/track_chart.rb",
"lib/musix_match/feedback_result.rb",
"lib/musix_match/instant_lyrics.rb",
"lib/musix_match/lyrics_find_result.rb",
"lib/musix_match/lyrics_search_result.rb",
"lib/musix_match/models/lyrics.rb",
"lib/musix_match/models/model.rb",
"lib/musix_match/models/track.rb",
"lib/musix_match/track_find_result.rb",
"lib/musix_match/track_search_result.rb",
"spec/api/base_spec.rb",
"spec/api/feedback_spec.rb",
"spec/api/finder_spec.rb",
"spec/api/search_spec.rb",
"spec/api/track_chart_spec.rb",
"spec/feedback_result_spec.rb",
"spec/lyrics_find_result_spec.rb",
"spec/lyrics_search_result_spec.rb",
"spec/models/lyrics_spec.rb",
"spec/models/track_spec.rb",
"spec/musix_match_spec.rb",
"spec/spec_helper.rb",
"spec/track_find_result_spec.rb",
"spec/track_search_result_spec.rb"
]
s.homepage = %q{http://github.com/pilu/musix_match}
s.rdoc_options = ["--main=README.rdoc", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.0}
s.summary = %q{API wrapper for musixmatch.com API's}
s.test_files = [
"spec/api/base_spec.rb",
"spec/api/feedback_spec.rb",
"spec/api/finder_spec.rb",
"spec/api/search_spec.rb",
"spec/api/track_chart_spec.rb",
"spec/feedback_result_spec.rb",
"spec/lyrics_find_result_spec.rb",
"spec/lyrics_search_result_spec.rb",
"spec/models/lyrics_spec.rb",
"spec/models/track_spec.rb",
"spec/musix_match_spec.rb",
"spec/spec_helper.rb",
"spec/track_find_result_spec.rb",
"spec/track_search_result_spec.rb"
]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<json>, [">= 0"])
s.add_runtime_dependency(%q<httparty>, [">= 0.6.1"])
else
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<httparty>, [">= 0.6.1"])
end
else
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<httparty>, [">= 0.6.1"])
end
end