Sha256: ea7e2c3237b4ff7b5b95fea8f8be1ad77fd34403636bf00dc382f2dbe5485593

Contents?: true

Size: 1.72 KB

Versions: 5

Compression:

Stored size: 1.72 KB

Contents

# coding: utf-8
# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = "actionview-component"
  spec.version       = ActionView::Component::VERSION::STRING
  spec.authors       = ["GitHub Open Source"]
  spec.email         = ["opensource+actionview-component@github.com"]

  spec.summary       = %q{View components for Rails}
  spec.description   = %q{View components for Rails, intended for upstreaming in Rails 6.1}
  spec.homepage      = "https://github.com/github/actionview-component"
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata["allowed_push_host"] = "https://rubygems.org"
  else
    raise "RubyGems 2.0 or newer is required to protect against " \
      "public gem pushes."
  end

  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.required_ruby_version = ">= 2.3.0"

  spec.add_development_dependency "bundler", ">= 1.14"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "= 5.1.0"
  spec.add_development_dependency "haml", "~> 5"
  spec.add_development_dependency "slim", "~> 4.0"
  spec.add_development_dependency "rubocop", "= 0.74"
  spec.add_development_dependency "rubocop-github", "~> 0.13.0"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
actionview-component-1.5.3 actionview-component.gemspec
actionview-component-1.5.2 actionview-component.gemspec
actionview-component-1.5.1 actionview-component.gemspec
actionview-component-1.5.0 actionview-component.gemspec
actionview-component-1.4.0 actionview-component.gemspec