Sha256: ea825644b89233e4dbdc375d921693e26cdf1420319afcfa96589120787ee408

Contents?: true

Size: 1.57 KB

Versions: 3

Compression:

Stored size: 1.57 KB

Contents

require_relative "lib/rails_bootstrap_error_renderer/version"

Gem::Specification.new do |spec|
  spec.name = "rails_bootstrap_error_renderer"
  spec.version = RailsBootstrapErrorRenderer::VERSION
  spec.authors = ["Jan Sterba"]
  spec.email = ["info@jansterba.com"]

  spec.summary = "Simple renderer to display errors in Bootstrap styled Rails forms."
  spec.homepage = "https://github.com/honzasterba/rails_bootstrap_error_renderer"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/honzasterba/rails_bootstrap_error_renderer"
  spec.metadata["changelog_uri"] = "https://github.com/honzasterba/rails_bootstrap_error_renderer/CHANGELOG.md"

  # 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(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  # Uncomment to register a new dependency of your gem
  spec.add_dependency "nokogiri"
  spec.add_dependency "activesupport"

  spec.add_development_dependency "minitest"
  spec.add_development_dependency "mocha"

  # For more information and examples about making a new gem, check out our
  # guide at: https://bundler.io/guides/creating_gem.html
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rails_bootstrap_error_renderer-1.2.0 rails_bootstrap_error_renderer.gemspec
rails_bootstrap_error_renderer-1.1.0 rails_bootstrap_error_renderer.gemspec
rails_bootstrap_error_renderer-1.0.0 rails_bootstrap_error_renderer.gemspec