mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
ab3e04b7ae
excon was updated to allow for tracking progress, and though we are not using this feature we still need to acknowledge the change in the params that are passed back to blocks for requests. Closes #245 Closes #246
64 lines
2.6 KiB
Ruby
64 lines
2.6 KiB
Ruby
Gem::Specification.new do |s|
|
|
s.specification_version = 2 if s.respond_to? :specification_version=
|
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
s.rubygems_version = '1.3.5'
|
|
|
|
## Leave these as is they will be modified for you by the rake gemspec task.
|
|
## If your rubyforge_project name is different, then edit it and comment out
|
|
## the sub! line in the Rakefile
|
|
s.name = 'fog'
|
|
s.version = '0.7.1'
|
|
s.date = '2011-03-21'
|
|
s.rubyforge_project = 'fog'
|
|
|
|
## Make sure your summary is short. The description may be as long
|
|
## as you like.
|
|
s.summary = "brings clouds to you"
|
|
s.description = "The Ruby cloud services library."
|
|
|
|
## List the primary authors. If there are a bunch of authors, it's probably
|
|
## better to set the email to an email list or something. If you don't have
|
|
## a custom homepage, consider using your GitHub URL or the like.
|
|
s.authors = ["geemus (Wesley Beary)"]
|
|
s.email = 'geemus@gmail.com'
|
|
s.homepage = 'http://github.com/geemus/fog'
|
|
|
|
## This gets added to the $LOAD_PATH so that 'lib/NAME.rb' can be required as
|
|
## require 'NAME.rb' or'/lib/NAME/file.rb' can be as require 'NAME/file.rb'
|
|
s.require_paths = %w[lib]
|
|
|
|
## This sections is only necessary if you have C extensions.
|
|
# s.require_paths << 'ext'
|
|
# s.extensions = %w[ext/extconf.rb]
|
|
|
|
## If your gem includes any executables, list them here.
|
|
s.executables = ["fog"]
|
|
s.default_executable = 'fog'
|
|
|
|
## Specify any RDoc options here. You'll want to add your README and
|
|
## LICENSE files to the extra_rdoc_files list.
|
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
s.extra_rdoc_files = %w[README.rdoc]
|
|
|
|
## List your runtime dependencies here. Runtime dependencies are those
|
|
## that are needed for an end user to actually USE your code.
|
|
s.add_dependency('builder')
|
|
s.add_dependency('excon', '>=0.6.0')
|
|
s.add_dependency('formatador', '>=0.1.3')
|
|
s.add_dependency('json')
|
|
s.add_dependency('mime-types')
|
|
s.add_dependency('net-ssh', '>=2.1.3')
|
|
s.add_dependency('nokogiri', '>=1.4.4')
|
|
s.add_dependency('ruby-hmac')
|
|
|
|
## List your development dependencies here. Development dependencies are
|
|
## those that are only needed during development
|
|
s.add_development_dependency('jekyll')
|
|
s.add_development_dependency('rake')
|
|
s.add_development_dependency('rspec', '1.3.1')
|
|
s.add_development_dependency('shindo', '0.3.4')
|
|
s.add_development_dependency('virtualbox', '0.8.3')
|
|
|
|
s.files = `git ls-files`.split("\n")
|
|
s.test_files = `git ls-files -- {spec,tests}/*`.split("\n")
|
|
end
|