Sha256: 768ca922401cbb317ee017ffb599ccea2ee6ab1156b86615d817734248c04baf
Contents?: true
Size: 686 Bytes
Versions: 5
Compression:
Stored size: 686 Bytes
Contents
begin; require 'rubygems'; rescue LoadError; end require 'rake' require 'rake/clean' require 'date' require 'time' # All the bacon specifications PROJECT_SPECS = Dir.glob(File.expand_path('../spec/ramaze/**/*.rb', __FILE__)) # Load the gemspec so it's details can be used in all the Rake tasks GEMSPEC = Gem::Specification::load( File.expand_path('../ramaze.gemspec', __FILE__) ) CLEAN.include %w[ **/.*.sw? *.gem .config **/*~ **/{data.db,cache.yaml} *.yaml pkg rdoc ydoc *coverage* ] Dir.glob(File.expand_path('../tasks/*.rake', __FILE__)).each do |f| import(f) end # Set the default task to running all the bacon specifications task :default => [:bacon]
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
ramaze-2012.04.14 | Rakefile |
ramaze-2012.03.07 | Rakefile |
ramaze-2011.12.28 | Rakefile |
ramaze-2011.10.23 | Rakefile |
ramaze-2011.07.25 | Rakefile |