-
Notifications
You must be signed in to change notification settings - Fork 0
/
aetherg.gemspec
30 lines (27 loc) · 1.04 KB
/
aetherg.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
# @Author: Allen C. <chenillen>
# @Date: 2017-05-21T10:07:33+08:00
# @Email: [email protected]
# @Last modified by: chenillen
# @Last modified time: 2018-03-02T19:27:38+08:00
# @Copyright: Copyright (c) 2018 by Allen C.(@chenillen). All Rights Reserved.
Gem::Specification.new do |s|
s.name = 'aetherg'
s.version = '0.5.1'
s.date = '2018-03-02'
s.summary = "Aetherg (Aether Generator) is a generator of sinatra app."
s.description = "Aetherg (Aether Generator) is a sinatra based App generator. Light-weight for API service or full-stack Web apps. Fully supports Sinatra v2.0.0"
s.authors = ["Allen Chan"]
s.email = '[email protected]'
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = Dir['**/*'].keep_if { |file| File.file?(file) }
s.require_paths = ["lib"]
s.bindir = 'bin'
s.executables = ['aetherg']
s.add_runtime_dependency('thor', '~> 0.19')
s.required_ruby_version = '>= 1.9.3'
s.homepage = 'https://github.com/chenillen/aetherg'
s.license = 'MIT'
end