s3_patron.gemspec in s3_patron-0.0.2.3 vs s3_patron.gemspec in s3_patron-0.0.2.4
- old
+ new
@@ -1,18 +1,19 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 's3_patron/version'
+require 's3_patron/banner'
Gem::Specification.new do |spec|
spec.name = "s3_patron"
spec.version = S3Patron::VERSION
spec.authors = ["Suyesh Bhandari"]
spec.email = ["suyeshb@gmail.com"]
- spec.summary = "Command-line utility to manage S3"
- spec.description = "Command-line utility to manage S3"
+ spec.summary = "Command-line utility to manage S3 written in Ruby"
+ spec.description = "Command-line utility to manage S3 written in Ruby"
spec.homepage = "https://github.com/suyesh/s3_patron"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
@@ -27,10 +28,10 @@
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
- spec.post_install_message = "Now you use s3p or s3patron to run the commands."
+ spec.post_install_message = S3Patron::Banner.new.to_s
spec.add_development_dependency "bundler", "~> 1.13"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "pry"
spec.add_dependency 'thor', '~> 0.19.4'
spec.add_dependency 'aws-sdk', '~> 2.6', '>= 2.6.35'