cloudstack-cli.gemspec in cloudstack-cli-0.5.4 vs cloudstack-cli.gemspec in cloudstack-cli-0.5.5

- old
+ new

@@ -2,27 +2,28 @@ lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cloudstack-cli/version' Gem::Specification.new do |gem| - gem.name = "cloudstack-cli" + gem.name = 'cloudstack-cli' gem.version = CloudstackCli::VERSION - gem.authors = ["Nik Wolfgramm"] - gem.email = ["nik.wolfgramm@gmail.com"] + gem.authors = ['Nik Wolfgramm'] + gem.email = %w(nik.wolfgramm@gmail.com) gem.description = %q{cloudstack-cli is a CloudStack API client written in Ruby.} gem.summary = %q{cloudstack-cli CloudStack API client} - gem.homepage = "https://github.com/niwo/cloudstack-cli" + gem.date = Time.now.utc.strftime("%Y-%m-%d") + gem.homepage = 'https://github.com/niwo/cloudstack-cli' gem.license = 'MIT' gem.required_ruby_version = '>= 1.9.3' gem.files = `git ls-files`.split($/) - gem.executables = ['cs'] + gem.executables = %w(cs) gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) - gem.require_paths = ["lib"] + gem.require_paths = %w(lib) gem.rdoc_options = %w[--line-numbers --inline-source] gem.add_development_dependency('rdoc', '~> 4.1') gem.add_development_dependency('rake', '~> 10.1') gem.add_dependency('thor', '~> 0.18') - gem.add_dependency('cloudstack_client', '~> 0.3') + gem.add_dependency('cloudstack_client', '~> 0.3', '>= 0.3.6') end \ No newline at end of file