# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "shelly/version" Gem::Specification.new do |s| s.name = "shelly" s.version = Shelly::VERSION s.authors = ["Shelly Cloud team"] s.email = ["support@shellycloud.com"] s.homepage = "http://shellycloud.com" s.summary = %q{Shelly Cloud command line tool} s.description = %q{Tool for managing applications and clouds at shellycloud.com} s.rubyforge_project = "shelly" 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.require_paths = ["lib"] # specify any dependencies here; for example: # s.add_development_dependency "rspec" # s.add_runtime_dependency "rest-client" end