Skip to content

Commit

Permalink
Remove cruft from Rakefile and gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
norman committed Apr 28, 2012
1 parent de2fdee commit 9a64daf
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 224 deletions.
26 changes: 19 additions & 7 deletions .yardopts
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
--readme README.md
--markup markdown
--markup-provider maruku
--default-return ""
--title "Haml Documentation"
--query 'object.type != :classvariable'
--query 'object.type != :constant || @api && @api.text == "public"'
--charset utf-8
--readme README.md
--markup markdown
--markup-provider maruku
--template-path yard
--default-return ""
--title "Haml Documentation"
--query 'object.type != :classvariable'
--query 'object.type != :constant || @api && @api.text == "public"'
--exclude lib/haml/template/patch.rb
--exclude lib/haml/template/plugin.rb
--exclude lib/haml/railtie.rb
--exclude lib/haml/helpers/action_view_mods.rb
--exclude lib/haml/helpers/xss_mods.rb
--hide-void-return
--protected
--no-private
--no-highlight
-
FAQ.md
CHANGELOG.md
REFERENCE.md
MIT-LICENSE
File renamed without changes.
File renamed without changes.
File renamed without changes.
215 changes: 20 additions & 195 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,133 +1,27 @@
# ----- Utility Functions -----
require "rake/clean"
require 'rake/testtask'
require 'rubygems/package_task'

CLEAN << %w(pkg doc coverage .yardoc)

def scope(path)
File.join(File.dirname(__FILE__), path)
end

# ----- Benchmarking -----

desc <<END
Benchmark haml against ERb.
TIMES=n sets the number of runs. Defaults to 1000.
END
desc "Benchmark Haml against ERb. TIMES=n sets the number of runs, default is 1000."
task :benchmark do
sh "ruby test/benchmark.rb #{ENV['TIMES']}"
end

# ----- Default: Testing ------

if ENV["RUN_CODE_RUN"] == "true"
task :default => :"test:rails_compatibility"
else
task :default => :test
end

require 'rake/testtask'

Rake::TestTask.new do |t|
t.libs << 'lib'
test_files = FileList[scope('test/**/*_test.rb')]
test_files.exclude(scope('test/rails/*'))
test_files.exclude(scope('test/plugins/*'))
test_files.exclude(scope('test/haml-spec/*'))
t.test_files = test_files
t.test_files = Dir["test/**/*_test.rb"].reject {|x| x =~ /haml-spec/}
t.verbose = true
end
Rake::Task[:test].send(:add_comment, <<END)
To run with an alternate version of Rails, make test/rails a symlink to that version.
END

# ----- Packaging -----

# Don't use Rake::GemPackageTast because we want prerequisites to run
# before we load the gemspec.
desc "Build all the packages."
task :package => [:revision_file, :submodules, :permissions] do
version = get_version
File.open(scope('VERSION'), 'w') {|f| f.puts(version)}
load scope('haml.gemspec')
Gem::Builder.new(HAML_GEMSPEC).build
sh %{git checkout VERSION}

pkg = "#{HAML_GEMSPEC.name}-#{HAML_GEMSPEC.version}"
mkdir_p "pkg"
verbose(true) {mv "#{pkg}.gem", "pkg/#{pkg}.gem"}

