-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruby_sox.gemspec
27 lines (23 loc) · 1.03 KB
/
ruby_sox.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ruby_sox/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Erick Johnson"]
gem.email = ["ejohnson82@gmail.com"]
gem.description = "RubySox provides a ruby wrapper around Sox (Sound Exchange)"
gem.summary = "RubySox lets you manipulate music files"
gem.homepage = "http://github.com/eejjjj82/ruby_sox"
gem.add_dependency "thor"
gem.add_development_dependency "bundler"
gem.add_development_dependency "rspec", "~>2.9"
gem.add_development_dependency "cucumber"
gem.add_development_dependency "aruba"
gem.add_development_dependency "guard"
gem.add_development_dependency "guard-rspec"
gem.add_development_dependency "guard-cucumber"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "ruby_sox"
gem.require_paths = ["lib"]
gem.version = RubySox::VERSION
end