middleman/Rakefile

119 lines
3.2 KiB
Ruby
Raw Normal View History

require 'rubygems' unless defined?(Gem)
# require 'fileutils' unless defined?(FileUtils)
require 'rake'
2011-12-30 04:52:00 +01:00
require File.expand_path('../middleman-core/lib/middleman-core/version.rb', __FILE__)
ROOT = File.expand_path(File.dirname(__FILE__))
GEM_NAME = 'middleman'
2014-03-11 12:07:55 +01:00
middleman_gems = %w(middleman-core middleman-templates middleman-cli middleman)
2011-12-30 04:52:00 +01:00
GEM_PATHS = middleman_gems.freeze
def sh_rake(command)
sh "#{Gem.ruby} -S rake #{command}", :verbose => true
end
def say(text, color=:magenta)
n = { :bold => 1, :red => 31, :green => 32, :yellow => 33, :blue => 34, :magenta => 35 }.fetch(color, 0)
puts "\e[%dm%s\e[0m" % [n, text]
end
2013-10-20 00:59:12 +02:00
2011-12-30 04:52:00 +01:00
desc "Run 'install' for all projects"
task :install do
GEM_PATHS.each do |dir|
Dir.chdir(dir) { sh_rake(:install) }
end
end
desc 'Clean pkg and other stuff'
2011-12-30 04:52:00 +01:00
task :clean do
GEM_PATHS.each do |g|
%w[tmp pkg coverage].each { |dir| sh 'rm -rf %s' % File.join(g, dir) }
end
end
desc 'Clean pkg and other stuff'
2011-12-30 04:52:00 +01:00
task :uninstall do
sh 'gem search --no-version middleman | grep middleman | xargs gem uninstall -a'
2011-12-30 04:52:00 +01:00
end
desc 'Displays the current version'
2011-12-30 04:52:00 +01:00
task :version do
say "Current version: #{Middleman::VERSION}"
end
desc 'Bumps the version number based on given version'
2011-12-30 04:52:00 +01:00
task :bump, [:version] do |t, args|
raise 'Please specify version=x.x.x !' unless args.version
2011-12-30 04:52:00 +01:00
version_path = File.dirname(__FILE__) + '/middleman-core/lib/middleman-core/version.rb'
version_text = File.read(version_path).sub(/VERSION = '[\d\.\w]+'/, "VERSION = '#{args.version}'")
say "Updating Middleman to version #{args.version}"
File.open(version_path, 'w') { |f| f.write version_text }
sh 'git commit -a -m "Bumped version to %s"' % args.version
end
desc 'Executes a fresh install removing all middleman version and then reinstall all gems'
2011-12-30 04:52:00 +01:00
task :fresh => [:uninstall, :install, :clean]
desc 'Pushes repository to GitHub'
2011-12-30 04:52:00 +01:00
task :push do
say 'Pushing to github...'
2011-12-30 04:52:00 +01:00
sh "git tag v#{Middleman::VERSION}"
sh 'git push origin master'
2011-12-30 04:52:00 +01:00
sh "git push origin v#{Middleman::VERSION}"
end
desc 'Release all middleman gems'
2011-12-30 04:52:00 +01:00
task :publish => :push do
say 'Pushing to rubygems...'
2011-12-30 04:52:00 +01:00
GEM_PATHS.each do |dir|
Dir.chdir(dir) { sh_rake('release') }
2011-12-30 04:52:00 +01:00
end
Rake::Task['clean'].invoke
2011-12-30 04:52:00 +01:00
end
desc 'Generate documentation for all middleman gems'
2012-05-02 20:13:06 +02:00
task :doc do
GEM_PATHS.each do |g|
Dir.chdir("#{File.join(ROOT, g)}") { sh "#{Gem.ruby} -S rake yard" }
2012-05-02 20:13:06 +02:00
end
end
desc 'Run tests for all middleman gems'
task :test do
2011-12-30 04:52:00 +01:00
GEM_PATHS.each do |g|
Dir.chdir("#{File.join(ROOT, g)}") { sh "#{Gem.ruby} -S rake test" }
end
end
desc 'Run specs for all middleman gems'
task :spec do
GEM_PATHS.each do |g|
Dir.chdir("#{File.join(ROOT, g)}") { sh "#{Gem.ruby} -S rake spec" }
end
end
2013-05-24 00:59:26 +02:00
begin
require 'cane/rake_task'
desc 'Run cane to check quality metrics'
2013-05-24 00:59:26 +02:00
Cane::RakeTask.new(:quality) do |cane|
cane.no_style = true
cane.no_doc = true
cane.abc_glob = 'middleman*/lib/middleman*/**/*.rb'
end
rescue LoadError
end
begin
require 'rubocop/rake_task'
desc 'Run RuboCop to check code consistency'
Rubocop::RakeTask.new(:rubocop) do |task|
task.fail_on_error = false
2013-05-24 00:59:26 +02:00
end
rescue LoadError
end
desc 'Run tests for all middleman gems'
task :default => :test