sh %{rm -f pkg/#{pkg}.tar.gz}
verbose(false) {HAML_GEMSPEC.files.each {|f| sh %{tar rf pkg/#{pkg}.tar #{f}}}}
sh %{gzip pkg/#{pkg}.tar}
end

task :permissions do
sh %{chmod -R a+rx bin}
sh %{chmod -R a+r .}
require 'shellwords'
Dir.glob('test/**/*_test.rb') do |file|
next if file =~ %r{^test/haml-spec/}
sh %{chmod a+rx #{file}}
end
end

task :revision_file do
require scope('lib/haml')

release = Rake.application.top_level_tasks.include?('release') || File.exist?(scope('EDGE_GEM_VERSION'))
if Haml.version[:rev] && !release
File.open(scope('REVISION'), 'w') { |f| f.puts Haml.version[:rev] }
elsif release
File.open(scope('REVISION'), 'w') { |f| f.puts "(release)" }
else
File.open(scope('REVISION'), 'w') { |f| f.puts "(unknown)" }
end
end

# We also need to get rid of this file after packaging.
at_exit { File.delete(scope('REVISION')) rescue nil }

desc "Install Haml as a gem. Use SUDO=1 to install with sudo."
task :install => [:package] do
gem = RUBY_PLATFORM =~ /java/ ? 'jgem' : 'gem'
sh %{#{'sudo ' if ENV["SUDO"]}#{gem} install --no-ri pkg/haml-#{get_version}}
end

desc "Release a new Haml package to Rubyforge."
task :release => [:check_release, :package] do
name = File.read(scope("VERSION_NAME")).strip
version = File.read(scope("VERSION")).strip
sh %{rubyforge add_release haml haml "#{name} (v#{version})" pkg/haml-#{version}.gem}
sh %{rubyforge add_file haml haml "#{name} (v#{version})" pkg/haml-#{version}.tar.gz}
sh %{gem push pkg/haml-#{version}.gem}
end


# Ensures that the VERSION file has been updated for a new release.
task :check_release do
version = File.read(scope("VERSION")).strip
raise "There have been changes since current version (#{version})" if changed_since?(version)
raise "VERSION_NAME must not be 'Bleeding Edge'" if File.read(scope("VERSION_NAME")) == "Bleeding Edge"
end

# Reads a password from the command line.
#
# @param name [String] The prompt to use to read the password
def read_password(prompt)
require 'readline'
system "stty -echo"
Readline.readline("#{prompt}: ").strip
ensure
system "stty echo"
puts
end

# Returns whether or not the repository, or specific files,
# has/have changed since a given revision.
#
# @param rev [String] The revision to check against
# @param files [Array<String>] The files to check.
# If this is empty, checks the entire repository
def changed_since?(rev, *files)
IO.popen("git diff --exit-code #{rev} #{files.join(' ')}") {}
return !$?.success?
gemspec = File.expand_path("../haml.gemspec", __FILE__)
if File.exist? gemspec
Gem::PackageTask.new(eval(File.read(gemspec))) { |pkg| }
end

task :submodules do
Expand All @@ -137,95 +31,26 @@ task :submodules do
end
end

task :release_edge do
ensure_git_cleanup do
puts "#{'=' * 50} Running rake release_edge"

sh %{git checkout master}
sh %{git reset --hard origin/master}
sh %{rake package}
version = get_version
sh %{rubyforge add_release haml haml "Bleeding Edge (v#{version})" pkg/haml-#{version}.gem}
sh %{gem push pkg/haml-#{version}.gem}
end
end

# Get the version string. If this is being installed from Git,
# this includes the proper prerelease version.
def get_version
written_version = File.read(scope('VERSION').strip)
return written_version unless File.exist?(scope('.git'))

# Get the current master branch version
version = written_version.split('.')
version.map! {|n| n =~ /^[0-9]+$/ ? n.to_i : n}
return written_version unless version.size == 5 && version[3] == "alpha" # prerelease

return written_version if (commit_count = `git log --pretty=oneline --first-parent stable.. | wc -l`).empty?
version[4] = commit_count.strip
version.join('.')
end

task :watch_for_update do
sh %{ruby extra/update_watch.rb}
end

# ----- Documentation -----

task :rdoc do
puts '=' * 100, <<END, '=' * 100
Haml uses the YARD documentation system (http://github.com/lsegal/yard).
Install the yard gem and then run "rake doc".
END
end

begin
require 'yard'

namespace :doc do
desc "List all undocumented methods and classes."
task :undocumented do
opts = ENV["YARD_OPTS"] || ""
ENV["YARD_OPTS"] = opts.dup + <<OPTS
--list --query "
object.docstring.blank? &&
!(object.type == :method && object.is_alias?)"
OPTS
Rake::Task['yard'].execute
command = 'yard --list --query '
command << '"object.docstring.blank? && '
command << '!(object.type == :method && object.is_alias?)"'
sh command
end
end

YARD::Rake::YardocTask.new do |t|
t.files = FileList.new(scope('lib/**/*.rb')) do |list|
list.exclude('lib/haml/template/patch.rb')
list.exclude('lib/haml/template/plugin.rb')
list.exclude('lib/haml/railtie.rb')
list.exclude('lib/haml/helpers/action_view_mods.rb')
list.exclude('lib/haml/helpers/xss_mods.rb')
end.to_a
t.options << '--incremental' if Rake.application.top_level_tasks.include?('redoc')
t.options += FileList.new(scope('yard/*.rb')).to_a.map {|f| ['-e', f]}.flatten
files = FileList.new(scope('doc-src/*')).to_a.sort_by {|s| s.size} + %w[MIT-LICENSE VERSION]
t.options << '--files' << files.join(',')
t.options << '--template-path' << scope('yard')
t.options << '--title' << ENV["YARD_TITLE"] if ENV["YARD_TITLE"]

t.before = lambda do
if ENV["YARD_OPTS"]
require 'shellwords'
t.options.concat(Shellwords.shellwords(ENV["YARD_OPTS"]))
end
end
end
Rake::Task['yard'].instance_variable_set('@comment', nil)
desc "Generate documentation"
task(:doc) {sh "yard"}

desc "Generate documentation incrementally"
task(:redoc) {sh "yard -c"}

desc "Generate Documentation"
task :doc => :yard
task :redoc => :yard
rescue LoadError
desc "Generate Documentation"
task :doc => :rdoc
task :yard => :rdoc
end

task :pages do
Expand Down Expand Up @@ -287,7 +112,7 @@ END
Haml::Engine.new(file).def_method(obj, :render)
result = RubyProf.profile { times.times { obj.render } }

RubyProf.const_get("#{(ENV['OUTPUT'] || 'Flat').capitalize}Printer").new(result).print
RubyProf.const_get("#{(ENV['OUTPUT'] || 'Flat').capitalize}Printer").new(result).print
end
rescue LoadError; end

Expand Down
42 changes: 20 additions & 22 deletions haml.gemspec
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
require 'rubygems'
Gem::Specification.new do |spec|
spec.name = 'haml'
spec.summary = "An elegant, structured (X)HTML/XML templating engine."
spec.version = File.read(File.dirname(__FILE__) + '/VERSION').strip
spec.authors = ['Nathan Weizenbaum', 'Hampton Catlin', 'Norman Clarke']
spec.email = ['[email protected]', '[email protected]']

HAML_GEMSPEC = Gem::Specification.new do |spec|
spec.name = 'haml'
spec.summary = "An elegant, structured XHTML/XML templating engine."
spec.version = File.read(File.dirname(__FILE__) + '/VERSION').strip
spec.authors = ['Nathan Weizenbaum', 'Hampton Catlin', 'Norman Clarke']
spec.email = ['[email protected]', '[email protected]']
spec.description = <<-END
Haml (HTML Abstraction Markup Language) is a layer on top of XHTML or XML
that's designed to express the structure of (X)HTML or XML documents in a
non-repetitive, elegant, easy way, using indentation rather than closing
tags and allowing Ruby to be embedded with ease. It was originally
envisioned as a plugin for Ruby on Rails, but it can function as a
stand-alone templating engine.
END
readmes = Dir['*'].reject{ |x| x =~ /(^|[^.a-z])[a-z]+/ || x == "TODO" }
spec.executables = ['haml', 'html2haml']
spec.files = Dir['rails/init.rb', 'lib/**/*', 'bin/*', 'test/**/*',
'extra/**/*', 'Rakefile', 'init.rb', '.yardopts'] + readmes
spec.homepage = 'http://haml-lang.com/'
spec.has_rdoc = false
spec.test_files = Dir["test/**/*_test.rb"].reject {|x| x =~ /haml-spec/}

spec.add_development_dependency 'yard', '>= 0.5.3'
spec.add_development_dependency 'maruku', '>= 0.5.9'
Expand All @@ -22,11 +20,11 @@ HAML_GEMSPEC = Gem::Specification.new do |spec|
spec.add_development_dependency 'rails'
spec.add_development_dependency 'ruby_parser'

readmes = Dir['*'].reject{ |x| x =~ /(^|[^.a-z])[a-z]+/ || x == "TODO" }
spec.executables = ['haml', 'html2haml']
spec.files = Dir['rails/init.rb', 'lib/**/*', 'bin/*', 'test/**/*',
'extra/**/*', 'Rakefile', 'init.rb', '.yardopts'] + readmes
spec.homepage = 'http://haml-lang.com/'
spec.has_rdoc = false
spec.test_files = Dir['test/**/*_test.rb']
spec.description = <<-END
Haml (HTML Abstraction Markup Language) is a layer on top of HTML or XML that's
designed to express the structure of documents in a non-repetitive, elegant, and
easy way by using indentation rather than closing tags and allowing Ruby to be
embedded with ease. It was originally envisioned as a plugin for Ruby on Rails,
but it can function as a stand-alone templating engine.
END
end

0 comments on commit 9a64daf

Please sign in to comment.