-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathRakefile
More file actions
26 lines (22 loc) · 732 Bytes
/
Rakefile
File metadata and controls
26 lines (22 loc) · 732 Bytes
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
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development)
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.name = "c2dm_on_rails"
gem.summary = "Android Cloud to Device Messaging (push notifications) on Rails"
gem.description = %q{C2DM on Rails is a Ruby on Rails gem that allows you to
easily add Android Cloud to Device Messaging support to your Rails application.
}
gem.homepage = "http://github.com/pimeys/c2dm_on_rails"
gem.authors = ["Julius de Bruijn"]
end
task :default => :spec