-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwinter.gemspec
26 lines (22 loc) · 1.1 KB
/
winter.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'winter/version'
Gem::Specification.new do |spec|
spec.name = "winter"
spec.version = Winter::VERSION
spec.authors = ["S. Mikkel Wilson"]
spec.email = ["[email protected]"]
spec.description = %q{Application and configuration bundler for OSGi apps.}
spec.summary = %q{Use Winterfell to describe your OSGi application and its configuration. The command line tool (winter) can be used to assemble, start, stop, and verify the application.}
spec.homepage = "https://github.com/liveops/winter"
spec.license = "Apache 2.0"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features|coverage)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 1.9.1'
spec.add_runtime_dependency "thor", "~> 0.14.0"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
end