fog--fog/fog.gemspec

62 lines
2.5 KiB
Ruby
Raw Normal View History

2009-09-04 21:49:26 +00:00
Gem::Specification.new do |s|
2010-04-21 03:23:24 +00:00
s.specification_version = 2 if s.respond_to? :specification_version=
2009-09-04 21:49:26 +00:00
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
2010-04-21 03:23:24 +00:00
## 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
2011-01-26 23:19:48 +00:00
s.name = 'fog'
2011-08-18 16:45:39 +00:00
s.version = '0.11.0'
s.date = '2011-08-18'
2010-04-21 03:23:24 +00:00
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"
2011-01-13 23:44:49 +00:00
s.description = "The Ruby cloud services library."
2010-04-21 03:23:24 +00:00
## 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 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.
2009-10-02 06:23:03 +00:00
s.executables = ["fog"]
2010-04-21 03:23:24 +00:00
## Specify any RDoc options here. You'll want to add your README and
## LICENSE files to the extra_rdoc_files list.
2009-09-04 21:49:26 +00:00
s.rdoc_options = ["--charset=UTF-8"]
2010-04-21 03:23:24 +00:00
s.extra_rdoc_files = %w[README.rdoc]
2009-09-04 21:49:26 +00:00
2010-04-21 03:23:24 +00:00
## List your runtime dependencies here. Runtime dependencies are those
## that are needed for an end user to actually USE your code.
2010-07-25 21:32:37 +00:00
s.add_dependency('builder')
2011-09-27 19:16:36 +00:00
s.add_dependency('excon', '~>0.7.3')
s.add_dependency('formatador', '~>0.2.0')
s.add_dependency('multi_json', '~>1.0.3')
2010-04-21 03:23:24 +00:00
s.add_dependency('mime-types')
s.add_dependency('net-scp', '~>1.0.4')
s.add_dependency('net-ssh', '~>2.1.4')
s.add_dependency('nokogiri', '~>1.5.0')
s.add_dependency('ruby-hmac')
2009-09-04 21:49:26 +00:00
2010-04-21 03:23:24 +00:00
## 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')
2011-05-26 23:13:59 +00:00
s.add_development_dependency('rdoc')
s.add_development_dependency('rspec', '~>1.3.1')
s.add_development_dependency('shindo', '~>0.3.4')
s.add_development_dependency('virtualbox', '~>0.9.1')
# s.add_development_dependency('ruby-libvirt','~>0.4.0')
2010-04-21 03:23:24 +00:00
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,tests}/*`.split("\n")
2010-04-21 03:23:24 +00:00
end