-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmart_enum.gemspec
28 lines (21 loc) · 1.02 KB
/
smart_enum.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
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'smart_enum/version'
Gem::Specification.new do |spec|
spec.name = "smart_enum"
spec.version = SmartEnum::VERSION
spec.authors = ["Carl Brasic", "Joshua Flanagan"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = %q{Enums to replace database lookup tables}
spec.description = %q{Enums to replace database lookup tables}
spec.homepage = "https://github.com/ShippingEasy/smart_enum"
spec.license = "MIT"
spec.files = Dir["lib/**/*", "Rakefile", "README.md", "LICENSE.txt", "smart_enum.gemspec"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.required_ruby_version = '>= 2.4.0'
spec.require_paths = ["lib"]
# needed to run test suite for optional features, but consumers don't need it
spec.add_development_dependency "activerecord"
end