forked from palkan/store_attribute
-
Notifications
You must be signed in to change notification settings - Fork 1
/
store_attribute.gemspec
34 lines (27 loc) · 1.25 KB
/
store_attribute.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
require_relative "lib/store_attribute/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "store_attribute"
s.version = StoreAttribute::VERSION
s.authors = ["palkan"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/palkan/store_attribute"
s.summary = "ActiveRecord extension which adds typecasting to store accessors"
s.description = "ActiveRecord extension which adds typecasting to store accessors"
s.license = "MIT"
s.files = Dir.glob("lib/**/*") + %w[README.md LICENSE.txt CHANGELOG.md]
s.require_paths = ["lib"]
s.required_ruby_version = ">= 2.6.0"
s.metadata = {
"bug_tracker_uri" => "http://github.com/palkan/store_attribute/issues",
"changelog_uri" => "https://github.com/palkan/store_attribute/blob/master/CHANGELOG.md",
"documentation_uri" => "http://github.com/palkan/store_attribute",
"homepage_uri" => "http://github.com/palkan/store_attribute",
"source_code_uri" => "http://github.com/palkan/store_attribute"
}
s.add_runtime_dependency "activerecord", ">= 6.0"
s.add_development_dependency "pg", ">= 0.18"
s.add_development_dependency "rake", ">= 13.0"
s.add_development_dependency "rspec", ">= 3.5.0"
end