Skip to content

Commit

Permalink
* add dependency
Browse files Browse the repository at this point in the history
 * version 0.0.13
  • Loading branch information
youpy committed Apr 5, 2009
1 parent a4364c6 commit 43e2840
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
8 changes: 0 additions & 8 deletions README.rdoc
Expand Up @@ -13,14 +13,6 @@ supported file format:

=== Requirements

* {ruby-mp3info}[http://ruby-mp3info.rubyforge.org/]

gem install ruby-mp3info

* {RiffLib}[http://rubyforge.org/projects/riff/]

gem install riff

* {FFmpeg}[http://ffmpeg.mplayerhq.hu/]
* {Ecasound}[http://www.eca.cx/ecasound/] 2.5.0 or higher

Expand Down
3 changes: 2 additions & 1 deletion Rakefile
Expand Up @@ -17,7 +17,7 @@ DESCRIPTION = "utility to chop sound files"
RUBYFORGE_PROJECT = "scissor"
HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
BIN_FILES = %w( )
VERS = "0.0.12"
VERS = "0.0.13"

REV = File.read(".svn/entries")[/committed-rev="(d+)"/, 1] rescue nil
CLEAN.include ['**/.*.sw?', '*.gem', '.config']
Expand Down Expand Up @@ -57,6 +57,7 @@ spec = Gem::Specification.new do |s|
s.homepage = HOMEPATH
s.test_files = Dir["test/test_*.rb"]

s.add_dependency('open4')
s.add_dependency('ruby-mp3info')
s.add_dependency('riff')
#s.required_ruby_version = '>= 1.8.2'
Expand Down
7 changes: 5 additions & 2 deletions scissor.gemspec
@@ -1,10 +1,10 @@
Gem::Specification.new do |s|
s.name = %q{scissor}
s.version = "0.0.12"
s.version = "0.0.13"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["youpy"]
s.date = %q{2009-04-05}
s.date = %q{2009-04-06}
s.description = %q{utility to chop sound files}
s.email = %q{youpy@buycheapviagraonlinenow.com}
s.extra_rdoc_files = ["README.rdoc", "ChangeLog"]
Expand All @@ -22,13 +22,16 @@ Gem::Specification.new do |s|
s.specification_version = 2

if current_version >= 3 then
s.add_runtime_dependency(%q<open4>, [">= 0"])
s.add_runtime_dependency(%q<ruby-mp3info>, [">= 0"])
s.add_runtime_dependency(%q<riff>, [">= 0"])
else
s.add_dependency(%q<open4>, [">= 0"])
s.add_dependency(%q<ruby-mp3info>, [">= 0"])
s.add_dependency(%q<riff>, [">= 0"])
end
else
s.add_dependency(%q<open4>, [">= 0"])
s.add_dependency(%q<ruby-mp3info>, [">= 0"])
s.add_dependency(%q<riff>, [">= 0"])
end
Expand Down

0 comments on commit 43e2840

Please sign in to comment.