2009-05-18 03:13:06 -04:00
|
|
|
require 'rubygems'
|
2010-08-20 13:50:12 -04:00
|
|
|
require 'bundler/setup'
|
2010-04-20 23:23:24 -04:00
|
|
|
require 'date'
|
2011-06-20 18:22:10 -04:00
|
|
|
require File.dirname(__FILE__) + '/lib/fog'
|
2009-05-18 03:13:06 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
#############################################################################
|
|
|
|
#
|
|
|
|
# Helper functions
|
|
|
|
#
|
|
|
|
#############################################################################
|
|
|
|
|
|
|
|
def name
|
|
|
|
@name ||= Dir['*.gemspec'].first.split('.').first
|
2009-05-18 03:13:06 -04:00
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def version
|
|
|
|
line = File.read("lib/#{name}.rb")[/^\s*VERSION\s*=\s*.*/]
|
|
|
|
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
|
2009-05-18 03:13:06 -04:00
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def date
|
|
|
|
Date.today.to_s
|
2009-05-18 03:13:06 -04:00
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def rubyforge_project
|
|
|
|
name
|
|
|
|
end
|
2009-08-10 23:43:31 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def gemspec_file
|
|
|
|
"#{name}.gemspec"
|
|
|
|
end
|
2009-08-10 23:43:31 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def gem_file
|
|
|
|
"#{name}-#{version}.gem"
|
|
|
|
end
|
2009-08-10 23:43:31 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def replace_header(head, header_name)
|
|
|
|
head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"}
|
2009-08-10 23:43:31 -04:00
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
#############################################################################
|
|
|
|
#
|
|
|
|
# Standard tasks
|
|
|
|
#
|
|
|
|
#############################################################################
|
2009-08-10 23:43:31 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
task :default => :test
|
|
|
|
|
2011-02-08 10:12:27 -05:00
|
|
|
namespace :test do
|
|
|
|
task :dynect do
|
2011-06-17 05:38:24 -04:00
|
|
|
[false].each do |mock|
|
2011-02-08 22:02:27 -05:00
|
|
|
sh("export FOG_MOCK=#{mock} && bundle exec shindont tests/dns/requests/dynect")
|
2011-06-17 05:38:24 -04:00
|
|
|
#sh("export FOG_MOCK=#{mock} && bundle exec shindont tests/dns/models/")
|
2011-02-08 22:02:27 -05:00
|
|
|
end
|
2011-02-08 10:12:27 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-01-04 19:57:10 -05:00
|
|
|
task :examples do
|
|
|
|
sh("export FOG_MOCK=false && bundle exec shindont examples")
|
|
|
|
# some don't provide mocks so we'll leave this out for now
|
|
|
|
# sh("export FOG_MOCK=true && bundle exec shindont examples")
|
|
|
|
end
|
|
|
|
|
2011-05-26 17:38:48 -04:00
|
|
|
task :test do # => :examples do
|
2011-06-22 18:23:42 -04:00
|
|
|
Rake::Task[:mock_tests].invoke && Rake::Task[:examples].invoke && Rake::Task[:real_tests].invoke
|
2011-05-26 17:38:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def tests(mocked)
|
|
|
|
Formatador.display_line
|
|
|
|
sh("export FOG_MOCK=#{mocked} && bundle exec spec spec")
|
|
|
|
Formatador.display_line
|
|
|
|
start = Time.now.to_i
|
|
|
|
threads = []
|
|
|
|
Thread.main[:results] = []
|
|
|
|
Fog.providers.each do |provider|
|
|
|
|
threads << Thread.new do
|
|
|
|
Thread.main[:results] << {
|
|
|
|
:provider => provider,
|
|
|
|
:success => sh("export FOG_MOCK=#{mocked} && bundle exec shindont +#{provider.downcase}")
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
threads.each do |thread|
|
|
|
|
thread.join
|
|
|
|
end
|
|
|
|
Formatador.display_table(Thread.main[:results].sort {|x,y| x[:provider] <=> y[:provider]})
|
|
|
|
Formatador.display_line("[bold]FOG_MOCK=#{mocked}[/] tests completed in [bold]#{Time.now.to_i - start}[/] seconds")
|
|
|
|
Formatador.display_line
|
|
|
|
end
|
|
|
|
|
|
|
|
task :mock_tests do
|
|
|
|
tests(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
task :real_tests do
|
|
|
|
tests(false)
|
2010-04-20 23:23:24 -04:00
|
|
|
end
|
|
|
|
|
2011-06-16 19:46:41 -04:00
|
|
|
task :nuke do
|
|
|
|
Fog.providers.each do |provider|
|
2011-09-26 15:04:39 -04:00
|
|
|
next if ['Vmfusion'].include?(provider)
|
2011-06-16 19:46:41 -04:00
|
|
|
begin
|
|
|
|
compute = Fog::Compute.new(:provider => provider)
|
|
|
|
for server in compute.servers
|
|
|
|
Formatador.display_line("[#{provider}] destroying server #{server.identity}")
|
|
|
|
server.destroy rescue nil
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
end
|
2011-09-27 17:04:38 -04:00
|
|
|
begin
|
|
|
|
dns = Fog::DNS.new(:provider => provider)
|
|
|
|
for zone in dns.zones
|
|
|
|
for record in zone.records
|
|
|
|
record.destroy rescue nil
|
|
|
|
end
|
|
|
|
Formatador.display_line("[#{provider}] destroying zone #{zone.identity}")
|
|
|
|
zone.destroy rescue nil
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
end
|
2011-06-16 19:46:41 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
desc "Generate RCov test coverage and open in your browser"
|
|
|
|
task :coverage do
|
|
|
|
require 'rcov'
|
|
|
|
sh "rm -fr coverage"
|
|
|
|
sh "rcov test/test_*.rb"
|
|
|
|
sh "open coverage/index.html"
|
|
|
|
end
|
2009-05-18 03:13:06 -04:00
|
|
|
|
2011-05-26 19:13:59 -04:00
|
|
|
require 'rdoc/task'
|
|
|
|
RDoc::Task.new do |rdoc|
|
2009-05-18 03:13:06 -04:00
|
|
|
rdoc.rdoc_dir = 'rdoc'
|
2010-04-20 23:23:24 -04:00
|
|
|
rdoc.title = "#{name} #{version}"
|
2009-05-18 03:13:06 -04:00
|
|
|
rdoc.rdoc_files.include('README*')
|
|
|
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
desc "Open an irb session preloaded with this library"
|
|
|
|
task :console do
|
|
|
|
sh "irb -rubygems -r ./lib/#{name}.rb"
|
|
|
|
end
|
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
#
|
|
|
|
# Packaging tasks
|
|
|
|
#
|
|
|
|
#############################################################################
|
|
|
|
|
|
|
|
task :release => :build do
|
|
|
|
unless `git branch` =~ /^\* master$/
|
|
|
|
puts "You must be on the master branch to release!"
|
|
|
|
exit!
|
|
|
|
end
|
2010-12-10 16:26:43 -05:00
|
|
|
sh "gem install pkg/#{name}-#{version}.gem"
|
2010-04-20 23:23:24 -04:00
|
|
|
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
|
|
|
sh "git tag v#{version}"
|
|
|
|
sh "git push origin master"
|
2010-04-20 23:28:32 -04:00
|
|
|
sh "git push origin v#{version}"
|
2010-04-20 23:23:24 -04:00
|
|
|
sh "gem push pkg/#{name}-#{version}.gem"
|
2011-05-13 16:06:29 -04:00
|
|
|
Rake::Task[:docs].invoke
|
2010-04-20 23:23:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
task :build => :gemspec do
|
|
|
|
sh "mkdir -p pkg"
|
|
|
|
sh "gem build #{gemspec_file}"
|
|
|
|
sh "mv #{gem_file} pkg"
|
|
|
|
end
|
|
|
|
|
|
|
|
task :gemspec => :validate do
|
|
|
|
# read spec file and split out manifest section
|
|
|
|
spec = File.read(gemspec_file)
|
|
|
|
|
|
|
|
# replace name version and date
|
2010-12-21 14:27:37 -05:00
|
|
|
replace_header(spec, :name)
|
|
|
|
replace_header(spec, :version)
|
|
|
|
replace_header(spec, :date)
|
2010-04-20 23:23:24 -04:00
|
|
|
#comment this out if your rubyforge_project has a different name
|
2010-12-21 14:27:37 -05:00
|
|
|
replace_header(spec, :rubyforge_project)
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
File.open(gemspec_file, 'w') { |io| io.write(spec) }
|
|
|
|
puts "Updated #{gemspec_file}"
|
|
|
|
end
|
|
|
|
|
|
|
|
task :validate do
|
|
|
|
libfiles = Dir['lib/*'] - ["lib/#{name}.rb", "lib/#{name}"]
|
|
|
|
unless libfiles.empty?
|
|
|
|
puts "Directory `lib` should only contain a `#{name}.rb` file and `#{name}` dir."
|
|
|
|
exit!
|
|
|
|
end
|
|
|
|
unless Dir['VERSION*'].empty?
|
|
|
|
puts "A `VERSION` file at root level violates Gem best practices."
|
|
|
|
exit!
|
2009-05-18 03:13:06 -04:00
|
|
|
end
|
|
|
|
end
|
2011-04-02 15:48:11 -04:00
|
|
|
|
2011-05-13 16:48:34 -04:00
|
|
|
task :changelog do
|
|
|
|
timestamp = Time.now.utc.strftime('%m/%d/%Y')
|
|
|
|
sha = `git log | head -1`.split(' ').last
|
|
|
|
changelog = ["#{version} #{timestamp} #{sha}"]
|
|
|
|
changelog << ('=' * changelog[0].length)
|
|
|
|
changelog << ''
|
|
|
|
|
2011-08-09 12:23:42 -04:00
|
|
|
require 'multi_json'
|
2011-09-22 16:47:05 -04:00
|
|
|
github_repo_data = MultiJson.decode(Excon.get('http://github.com/api/v2/json/repos/show/geemus/fog').body)
|
|
|
|
data = github_repo_data['repository'].reject {|key, value| !['forks', 'open_issues', 'watchers'].include?(key)}
|
|
|
|
github_collaborator_data = MultiJson.decode(Excon.get('http://github.com/api/v2/json/repos/show/geemus/fog/collaborators').body)
|
|
|
|
data['collaborators'] = github_collaborator_data['collaborators'].length
|
2011-08-09 12:23:42 -04:00
|
|
|
rubygems_data = MultiJson.decode(Excon.get('https://rubygems.org/api/v1/gems/fog.json').body)
|
|
|
|
data['downloads'] = rubygems_data['downloads']
|
|
|
|
stats = []
|
|
|
|
for key in data.keys.sort
|
|
|
|
stats << "'#{key}' => #{data[key]}"
|
|
|
|
end
|
|
|
|
changelog << "Stats! { #{stats.join(', ')} }"
|
|
|
|
changelog << ''
|
|
|
|
|
2011-05-13 16:48:34 -04:00
|
|
|
last_sha = `cat changelog.txt | head -1`.split(' ').last
|
|
|
|
shortlog = `git shortlog #{last_sha}..HEAD`
|
|
|
|
changes = {}
|
2011-05-26 19:14:52 -04:00
|
|
|
committers = {}
|
2011-05-13 16:48:34 -04:00
|
|
|
for line in shortlog.split("\n")
|
|
|
|
if line =~ /^\S/
|
|
|
|
committer = line.split(' (', 2).first
|
2011-05-26 19:14:52 -04:00
|
|
|
committers[committer] = 0
|
2011-05-13 16:52:36 -04:00
|
|
|
elsif line =~ /^\s*((Merge.*)|(Release.*))?$/
|
|
|
|
# skip empty lines, Merge and Release commits
|
2011-05-13 16:48:34 -04:00
|
|
|
else
|
|
|
|
unless line[-1..-1] == '.'
|
|
|
|
line << '.'
|
|
|
|
end
|
2011-05-26 19:55:13 -04:00
|
|
|
line.lstrip!
|
|
|
|
line.gsub!(/^\[([^\]]*)\] /, '')
|
2011-05-13 16:48:34 -04:00
|
|
|
tag = $1 || 'misc'
|
|
|
|
changes[tag] ||= []
|
|
|
|
changes[tag] << (line << ' thanks ' << committer)
|
2011-05-26 19:14:52 -04:00
|
|
|
committers[committer] += 1
|
2011-05-13 16:48:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-26 19:14:52 -04:00
|
|
|
for committer, commits in committers.to_a.sort {|x,y| y[1] <=> x[1]}
|
2011-05-26 19:55:13 -04:00
|
|
|
if [
|
|
|
|
'Aaron Suggs',
|
2011-08-18 13:09:44 -04:00
|
|
|
'Brian Hartsock',
|
2011-07-25 15:50:38 -04:00
|
|
|
'Christopher Oliver',
|
|
|
|
'Dylan Egan',
|
2011-05-26 19:55:13 -04:00
|
|
|
'geemus',
|
2011-07-25 15:50:38 -04:00
|
|
|
'Henry Addison',
|
2011-06-24 18:09:20 -04:00
|
|
|
'Lincoln Stoll',
|
|
|
|
'Luqman Amjad',
|
2011-05-26 19:55:13 -04:00
|
|
|
'nightshade427',
|
|
|
|
'Wesley Beary'
|
|
|
|
].include?(committer)
|
2011-05-26 19:14:52 -04:00
|
|
|
next
|
|
|
|
end
|
|
|
|
changelog << "MVP! #{committer}"
|
|
|
|
changelog << ''
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
2011-05-13 16:48:34 -04:00
|
|
|
for tag in changes.keys.sort
|
|
|
|
changelog << ('[' << tag << ']')
|
|
|
|
for commit in changes[tag]
|
|
|
|
changelog << (' ' << commit)
|
|
|
|
end
|
|
|
|
changelog << ''
|
|
|
|
end
|
|
|
|
|
2011-05-26 19:55:13 -04:00
|
|
|
old_changelog = File.read('changelog.txt')
|
|
|
|
File.open('changelog.txt', 'w') do |file|
|
|
|
|
file.write(changelog.join("\n"))
|
|
|
|
file.write("\n\n")
|
|
|
|
file.write(old_changelog)
|
|
|
|
end
|
2011-05-13 16:48:34 -04:00
|
|
|
end
|
|
|
|
|
2011-04-02 15:48:11 -04:00
|
|
|
task :docs do
|
2011-08-09 11:56:54 -04:00
|
|
|
Rake::Task[:supported_services_docs].invoke
|
2011-05-27 14:26:16 -04:00
|
|
|
Rake::Task[:upload_fog_io].invoke
|
|
|
|
Rake::Task[:upload_rdoc].invoke
|
|
|
|
|
2011-06-24 18:09:20 -04:00
|
|
|
# connect to storage provider
|
|
|
|
Fog.credential = :geemus
|
|
|
|
storage = Fog::Storage.new(:provider => 'AWS')
|
|
|
|
directory = storage.directories.new(:key => 'fog.io')
|
2011-05-27 14:26:16 -04:00
|
|
|
# write base index with redirect to new version
|
|
|
|
directory.files.create(
|
|
|
|
:body => redirecter('latest'),
|
|
|
|
:content_type => 'text/html',
|
|
|
|
:key => 'index.html',
|
|
|
|
:public => true
|
|
|
|
)
|
|
|
|
|
|
|
|
Formatador.display_line
|
|
|
|
end
|
2011-04-02 15:48:11 -04:00
|
|
|
|
2011-08-09 11:56:54 -04:00
|
|
|
task :supported_services_docs do
|
|
|
|
support, shared = {}, []
|
|
|
|
for key, values in Fog.services
|
|
|
|
unless values.length == 1
|
|
|
|
shared |= [key]
|
|
|
|
values.each do |value|
|
|
|
|
support[value] ||= {}
|
|
|
|
support[value][key] = '+'
|
|
|
|
end
|
|
|
|
else
|
|
|
|
value = values.first
|
|
|
|
support[value] ||= {}
|
|
|
|
support[value][:other] ||= []
|
|
|
|
support[value][:other] << key
|
|
|
|
end
|
|
|
|
end
|
|
|
|
shared.sort! {|x,y| x.to_s <=> y.to_s}
|
|
|
|
columns = [:provider] + shared + [:other]
|
|
|
|
data = []
|
|
|
|
for key in support.keys.sort {|x,y| x.to_s <=> y.to_s}
|
|
|
|
data << { :provider => key }.merge!(support[key])
|
|
|
|
end
|
|
|
|
|
|
|
|
table = ''
|
|
|
|
table << "<table border='1'>\n"
|
|
|
|
|
|
|
|
table << " <tr>"
|
|
|
|
for column in columns
|
|
|
|
table << "<th>#{column}</th>"
|
|
|
|
end
|
|
|
|
table << "</tr>\n"
|
|
|
|
|
|
|
|
for datum in data
|
|
|
|
table << " <tr>"
|
|
|
|
for column in columns
|
|
|
|
if value = datum[column]
|
|
|
|
case value
|
|
|
|
when Array
|
|
|
|
table << "<td>#{value.join(', ')}</td>"
|
|
|
|
when '+'
|
|
|
|
table << "<td style='text-align: center;'>#{value}</td>"
|
|
|
|
else
|
|
|
|
table << "<th>#{value}</th>"
|
|
|
|
end
|
|
|
|
else
|
|
|
|
table << "<td></td>"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
table << "</tr>\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
table << "</table>\n"
|
|
|
|
|
|
|
|
File.open('docs/about/supported_services.markdown', 'w') do |file|
|
|
|
|
file.puts <<-METADATA
|
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: Supported Services
|
|
|
|
---
|
|
|
|
|
|
|
|
METADATA
|
|
|
|
file.puts(table)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-08-09 12:07:53 -04:00
|
|
|
task :upload_fog_io do
|
|
|
|
# connect to storage provider
|
|
|
|
Fog.credential = :geemus
|
|
|
|
storage = Fog::Storage.new(:provider => 'AWS')
|
|
|
|
directory = storage.directories.new(:key => 'fog.io')
|
|
|
|
|
|
|
|
# build the docs locally
|
|
|
|
sh "jekyll docs docs/_site"
|
|
|
|
|
|
|
|
# write web page files to versioned 'folder'
|
|
|
|
for file_path in Dir.glob('docs/_site/**/*')
|
|
|
|
next if File.directory?(file_path)
|
|
|
|
file_name = file_path.gsub('docs/_site/', '')
|
|
|
|
key = '' << version << '/' << file_name
|
|
|
|
Formatador.redisplay(' ' * 128)
|
|
|
|
Formatador.redisplay("Uploading [bold]#{key}[/]")
|
|
|
|
if File.extname(file_name) == '.html'
|
|
|
|
# rewrite links with version
|
|
|
|
body = File.read(file_path)
|
|
|
|
body.gsub!(/vX.Y.Z/, 'v' << version)
|
|
|
|
body.gsub!(/='\//, %{='/} << version << '/')
|
|
|
|
body.gsub!(/="\//, %{="/} << version << '/')
|
|
|
|
content_type = 'text/html'
|
|
|
|
directory.files.create(
|
|
|
|
:body => redirecter(key),
|
|
|
|
:content_type => 'text/html',
|
|
|
|
:key => 'latest/' << file_name,
|
|
|
|
:public => true
|
|
|
|
)
|
|
|
|
else
|
|
|
|
body = File.open(file_path)
|
|
|
|
content_type = nil # leave it up to mime-types
|
|
|
|
end
|
|
|
|
directory.files.create(
|
|
|
|
:body => body,
|
|
|
|
:content_type => content_type,
|
|
|
|
:key => key,
|
|
|
|
:public => true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
Formatador.redisplay(' ' * 128)
|
|
|
|
Formatador.redisplay("Uploaded docs/_site\n")
|
|
|
|
end
|
|
|
|
|
2011-05-27 14:26:16 -04:00
|
|
|
task :upload_rdoc do
|
|
|
|
# connect to storage provider
|
|
|
|
Fog.credential = :geemus
|
|
|
|
storage = Fog::Storage.new(:provider => 'AWS')
|
|
|
|
directory = storage.directories.new(:key => 'fog.io')
|
2011-05-19 20:17:52 -04:00
|
|
|
|
|
|
|
# write rdoc files to versioned 'folder'
|
|
|
|
Rake::Task[:rdoc].invoke
|
|
|
|
for file_path in Dir.glob('rdoc/**/*')
|
|
|
|
next if File.directory?(file_path)
|
|
|
|
file_name = file_path.gsub('rdoc/', '')
|
|
|
|
key = '' << version << '/rdoc/' << file_name
|
|
|
|
Formatador.redisplay(' ' * 128)
|
2011-05-26 17:38:48 -04:00
|
|
|
Formatador.redisplay("Uploading [bold]#{key}[/]")
|
2011-05-19 20:17:52 -04:00
|
|
|
directory.files.create(
|
|
|
|
:body => File.open(file_path),
|
|
|
|
:key => key,
|
|
|
|
:public => true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
Formatador.redisplay(' ' * 128)
|
2011-05-24 19:40:12 -04:00
|
|
|
directory.files.create(
|
|
|
|
:body => redirecter("#{version}/rdoc/index.html"),
|
|
|
|
:content_type => 'text/html',
|
|
|
|
:key => 'latest/rdoc/index.html',
|
|
|
|
:public => true
|
|
|
|
)
|
2011-05-27 14:26:16 -04:00
|
|
|
Formatador.redisplay("Uploaded rdoc\n")
|
2011-05-24 19:40:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def redirecter(path)
|
2011-05-13 17:21:06 -04:00
|
|
|
redirecter = <<-HTML
|
|
|
|
<!doctype html>
|
|
|
|
<head>
|
|
|
|
<title>fog</title>
|
2011-05-24 19:40:12 -04:00
|
|
|
<meta http-equiv="REFRESH" content="0;url=http://fog.io/#{path}">
|
2011-05-13 17:21:06 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
2011-05-24 19:40:12 -04:00
|
|
|
<a href="http://fog.io/#{path}">redirecting to lastest (#{path})</a>
|
2011-05-13 17:21:06 -04:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
HTML
|
2011-06-20 18:22:10 -04:00
|
|
|
end
|