Sha256: 8e3954eef963b5fd335352962d74fb400ccb18bd12997199f686935693de70bf
Contents?: true
Size: 922 Bytes
Versions: 4
Compression:
Stored size: 922 Bytes
Contents
require 'rubygems' require 'rake' require 'lib/barista/version' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "barista" gem.summary = %Q{Transparent coffeescript support for rails 3.} gem.description = %Q{Automatically compiles app/scripts/*.coffee to javascript for rails awesomesauce.} gem.email = "sutto@sutto.net" gem.homepage = "http://github.com/Sutto/barista" gem.version = Barista::Version::STRING gem.authors = ["Darcy Laycock"] end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "barista #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
barista-0.4.3 | Rakefile |
barista-0.4.2 | Rakefile |
barista-0.4.1 | Rakefile |
barista-0.4.0 | Rakefile |