Sha256: 8d7dc820ccd98138504692e950c8c786c52f890a2f7dd39a3de533f94c120a3c

Contents?: true

Size: 950 Bytes

Versions: 5

Compression:

Stored size: 950 Bytes

Contents

require 'rubygems'
require 'rake/gempackagetask'
require 'rake/testtask'
require 'rake/rdoctask'

# read the contents of the gemspec, eval it, and assign it to 'spec'
# this lets us maintain all gemspec info in one place.  Nice and DRY.
spec = eval(IO.read("amazon-ec2.gemspec"))

Rake::GemPackageTask.new(spec) do |pkg|
  pkg.gem_spec = spec
end

desc "Package and then install the gem locally"
task :install => [:package] do
  sh %{sudo gem install pkg/#{GEM}-#{VER}}
end

desc "Package and then install the gem locally omitting documentation"
task :install_nodoc => [:package] do
  sh %{sudo gem install --no-ri --no-rdoc pkg/#{GEM}-#{VER}}
end

Rake::TestTask.new do |t|
  t.libs << "test"
  t.test_files = FileList['test/test*.rb']
  t.verbose = true
end

Rake::RDocTask.new do |rd|
  rd.main = "README.rdoc"
  rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
  rd.rdoc_dir = 'doc'
  rd.options = spec.rdoc_options
end

task :default => :test

Version data entries

5 entries across 5 versions & 4 rubygems

Version Path
grempe-amazon-ec2-0.3.7 Rakefile
grempe-amazon-ec2-0.3.8 Rakefile
kunley-amazon-ec2-0.3.8 Rakefile
rsanheim-amazon-ec2-0.3.6.2 Rakefile
amazon-ec2-0.3.8 Rakefile