forked from bootstrap-ruby/bootstrap_form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bemo_form.gemspec
28 lines (22 loc) · 966 Bytes
/
bemo_form.gemspec
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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "bemo_form/version"
Gem::Specification.new do |s|
s.name = "bemo_form"
s.version = BemoForm::VERSION
s.authors = ["Damiano Giacomello", "Stephen Potenza", "Carlos Lopes"]
s.homepage = "https://github.com/damjack/bemo_form"
s.summary = "Rails form builder that makes it easy to style forms using "\
"Bemo 2"
s.description = "bemo_form is a rails form builder that makes it super "\
"easy to create beautiful-looking forms using Bemo 2"
s.license = "MIT"
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test)/})
end
s.bindir = "exe"
s.require_paths = ["lib"]
s.required_ruby_version = ">= 2.2.2"
s.add_dependency "rails", ">= 5.0"
end