-
Notifications
You must be signed in to change notification settings - Fork 1
/
active_record_bitmask.gemspec
32 lines (25 loc) · 1.14 KB
/
active_record_bitmask.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'active_record_bitmask/version'
Gem::Specification.new do |spec|
spec.name = 'active_record_bitmask'
spec.version = ActiveRecordBitmask::VERSION
spec.authors = ['alpaca-tc']
spec.email = ['[email protected]']
spec.licenses = ['MIT']
spec.summary = 'Simple bitmask attribute support for ActiveRecord'
spec.homepage = 'https://github.com/alpaca-tc/active_record_bitmask'
spec.required_ruby_version = '>= 3.1.0'
spec.metadata = {
'homepage_uri' => 'https://github.com/alpaca-tc/active_record_bitmask',
'changelog_uri' => 'https://github.com/alpaca-tc/active_record_bitmask/blob/master/CHANGELOG.md',
'source_code_uri' => 'https://github.com/alpaca-tc/active_record_bitmask/',
'bug_tracker_uri' => 'https://github.com/alpaca-tc/active_record_bitmask/issues'
}
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ['lib']
spec.add_dependency 'activerecord', '>= 7.0'
end