Sha256: ea6b45a2ff47ebd49ad592c7f1d10d86ba588884152739cc437b55c068093d04
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path('../lib', __FILE__) require 'ramparts/version' Gem::Specification.new do |s| s.name = 'ramparts' s.version = Ramparts::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Brent Scheibelhut', 'CareGuide'] s.email = ['brent.scheibelhut@careguide.com', 'info@careguide.com'] s.homepage = 'https://github.com/CareGuide/ramparts' s.license = 'MIT' s.summary = %q{Parses blocks of text to find phone numbers (including phonetic numbers), emails, and bad url} s.description = %q{Parses blocks of text to find phone numbers (including phonetic numbers), emails, and bad url. Useful for finding scammers who tend to try to post their phone number in messages.} s.add_development_dependency 'rspec', '~> 2.5', '>= 2.5.0' s.add_development_dependency 'rubocop', '~>0.51.0' s.add_development_dependency 'simplecov', '~>0.15.1' 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'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ramparts-0.3.0 | ramparts.gemspec |