-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathnyara.gemspec
More file actions
39 lines (37 loc) · 1.23 KB
/
Copy pathnyara.gemspec
File metadata and controls
39 lines (37 loc) · 1.23 KB
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
32
33
34
35
36
37
38
39
Gem::Specification.new do |s|
s.name = "nyara"
s.version = "0.1.pre.2"
s.author = "Zete Lui"
s.email = "nobody@example.com"
s.homepage = "https://github.com/luikore/nyara"
s.platform = Gem::Platform::RUBY
s.summary = "Fast and fuzzy ruby web framework + server"
s.description = "Fast and fuzzy ruby web framework + server"
s.required_ruby_version = ">=2.0.0"
s.licenses = ['BSD 3-Clause']
s.files = Dir.glob('{rakefile,nyara.gemspec,readme.md,copying,changes,**/*.{rb,h,c,cc,inc}}')
s.files += Dir.glob('spec/**/*')
s.files += Dir.glob('ext/http-parser/{AUTHORS,CONTRIBUTIONS,LICENSE-MIT}')
s.files += Dir.glob('ext/multipart-parser-c/README.md')
s.files += Dir.glob('lib/nyara/{optional_templates,templates}/**/*') - %w[.DS_Store]
s.files.uniq!
s.require_paths = ["lib"]
s.executables << 'nyara'
s.extensions = ["ext/extconf.rb"]
s.rubygems_version = '2.0.3'
s.add_runtime_dependency 'tilt', '>= 1.3'
s.add_runtime_dependency 'listen', '>= 1.1.3'
s.add_runtime_dependency 'thor', '>= 0.18'
s.rdoc_options += %w[
-v
--markup=markdown
--main readme.md
--line-numbers
-x ext/http-parser/.*
-x ext/multipart-parser-c/.*
-x ext/inc/.*
-x .*\.o
-x .*\.bundle
-x .*\.so
]
end