forked from thirunjuguna/natra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnatra.gemspec
31 lines (29 loc) · 1.29 KB
/
natra.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'natra/version'
Gem::Specification.new do |spec|
spec.name = 'natra'
spec.version = Natra::VERSION
spec.authors = ['Thiru Njuguna']
spec.email = ['[email protected]']
spec.summary = 'Natra generate a light weight sinatra application'
spec.description = 'Natra generate a light weight sinatra application.It\'s ideal for building micro-services'
spec.homepage = 'https://github.com/thirunjuguna/natra'
spec.license = 'MIT'
if spec.respond_to?(:metadata)
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/thirunjuguna/natra'
spec.metadata['changelog_uri'] = 'https://github.com/thirunjuguna/natra'
else
raise 'RubyGems 2.0 or newer is required to protect against ' \
'public gem pushes.'
end
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.executables = ['natra']
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.16'
spec.add_runtime_dependency('activesupport', '~> 5.0')
spec.add_runtime_dependency('thor', '~> 0.18')
end