sandoz.gemspec in sandoz-0.1.51 vs sandoz.gemspec in sandoz-0.1.52

- old
+ new

@@ -1,32 +1,28 @@ # coding: utf-8 -lib = File.expand_path('../lib', __FILE__) -$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) -require 'sandoz/version' +require File.expand_path('../lib/sandoz/version', __FILE__) Gem::Specification.new do |s| - s.name = 'sandoz' + s.name = 'sandoz' s.version = Sandoz::VERSION s.authors = ["Harley Swick"] s.email = ["hswick@example.com"] - s.summary = %q{ A gem named Sandoz. } - s.description = %q{ Ruby P5.js wrapper for trippy visuals. } + s.summary = "A gem named Sandoz." + s.description = "Ruby p5.js wrapper for trippy visuals." s.homepage = "https://github.com/hswick/sandoz" s.license = "MIT" - # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or - # delete this section to allow pushing this gem to any host. if s.respond_to?(:metadata) s.metadata['allowed_push_host'] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against public gem pushes." end s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } - s.bindir = "exe" - s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) } + s.bindir = "bin" + s.executables = ["sandoz"] s.require_paths = ["lib"] s.add_development_dependency 'bundler', '~> 1.11' - s.add_dependency 'sinatra', '~> 1.4' s.add_dependency 'opal', '~> 0.9' + s.add_dependency 'thor', '~> 0.19.1' end