version changed and unicorn.gemspec renamed to unicorn-engine.gemspec (#915)
This commit is contained in:

committed by
Nguyen Anh Quynh

parent
8df86c86a4
commit
bc34c36eae
21
bindings/ruby/unicorn_gem/unicorn-engine.gemspec
Normal file
21
bindings/ruby/unicorn_gem/unicorn-engine.gemspec
Normal file
@ -0,0 +1,21 @@
|
||||
# coding: utf-8
|
||||
lib = File.expand_path('../lib', __FILE__)
|
||||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
||||
require 'unicorn_engine/version'
|
||||
|
||||
Gem::Specification.new do |spec|
|
||||
spec.name = "unicorn-engine"
|
||||
spec.version = Unicorn::VERSION
|
||||
spec.authors = ["Sascha Schirra"]
|
||||
spec.email = ["sashs@scoding.de"]
|
||||
spec.license = 'GPL-2.0'
|
||||
spec.summary = %q{Ruby binding for Unicorn-Engine}
|
||||
spec.description = %q{Ruby binding for Unicorn-Engine <unicorn-engine.org>}
|
||||
spec.homepage = "https://unicorn-engine.org"
|
||||
|
||||
spec.files = Dir["lib/unicorn_engine/*.rb"] + Dir["ext/unicorn.c"] + Dir["ext/unicorn.h"] + Dir["ext/types.h"] + Dir["ext/extconf.rb"]
|
||||
spec.require_paths = ["lib","ext"]
|
||||
spec.extensions = ["ext/extconf.rb"]
|
||||
spec.add_development_dependency "bundler", "~> 1.11"
|
||||
spec.add_development_dependency "rake", "~> 10.0"
|
||||
end
|
Reference in New Issue
Block a user