Sha256: 3223bc5b81699d79a57eb8b89ef6fcee46486dfeaf1f43ed4a80b0bd60e7803b

Contents?: true

Size: 936 Bytes

Versions: 3

Compression:

Stored size: 936 Bytes

Contents

# frozen_string_literal: true

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "hanami/plugin/version"

Gem::Specification.new do |spec|
  spec.name          = "hanami-plugin"
  spec.version       = Hanami::Plugin::VERSION
  spec.authors       = ["Luca Guidi"]
  spec.email         = ["me@lucaguidi.com"]

  spec.summary       = "Hanami Plugin"
  spec.description   = "Extend Hanami with super powers"
  spec.homepage      = "http://hanamirb.org"

  spec.metadata["allowed_push_host"] = "http://fakegemserver.hanamirb.org"

  spec.files = `git ls-files -z`.split("\x0").reject do |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", "~> 1.15"
  spec.add_development_dependency "rake", "~> 10.0"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hanami-2.0.0.beta2 spec/support/fixtures/hanami-plugin/hanami-plugin.gemspec
hanami-2.0.0.beta1.1 spec/support/fixtures/hanami-plugin/hanami-plugin.gemspec
hanami-2.0.0.beta1 spec/support/fixtures/hanami-plugin/hanami-plugin.gemspec