forked from gravityblast/musix_match
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
26 lines (23 loc) · 887 Bytes
/
Rakefile
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
require 'rubygems'
require 'json'
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new
task :default => :spec
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "musix_match"
gemspec.summary = "API wrapper for musixmatch.com API's"
gemspec.description = "API wrapper for musixmatch.com API's"
gemspec.email = "andrea@gravityblast.com"
gemspec.homepage = "http://github.com/pilu/musix_match"
gemspec.authors = ["Andrea Franz"]
gemspec.files = FileList['LICENSE', 'README.rdoc', 'Rakefile', 'lib/**/*.rb', 'spec/**/*.rb']
gemspec.add_dependency('json')
gemspec.add_dependency('httparty', '>= 0.6.1')
gemspec.extra_rdoc_files = ['README.rdoc', 'LICENSE']
gemspec.rdoc_options = ['--main=README.rdoc', '--charset=UTF-8']
end
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end