-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathRakefile
More file actions
19 lines (17 loc) · 782 Bytes
/
Rakefile
File metadata and controls
19 lines (17 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "google-authsub"
gemspec.summary = "A ruby implementation of Google Authentication for Web Applications API"
gemspec.description = "GoogleAuthSub provides the Google Authentications for Web Applications API."
gemspec.email = "jstorimer@gmail.com"
gemspec.homepage = "http://github.com/jstorimer/google-authsub"
gemspec.authors = ["Stuart Coyle", "Jesse Storimer"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }