Sha256: 76274b3c7698fc0d6063db3631dc714d38220fe668933945bf64f5a530ba465e

Contents?: true

Size: 1.65 KB

Versions: 24

Compression:

Stored size: 1.65 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "cloudster"
  gem.homepage = "http://github.com/emilsoman/cloudster"
  gem.license = "MIT"
  gem.summary = %Q{Cloudster gem - a Ruby interface for provisioning your Amazon Cloud.}
  gem.description = %Q{Cloudster is a Ruby gem that was born to cut the learning curve involved 
    in writing your own CloudFormation templates. If you don't know what a CloudFormation template is, 
    but know about the AWS Cloud offerings, you can still use cloudster to provision your stack. 
    Still in infancy , cloudster can create a very basic stack like a breeze. All kinds of contribution welcome !}
  gem.email = "emil.soman@gmail.com"
  gem.authors = ["Emil Soman"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "cloudster #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
cloudster-2.20.0 Rakefile
cloudster-2.19.7 Rakefile
cloudster-2.19.6 Rakefile
cloudster-2.19.5 Rakefile
cloudster-2.19.4 Rakefile
cloudster-2.19.3 Rakefile
cloudster-2.19.2 Rakefile
cloudster-2.19.1 Rakefile
cloudster-2.19.0 Rakefile
cloudster-2.18.0 Rakefile
cloudster-2.17.0 Rakefile
cloudster-2.16.0 Rakefile
cloudster-2.15.0 Rakefile
cloudster-2.14.1 Rakefile
cloudster-2.14.0 Rakefile
cloudster-2.13.1 Rakefile
cloudster-2.13.0 Rakefile
cloudster-2.12.0 Rakefile
cloudster-2.11.0 Rakefile
cloudster-2.10.0 Rakefile