-
Notifications
You must be signed in to change notification settings - Fork 0
/
bemer-simple_form.gemspec
34 lines (27 loc) · 1.25 KB
/
bemer-simple_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
29
30
31
32
33
34
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bemer/simple_form/version'
Gem::Specification.new do |spec|
spec.name = 'bemer-simple_form'
spec.version = Bemer::SimpleForm::VERSION
spec.author = 'Alexander Grigorev'
spec.email = '[email protected]'
spec.summary = 'Add the BEM methodology to your SimpleForm forms.'
spec.description = 'Add the BEM methodology to your SimpleForm forms.'
spec.license = 'MIT'
spec.require_paths = ['lib']
spec.files = Dir['lib/**/*.rb', 'LICENSE-RU.txt', 'LICENSE.txt']
spec.test_files = Dir['spec/**/*']
spec.extra_rdoc_files = Dir['README.md', 'docs/*.md']
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/vill/bemer-simple_form/issues',
'homepage_uri' => 'https://github.com/vill/bemer-simple_form',
'source_code_uri' => 'https://github.com/vill/bemer-simple_form'
}
spec.required_ruby_version = '>= 2.3.0'
spec.required_rubygems_version = '>= 2.2.0'
spec.add_runtime_dependency 'activesupport'
spec.add_runtime_dependency 'bemer', '>= 0.1.0', '< 1.0'
spec.add_runtime_dependency 'simple_form'
end