Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
macedo committed Oct 1, 2011
0 parents commit 5895356
Show file tree
Hide file tree
Showing 9 changed files with 86 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
@@ -0,0 +1,6 @@
*.gem
.bundle
Gemfile.lock
pkg/*
.rvmrc

4 changes: 4 additions & 0 deletions .gitignore~
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in usps_standardizer.gemspec
gemspec
1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require "bundler/gem_tasks"
5 changes: 5 additions & 0 deletions lib/usps_standardizer.rb
@@ -0,0 +1,5 @@
require "usps_standardizer/version"

module UspsStandardizer
# Your code goes here...
end
9 changes: 9 additions & 0 deletions lib/usps_standardizer/version.rb
@@ -0,0 +1,9 @@
module UspsStandardizer
module Version
MAJOR = 0
MINOR = 1
PATH = 0
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
end
end

8 changes: 8 additions & 0 deletions lib/usps_standardizer/version.rb~
@@ -0,0 +1,8 @@
module UspsStandardizer
module Version
MAJOR = 0
MINOR = 1
PATH = 0
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
end

24 changes: 24 additions & 0 deletions usps_standardizer.gemspec
@@ -0,0 +1,24 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "usps_standardizer/version"

Gem::Specification.new do |s|
s.name = "usps_standardizer"
s.version = UspsStandardizer::VERSION::STRING
s.authors = ["Rafael Macedo"]
s.email = ["macedo.rafaelfernandes@gmail.com"]
s.homepage = "http://github.com/rafaelmacedo/usps_standardizer"
s.summary = %q{TODO: Write a gem summary}
s.description = s.summary


s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
end

25 changes: 25 additions & 0 deletions usps_standardizer.gemspec~
@@ -0,0 +1,25 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "usps_standardizer/version"

Gem::Specification.new do |s|
s.name = "usps_standardizer"
s.version = UspsStandardizer::VERSION::STRING
s.authors = ["Rafael Macedo"]
s.email = ["macedo.rafaelfernandes@gmail.com"]
s.homepage = "http://github.com/rafaelmacedo/usps_standardizer"
s.summary = %q{TODO: Write a gem summary}
s.description = %q{TODO: Write a gem description}

s.rubyforge_project = "usps_standardizer"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
end

0 comments on commit 5895356

Please sign in to comment.