File: bootstrap_form.gemspec

package info (click to toggle)
ruby-bootstrap-form 5.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 512 kB
  • sloc: ruby: 1,350; makefile: 4
file content (30 lines) | stat: -rw-r--r-- 1,123 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require "bootstrap_form/version"

Gem::Specification.new do |s|
  s.name        = "bootstrap_form"
  s.version     = BootstrapForm::VERSION
  s.authors     = ["Stephen Potenza", "Carlos Lopes"]
  s.email       = ["potenza@gmail.com", "carlos.el.lopes@gmail.com"]
  s.homepage    = "https://github.com/bootstrap-ruby/bootstrap_form"
  s.summary     = "Rails form builder that makes it easy to style forms using " \
                  "Bootstrap 5"
  s.description = "bootstrap_form is a rails form builder that makes it super " \
                  "easy to create beautiful-looking forms using Bootstrap 5"
  s.license     = "MIT"
  s.metadata    = { "rubygems_mfa_required" => "true" }

  s.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test)/|^(demo)/})
  end

  s.bindir        = "exe"
  s.require_paths = ["lib"]

  s.required_ruby_version = ">= 3.0"

  s.add_dependency("actionpack", BootstrapForm::REQUIRED_RAILS_VERSION)
  s.add_dependency("activemodel", BootstrapForm::REQUIRED_RAILS_VERSION)
end