forked from Sutto/barista
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
29 lines (26 loc) · 908 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'rubygems'
require 'rake'
require 'lib/barista/version'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "barista"
gem.summary = %Q{Simple, transparent coffeescript integration for Rails and Rack applications.}
gem.description = File.read(File.expand_path('DESCRIPTION', File.dirname(__FILE__)))
gem.email = "[email protected]"
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 = Barista::Version::STRING
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "barista #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end