Sha256: 26140dffab47238b52118809e80b9bdcc62276bf40a89bf6c11339f8a413d9ab
Contents?: true
Size: 1.29 KB
Versions: 3
Compression:
Stored size: 1.29 KB
Contents
# -*- ruby -*- require 'bundler/gem_tasks' require 'bundler/setup' task :default => [:spec, :features] task :gem => :build require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |t| # t.ruby_opts = "-w -r./spec/capture_warnings" end require 'cucumber' require 'cucumber/rake/task' Cucumber::Rake::Task.new(:features) do |t| t.cucumber_opts = %w{--tags ~@skip_jruby} if defined?(JRUBY_VERSION) end Cucumber::Rake::Task.new(:wip) do |t| t.cucumber_opts = %w{-p wip -q} end begin require 'yard' YARD::Rake::YardocTask.new do |t| t.files = ['lib/**/*.rb'] end rescue LoadError STDERR.puts "\nCould not require() YARD! Install with 'gem install yard' to get the 'yardoc' task\n\n" end task :stats do system 'doc/cloc-1.55.pl . --exclude-dir=.git,vendor,coverage,doc' end task :encodeify do Dir['{bin,features,lib,spec}/**/*.rb'].each do |filename| File.open filename do |file| first_line = file.first if first_line == "# encoding: utf-8\n" puts "#{filename} is utf-8" else puts "Making #{filename} utf-8..." File.unlink filename File.open filename, "w" do |new_file| new_file.write "# encoding: utf-8\n\n" new_file.write first_line new_file.write file.read end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
adhearsion-2.6.2 | Rakefile |
adhearsion-2.6.1 | Rakefile |
adhearsion-2.6.0 | Rakefile |