-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathflack.gemspec
41 lines (30 loc) · 1.04 KB
/
flack.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
32
33
34
35
36
37
38
39
40
Gem::Specification.new do |s|
s.name = 'flack'
s.version = File.read(
File.expand_path('../lib/flack.rb', __FILE__)
).match(/ VERSION *= *['"]([^'"]+)/)[1]
s.platform = Gem::Platform::RUBY
s.authors = [ 'John Mettraux' ]
s.email = [ '[email protected]' ]
s.homepage = 'https://github.com/floraison/flack'
s.license = 'MIT'
s.summary = 'a web front-end to the flor workflow engine'
s.description = %{
A web front-end to the flor workflow engine
}.strip
#s.files = `git ls-files`.split("\n")
s.files = Dir[
'README.{md,txt}',
'CHANGELOG.{md,txt}', 'CREDITS.{md,txt}', 'LICENSE.{md,txt}',
'Makefile',
'lib/**/*.rb', #'spec/**/*.rb', 'test/**/*.rb',
"#{s.name}.gemspec",
]
#flor_version = s.version.to_s.split('.').take(2).join('.')
#s.add_runtime_dependency 'flor', "~> #{flor_version}"
s.add_runtime_dependency 'flor'
s.add_runtime_dependency 'rack', '>= 1.6', '< 3.0'
#s.add_runtime_dependency 'httpclient', '~> 2.8'
s.add_development_dependency 'rspec', '~> 3'
s.require_path = 'lib'
end