forked from ledermann/rails-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
20 lines (17 loc) · 900 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new() do |gem|
gem.name = "rails-settings"
gem.summary = "Settings is a plugin that makes managing a table of global key, value pairs easy. Think of it like a global Hash stored in you database, that uses simple ActiveRecord like methods for manipulation. Keep track of any global setting that you dont want to hard code into your rails app. You can store any kind of object. Strings, numbers, arrays, or any object. Ported to Rails 3!"
gem.email = "[email protected]"
gem.homepage = "http://theblackestbox.net"
gem.authors = ["Squeegy","Georg Ledermann","100hz"]
gem.add_dependency "rails", ">= 3.0.0"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
task :default => :release