gaptool-client.gemspec in gaptool-client-0.7.2 vs gaptool-client.gemspec in gaptool-client-0.7.3
- old
+ new
@@ -1,42 +1,31 @@
-# Generated by jeweler
-# DO NOT EDIT THIS FILE DIRECTLY
-# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
-# -*- encoding: utf-8 -*-
-
-# -*- encoding: utf-8 -*-
-$:.push File.expand_path("../lib", __FILE__)
-
Gem::Specification.new do |s|
s.name = "gaptool-client"
s.version = File.read('VERSION').strip
s.authors = ["Francesco Laurita", "Matt Bailey", "Giacomo Bagnoli"]
s.email = ["francesco@gild.com"]
s.homepage = "http://www.gild.com"
s.summary = %q{client for gaptool-server}
- s.description = %q{
- gaptool client
- }
+ s.description = %q{gaptool cli client}
s.licenses = ["MIT"]
s.rubyforge_project = "gaptool-client"
- s.files = `git ls-files`.split("\n")
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
+ s.files = Dir['lib/*'] + %w(LICENSE.TXT README.md VERSION Rakefile gaptool-client.gemspec)
+ s.test_files = Dir['test/*']
+ s.executables = Dir['bin/*'].map {|x| x.sub(/^bin\//, "")}
s.require_paths = ["lib"]
s.add_runtime_dependency 'json', '~> 1.8'
s.add_runtime_dependency 'peach', '~> 0.5'
s.add_runtime_dependency 'rainbow', '~> 2.0'
s.add_runtime_dependency 'clamp', "~> 0.6"
s.add_runtime_dependency 'net-ssh', "~> 2.9"
s.add_runtime_dependency 'net-scp', "~> 1.2"
- s.add_runtime_dependency 'gaptool-api', "~> 0.7"
+ s.add_runtime_dependency 'gaptool-api', "~> 0.7", '>= 0.7.1'
s.add_runtime_dependency 'builder', "~> 3"
s.add_development_dependency 'shoulda', "~> 3"
s.add_development_dependency 'rdoc', "~> 3"
s.add_development_dependency 'bundler', "~> 1"
s.add_development_dependency 'simplecov', "~> 0"
-
end