2009-09-04 17:49:26 -04:00
|
|
|
Gem::Specification.new do |s|
|
2010-04-20 23:23:24 -04:00
|
|
|
s.specification_version = 2 if s.respond_to? :specification_version=
|
2009-09-04 17:49:26 -04:00
|
|
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
2010-04-20 23:23:24 -04: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 18:19:48 -05:00
|
|
|
s.name = 'fog'
|
2011-08-18 12:45:39 -04:00
|
|
|
s.version = '0.11.0'
|
|
|
|
s.date = '2011-08-18'
|
2010-04-20 23:23:24 -04: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 18:44:49 -05:00
|
|
|
s.description = "The Ruby cloud services library."
|
2010-04-20 23:23:24 -04: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 02:23:03 -04:00
|
|
|
s.executables = ["fog"]
|
2010-04-20 23:23:24 -04: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 17:49:26 -04:00
|
|
|
s.rdoc_options = ["--charset=UTF-8"]
|
2010-04-20 23:23:24 -04:00
|
|
|
s.extra_rdoc_files = %w[README.rdoc]
|
2009-09-04 17:49:26 -04:00
|
|
|
|
2010-04-20 23:23:24 -04: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 17:32:37 -04:00
|
|
|
s.add_dependency('builder')
|
2011-07-20 17:51:12 -04:00
|
|
|
s.add_dependency('excon', '~>0.6.5')
|
|
|
|
s.add_dependency('formatador', '~>0.2.0')
|
|
|
|
s.add_dependency('multi_json', '~>1.0.3')
|
2010-04-20 23:23:24 -04:00
|
|
|
s.add_dependency('mime-types')
|
2011-07-05 15:20:44 -04:00
|
|
|
s.add_dependency('net-scp', '~>1.0.4')
|
|
|
|
s.add_dependency('net-ssh', '~>2.1.4')
|
2011-07-20 17:51:12 -04:00
|
|
|
s.add_dependency('nokogiri', '~>1.5.0')
|
2010-06-16 00:19:40 -04:00
|
|
|
s.add_dependency('ruby-hmac')
|
2009-09-04 17:49:26 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
## List your development dependencies here. Development dependencies are
|
|
|
|
## those that are only needed during development
|
2011-04-01 00:01:33 -04:00
|
|
|
s.add_development_dependency('jekyll')
|
2010-08-20 13:50:12 -04:00
|
|
|
s.add_development_dependency('rake')
|
2011-05-26 19:13:59 -04:00
|
|
|
s.add_development_dependency('rdoc')
|
2011-07-05 15:20:44 -04:00
|
|
|
s.add_development_dependency('rspec', '~>1.3.1')
|
|
|
|
s.add_development_dependency('shindo', '~>0.3.4')
|
2011-08-14 10:25:52 -04:00
|
|
|
s.add_development_dependency('virtualbox', '~>0.9.1')
|
2011-08-31 16:52:53 -04:00
|
|
|
# s.add_development_dependency('ruby-libvirt','~>0.4.0')
|
2010-04-20 23:23:24 -04:00
|
|
|
|
2010-12-21 14:27:37 -05:00
|
|
|
s.files = `git ls-files`.split("\n")
|
|
|
|
s.test_files = `git ls-files -- {spec,tests}/*`.split("\n")
|
2010-04-20 23:23:24 -04:00
|
|
|
end
|