Skip to content

Commit

Permalink
update gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
siuying committed Mar 11, 2012
1 parent cb10850 commit 30ca361
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Rakefile
Expand Up @@ -16,12 +16,11 @@ Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "rubberband-audio" gem.name = "rubberband-audio"
gem.homepage = "http://github.com/siuying/rubberband-audio" gem.homepage = "http://github.com/siuying/rubberband-audio"
gem.license = "MIT" gem.license = "GPL"
gem.summary = %Q{TODO: one-line summary of your gem} gem.summary = %Q{Wrapper for Rubber Band library}
gem.description = %Q{TODO: longer description of your gem} gem.description = %Q{Ruby Wrapper for Rubber Band library for changing the speed and pitch of audio recordings.}
gem.email = "francis@ignition.hk" gem.email = "francis@ignition.hk"
gem.authors = ["Francis Chong"] gem.authors = ["Francis Chong"]
# dependencies defined in Gemfile
end end
Jeweler::RubygemsDotOrgTasks.new Jeweler::RubygemsDotOrgTasks.new


Expand Down
61 changes: 61 additions & 0 deletions rubberband-audio.gemspec
@@ -0,0 +1,61 @@
# 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 = "rubberband-audio"
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Francis Chong"]
s.date = "2012-03-11"
s.description = "Ruby Wrapper for Rubber Band library for changing the speed and pitch of audio recordings."
s.email = "francis@ignition.hk"
s.extra_rdoc_files = [
"LICENSE.txt",
"README.rdoc"
]
s.files = [
".document",
".rspec",
"Gemfile",
"LICENSE.txt",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/rubberband-audio.rb",
"lib/rubberband/options.rb",
"lib/rubberband/processor.rb",
"spec/options_spec.rb",
"spec/processor_spec.rb",
"spec/spec_helper.rb"
]
s.homepage = "http://github.com/siuying/rubberband-audio"
s.licenses = ["GPL"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.15"
s.summary = "Wrapper for Rubber Band library"

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_development_dependency(%q<rspec>, ["~> 2.3.0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
s.add_development_dependency(%q<pry>, [">= 0"])
else
s.add_dependency(%q<rspec>, ["~> 2.3.0"])
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
s.add_dependency(%q<pry>, [">= 0"])
end
else
s.add_dependency(%q<rspec>, ["~> 2.3.0"])
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
s.add_dependency(%q<pry>, [">= 0"])
end
end

0 comments on commit 30ca361

Please sign in to comment.