forked from gravityblast/web-app-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
25 lines (21 loc) · 729 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
require "rubygems"
require "cucumber/rake/task"
require "spec/rake/spectask"
Cucumber::Rake::Task.new
Spec::Rake::SpecTask.new do |t|
t.spec_files = FileList['test/**/*_spec.rb']
end
task :default => [:spec, :cucumber]
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "web-app-theme"
gemspec.summary = "Web app theme generator"
gemspec.description = "Web app theme generator for rails projects"
gemspec.email = "andrea@gravityblast.com"
gemspec.homepage = "http://github.com/pilu/web-app-theme"
gemspec.authors = ["Andrea Franz"]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end