Skip to content

Commit

Permalink
+ README, + gem, + Rakefile, + gemspec, + setup
Browse files Browse the repository at this point in the history
  • Loading branch information
floere committed Sep 5, 2008
1 parent c8c60f8 commit 31085d7
Show file tree
Hide file tree
Showing 9 changed files with 467 additions and 377 deletions.
Empty file added README
Empty file.
21 changes: 21 additions & 0 deletions Rakefile
@@ -0,0 +1,21 @@
require 'rake/gempackagetask'
spec = Gem::Specification.new do |s|
s.name = 'E164'
s.version = '0.0.1'
s.author = 'Florian Hanke'
s.email = 'florian.hanke+e164@gmail.com'
s.homepage = 'florianhanke.blogspot.com'
s.platform = Gem::Platform::RUBY
s.summary = 'E164 Number Splitting and Formatting'
s.files = Dir["lib/**/*"]
s.require_path = 'lib'
# s.autorequire = "e164"
s.test_files = Dir["spec/**/*spec.rb"]
s.has_rdoc = false
s.extra_rdoc_files = ["README"]
# s.add_dependency("dependency", ">= 0.x.x")
end

Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_tar = true
end
13 changes: 13 additions & 0 deletions init.rb
@@ -0,0 +1,13 @@
require 'rubygems'
require 'active_support'

$:.unshift File.join(File.dirname(__FILE__), 'lib')
$:.unshift File.join(File.dirname(__FILE__), 'lib', 'ndc')

require 'ndc/fixed_size'
require 'ndc/prefix'

require 'ndc/austria'
require 'ndc/germany'

require 'e164'

0 comments on commit 31085d7

Please sign in to comment.