-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
23 lines (19 loc) · 924 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "acts_as_dashboard"
gemspec.summary = %Q{Create dashboards in Rails apps easily.}
gemspec.description = %Q{acts_as_dashboard makes it easy to create dashboards in Rails apps. Very little configuration is required. Read the docs to get started.}
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/nickhoffman/acts_as_dashboard"
gemspec.authors = ["Nick Hoffman"]
gemspec.add_development_dependency "rspec", ">= 1.2.9"
gemspec.add_development_dependency "rspec-rails", ">= 1.3.2"
# 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) is not available. Install it with: gem install jeweler"
end