Sha256: 213354077df27ebda06b2e995e1d1de3bb2219cc36ec4620156edb4d1895fafa

Contents?: true

Size: 921 Bytes

Versions: 9

Compression:

Stored size: 921 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

9 entries across 9 versions & 1 rubygems

Version Path
barista-0.3.0 Rakefile
barista-0.2.1 Rakefile
barista-0.2.0 Rakefile
barista-0.1.5 Rakefile
barista-0.1.4 Rakefile
barista-0.1.3 Rakefile
barista-0.1.2 Rakefile
barista-0.1.1 Rakefile
barista-0.1.0 Rakefile