engine/Rakefile

43 lines
1.3 KiB
Ruby
Raw Normal View History

2010-03-29 22:01:47 +00:00
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
Rails::Application.load_tasks
2010-06-03 15:32:40 +00:00
begin
require "jeweler"
Jeweler::Tasks.new do |gem|
gem.name = "locomotive_cms"
gem.summary = "Locomotive cms engine"
gem.authors = ['Didier Lafforgue']
gem.email = ['didier@nocoffee.fr']
gem.date = Date.today
gem.description = "a brand new CMS system with super sexy UI and cool features"
gem.homepage = %q{http://github.com/did/locomotive}
gem.files = Dir[
"Gemfile",
"{app}/**/*",
"{config}/**/*",
"{lib}/**/*",
2010-06-03 15:32:40 +00:00
"{public}/stylesheets/**/*", "{public}/javascripts/**/*", "{public}/images/**/*",
"{vendor}/**/*"]
# other fields that would normally go in your gemspec
# like authors, email and has_rdoc can also be included here
bundle = Bundler::Definition.from_gemfile('Gemfile')
bundle.dependencies.each do |dep|
if dep.groups.include?(:default)
gem.add_dependency(dep.name, dep.requirement.to_s)
end
end
end
Jeweler::GemcutterTasks.new
2010-06-03 15:32:40 +00:00
rescue
puts "Jeweler or one of its dependencies is not installed."
end