forked from af83/rails3_plugin_toolbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
executable file
·21 lines (19 loc) · 939 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "r3_plugin_toolbox"
gem.summary = %Q{Toolbox to facilitate Rails 3 plugin development}
gem.description = %Q{Provides a more intuitive DSL for Rails 3 plugin configuration and a specialized RSpec 2 matcher. Makes it much easier to develop Rails 3 plugins!}
gem.email = "kmandrup@gmail.com"
gem.homepage = "http://github.com/kristianmandrup/rails3_plugin_toolbox"
gem.authors = ["Kristian Mandrup"]
gem.add_development_dependency "rspec", ">= 2.0.0"
gem.add_dependency "rails", "~> 3.0"
gem.add_dependency "require_all", "~> 1.2.0"
gem.add_dependency "sugar-high", "~> 0.3.0"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end