Sha256: cd8a8a9f8543b441329b0d457ad4bea97d7f7df1df960c0e0b4c0409b3a5de5f

Contents?: true

Size: 1.9 KB

Versions: 1

Compression:

Stored size: 1.9 KB

Contents

# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = "devise-bootstrap-form"
  spec.version       = Devise::BootstrapForm::VERSION
  spec.authors       = ["Andrew Fomera", "Larry Reid"]
  spec.email         = ["larry.reid@jadesystems.ca"]

  spec.summary       = "Generates nicer views for Devise that use Bootstrap via the `bootstrap_form` gem."
  spec.description   = <<-DESC
This gem generates Devise views styled with Bootstrap via the `bootstrap_form`
gem. If you plan to use, or are using, `bootstrap_form` in your app, your Devise
forms will be consistent with the rest of your forms.

The generator will detect if you're using `devise_invitable`, and will generate
`bootstrap_form` forms for its views as well.
  DESC
  spec.homepage      = "https://github.com/lcreid/devise-bootstrap-form"
  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) # rubocop:disable Style/GuardClause
    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 { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "bootstrap_form", ">= 4.0.0.alpha1"
  spec.add_dependency "devise"
  spec.add_dependency "rails", ">= 5.0.0"
  spec.add_development_dependency "bundler", "~> 1.12"
  spec.add_development_dependency "chandler"
  spec.add_development_dependency "rake", "~> 10.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
devise-bootstrap-form-0.1.0 devise-bootstrap-form.gemspec