Sha256: 271af3eaaec08d8f7371691d9095c00cd8ae2afacbf3cf46f15f92e8834f07cb

Contents?: true

Size: 1.5 KB

Versions: 4

Compression:

Stored size: 1.5 KB

Contents

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "gosu_more_drawables/version"

Gem::Specification.new do |spec|
  spec.name          = "gosu_more_drawables"
  spec.version       = GosuMoreDrawables::VERSION
  spec.authors       = ["Cyberarm"]
  spec.email         = ["matthewlikesrobots@gmail.com"]

  spec.summary       = %q{Adds circles and arcs to Gosu}
  spec.description   = %q{Adds Gosu.draw_circle and Gosu.draw_arc for Gosu}
  spec.homepage      = "https://github.com/cyberarm/gosu_more_drawables"
  spec.license       = "MIT"

  spec.metadata["allowed_push_host"] = "https://rubygems.org"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/cyberarm/gosu_more_drawables"
  spec.metadata["documentation_uri"] = "https://rubydoc.info/gems/gosu_more_drawables"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gosu_more_drawables-0.3.0 gosu_more_drawables.gemspec
gosu_more_drawables-0.2.3 gosu_more_drawables.gemspec
gosu_more_drawables-0.2.2 gosu_more_drawables.gemspec
gosu_more_drawables-0.2.1 gosu_more_drawables.gemspec