-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRakefile
29 lines (27 loc) · 870 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
26
27
28
29
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development, :test)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'jeweler'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "likeable"
gem.homepage = "https://github.com/schneems/Likeable"
gem.license = "MIT"
gem.summary = %Q{Like ruby objects backed by redis}
gem.description = %Q{
Likeable allows you to make your models...well...likeable using redis.
}
gem.email = "richard.schneeman@gmail.com"
gem.authors = ["Schneems"]
gem.add_development_dependency "rspec"
end
Jeweler::RubygemsDotOrgTasks.new
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)