Skip to content

Commit

Permalink
Update gemspec with file lists, changes, license, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
joelparkerhenderson committed Jul 8, 2015
1 parent ccb2695 commit b112418
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions sixarm_ruby_email_address_validation.gemspec
Expand Up @@ -3,25 +3,32 @@
Gem::Specification.new do |s|

s.name = "sixarm_ruby_email_address_validation"
s.summary = "SixArm.com » Ruby » Email address validation using RFC 822 pattern match regex regular expressions"
s.version = "2.0.0"
s.summary = "SixArm.com » Ruby » Email address validation"
s.description = "Email address validation using RFC 822 pattern match regex regular expressions"
s.version = "2.0.1"

s.author = "SixArm"
s.email = "sixarm@sixarm.com"
s.homepage = "http://sixarm.com/"
s.signing_key = "/opt/keys/sixarm/sixarm-rsa-4096-x509-20145314-private.pem"
s.licenses = ["BSD", "GPL", "MIT", "PAL", "Various"]

s.signing_key = "/opt/keys/sixarm/sixarm-rsa-4096-x509-20150314-private.pem"
s.cert_chain = ["/opt/keys/sixarm/sixarm-rsa-4096-x509-20150314-public.pem"]

s.platform = Gem::Platform::RUBY
s.require_path = "lib"
s.has_rdoc = true

top_files = [".gemtest", "Rakefile", "README.md", "VERSION"]
lib_files = ["lib/#{s.name}.rb"]
test_files = ["test/#{s.name}_test.rb"]

s.files = top_files + lib_files + test_files
s.test_files = test_files

s.files = [
".gemtest",
"Rakefile",
"README.md",
"VERSION",
"lib/sixarm_ruby_email_address_validation.rb",
]

s.test_files = [
"test/sixarm_ruby_email_address_validation_test.rb"
]

end

0 comments on commit b112418

Please sign in to comment.