Skip to content

Commit

Permalink
Updated readme; gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias committed Mar 17, 2009
1 parent e46f4b8 commit 2796035
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

== DESCRIPTION:

A gem that provides credit card validation. It is basically a ruby port of Thomas Fuch's (madrobby) javascript credit card validator (http://github.com/madrobby/creditcard_js).
A gem that provides credit card validation. It is basically a ruby port of the javascript credit card validator by Thomas Fuchs (madrobby) (http://github.com/madrobby/creditcard_js).

== SYNOPSIS:

Expand Down
3 changes: 1 addition & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ require File.dirname(__FILE__) + '/lib/credit_card_validator'
# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new('credit_card_validator', CreditCardValidator::VERSION) do |p|
p.developer('FIXME full name', 'FIXME email')
p.developer('Tobias Crawley', 'tcrawley@gmail.com')
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
p.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
p.rubyforge_name = p.name # TODO this is default value
# p.extra_deps = [
# ['activesupport','>= 2.0.2'],
Expand Down
9 changes: 4 additions & 5 deletions credit_card_validator.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ Gem::Specification.new do |s|
s.version = "0.0.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["FIXME full name"]
s.date = %q{2009-03-12}
s.description = %q{A gem that provides credit card validation. It is basically a ruby port of Thomas Fuch's (madrobby) javascript credit card validator (http://github.com/madrobby/creditcard_js).}
s.email = ["FIXME email"]
s.authors = ["Tobias Crawley"]
s.date = %q{2009-03-17}
s.description = %q{A gem that provides credit card validation. It is basically a ruby port of the javascript credit card validator by Thomas Fuchs (madrobby) (http://github.com/madrobby/creditcard_js).}
s.email = ["tcrawley@gmail.com"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.rdoc"]
s.files = ["History.txt", "Manifest.txt", "README.rdoc", "Rakefile", "lib/credit_card_validator.rb", "lib/credit_card_validator/validator.rb", "test/test_credit_card_validator.rb", "test/test_helper.rb"]
s.has_rdoc = true
s.homepage = %q{http://github.com/tobias/credit_card_validator}
s.post_install_message = %q{PostInstall.txt}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{credit_card_validator}
Expand Down

0 comments on commit 2796035

Please sign in to comment.