-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeka_eiwakun.gemspec
More file actions
26 lines (21 loc) · 893 Bytes
/
deka_eiwakun.gemspec
File metadata and controls
26 lines (21 loc) · 893 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
25
26
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'deka_eiwakun/version'
Gem::Specification.new do |spec|
spec.name = 'deka_eiwakun'
spec.version = DekaEiwakun::VERSION
spec.authors = ['eiwakun']
spec.email = ['eiwakun@esm.co.jp']
spec.summary = 'coding convention in esm'
spec.description = 'coding convention in esm'
spec.homepage = 'https://github.com/esminc/deka_eiwakun'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r|^exe/|) {|f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'rubocop', '~> 0.58.2'
spec.add_development_dependency 'bundler', '~> 1.11'
spec.add_development_dependency 'rake', '~> 10.0'
end