-
Notifications
You must be signed in to change notification settings - Fork 0
/
bemer.gemspec
35 lines (28 loc) · 1.34 KB
/
bemer.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
35
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bemer/version'
Gem::Specification.new do |spec|
spec.name = 'bemer'
spec.version = Bemer::VERSION
spec.author = 'Alexander Grigorev'
spec.email = 'vill@rubyinventory.org'
# rubocop:disable Metrics/LineLength
spec.summary = 'Build reusable UI components for Rails applications with the ability to use the BEM methodology.'
spec.description = 'Build reusable UI components for Rails applications with the ability to use the BEM methodology.'
# rubocop:enable Metrics/LineLength
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/issues',
'documentation_uri' => 'https://github.com/vill/bemer/tree/master/docs',
'homepage_uri' => 'https://github.com/vill/bemer',
'source_code_uri' => 'https://github.com/vill/bemer'
}
spec.required_ruby_version = '>= 2.2.0'
spec.required_rubygems_version = '>= 2.2.0'
spec.add_runtime_dependency 'railties', '>= 3.2.22'
end