-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathRakefile
More file actions
26 lines (22 loc) · 816 Bytes
/
Copy pathRakefile
File metadata and controls
26 lines (22 loc) · 816 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 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "e164"
gem.summary = %Q{This gem provides e164 parsing and normalization}
gem.description = %Q{The e164 gem can parse and normalize numbers into the e164 format.
It provides extra information on the Country Code and National Destination Codes.
It can be used standalone or mixed into a model.}
gem.email = "hexorx@gmail.com"
gem.homepage = "http://github.com/hexorx/e164"
gem.authors = ["hexorx"]
gem.add_development_dependency "rspec"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task :default => :spec