ostatus2.gemspec 902 B

1234567891011121314151617181920212223242526
  1. # coding: utf-8
  2. lib = File.expand_path('../lib', __FILE__)
  3. $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
  4. require 'ostatus2/version'
  5. Gem::Specification.new do |spec|
  6. spec.name = "ostatus2"
  7. spec.version = OStatus2::VERSION
  8. spec.authors = ["Eugen Rochko"]
  9. spec.email = ["eugen@zeonfederated.com"]
  10. spec.summary = "Toolset for interacting with the OStatus2 suite of protocols"
  11. spec.description = "Toolset for interacting with the OStatus2 suite of protocols"
  12. spec.homepage = "https://github.com/tootsuite/ostatus2"
  13. spec.license = "MIT"
  14. spec.files = `git ls-files lib LICENSE README.md`.split($RS)
  15. spec.require_paths = ["lib"]
  16. spec.add_dependency('http', '~> 3.0')
  17. spec.add_dependency('addressable', '~> 2.5')
  18. spec.add_dependency('nokogiri', '~> 1.8')
  19. spec.add_development_dependency 'bundler', '~> 1.16'
  20. end