Sha256: c1d5f6abcc065329264a2c1d30cc6e0593c33c67f00ba87be7f39931e06caa95
Contents?: true
Size: 940 Bytes
Versions: 1
Compression:
Stored size: 940 Bytes
Contents
require 'rubygems' require 'rubygems/specification' require 'date' require 'rspec/core/rake_task' GEM = "dialable" GEM_VERSION = "0.5.0" AUTHOR = "Chris Horn" EMAIL = "chorn@chorn.com" HOMEPAGE = "http://github.com/chorn/dialable" SUMMARY = "A gem that provides parsing and output of phone numbers according to NANPA standards." spec = Gem::Specification.new do |s| s.name = GEM s.version = GEM_VERSION s.platform = Gem::Platform::RUBY s.has_rdoc = true s.extra_rdoc_files = ["README", "LICENSE", 'TODO'] s.summary = SUMMARY s.description = s.summary s.author = AUTHOR s.email = EMAIL s.homepage = HOMEPAGE s.require_path = 'lib' s.autorequire = GEM s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec,support,data}/**/*") end task :default => :spec RSpec::Core::RakeTask.new(:spec) desc "install the gem locally" task :install => [:package] do sh %{gem install pkg/#{GEM}-#{GEM_VERSION}} end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dialable-0.5.0 | Rakefile |