- Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathruby-enum.gemspec
More file actions
Latest commit
20 lines (18 loc) · 603 Bytes
/
Copy pathruby-enum.gemspec
File metadata and controls
20 lines (18 loc) · 603 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true
$LOAD_PATH.pushFile.expand_path('lib',__dir__)
require'ruby-enum/version'
Gem::Specification.newdo |s|
s.name='ruby-enum'
s.version=Ruby::Enum::VERSION
s.authors=['Daniel Doubrovkine']
s.email='dblock@dblock.org'
s.platform=Gem::Platform::RUBY
s.required_rubygems_version='>= 1.3.6'
s.required_ruby_version='>= 2.7'
s.files=Dir['**/*']
s.require_paths=['lib']
s.homepage='http://github.com/dblock/ruby-enum'
s.licenses=['MIT']
s.summary='Enum-like behavior for Ruby.'
s.metadata['rubygems_mfa_required']='true'
end