/rubyfish.gemspec

https://github.com/gthole/rubyfish · Unknown · 30 lines · 23 code · 7 blank · 0 comment · 0 complexity · 5d378ba322d16e5f2b60b9b0917912be MD5 · raw file

  1. require File.expand_path("../lib/rubyfish/version", __FILE__)
  2. Gem::Specification.new do |s|
  3. s.name = "rubyfish"
  4. s.version = RubyFish::VERSION
  5. s.platform = Gem::Platform::RUBY
  6. s.authors = ["Yury Korolev"]
  7. s.email = ["yury.korolev@gmail.com"]
  8. s.homepage = "http://github.com/anjlab/rubyfish"
  9. s.summary = "Library for doing approximate and phonetic matching of string"
  10. s.description = "Port of http://github.com/sunlightlabs/jellyfish"
  11. s.required_rubygems_version = ">= 1.3.6"
  12. # lol - required for validation
  13. s.rubyforge_project = "rubyfish"
  14. # If you have other dependencies, add them here
  15. # s.add_dependency "another", "~> 1.2"
  16. # If you need to check in files that aren't .rb files, add them here
  17. s.files = Dir["{lib}/**/*.rb", "bin/*", "LICENSE", "*.md"]
  18. s.require_path = 'lib'
  19. # If you need an executable, add it here
  20. # s.executables = ["rubyfish"]
  21. # If you have C extensions, uncomment this line
  22. # s.extensions = "ext/extconf.rb"
  23. end