-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnmax.gemspec
More file actions
24 lines (22 loc) · 960 Bytes
/
nmax.gemspec
File metadata and controls
24 lines (22 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'nmax/version'
Gem::Specification.new do |spec|
spec.name = "nmax"
spec.version = Nmax::VERSION
spec.authors = ["right9alt"]
spec.email = ["right9alt@gmail.com"]
spec.summary = 'gem find n max numbers'
spec.description = 'gem find n max numbers'
spec.homepage = "https://github.com/right9alt/nmax.git"
spec.license = "MIT"
spec.files = Dir['README.md', 'LICENSE','lib/**/*/rake',
'nmax.gemspec', 'Gemfile', 'Rakefile',
'lib/**/*.rb'
]
spec.required_ruby_version = '>= 2.5.0'
spec.extra_rdoc_files = ['README.md']
spec.add_development_dependency "rubocop", "~> 0.60"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rubocop-rspec", "~> 1.37"
end