pizzasql.gemspec 625 B

1234567891011121314151617
  1. Gem::Specification.new do |spec|
  2. spec.name = "pizzasql"
  3. spec.version = "0.1.0"
  4. spec.authors = ["PizzaSQL"]
  5. spec.email = ["hello@pizzasql.com"]
  6. spec.summary = "Ruby client for PizzaSQL"
  7. spec.description = "A simple, lightweight client library for PizzaSQL - a SQL database with HTTP API"
  8. spec.homepage = "https://github.com/pizzasql/pizzasql"
  9. spec.license = "MIT"
  10. spec.required_ruby_version = ">= 2.7.0"
  11. spec.files = Dir["lib/**/*", "README.md", "LICENSE"]
  12. spec.require_paths = ["lib"]
  13. # No external dependencies - uses only Ruby standard library
  14. end