mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
810 B
22 lines
810 B
# -*- encoding: utf-8 -*-
|
|
require File.expand_path('../lib/uber/version', __FILE__)
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.authors = ["Nick Sutterer"]
|
|
gem.email = ["apotonick@gmail.com"]
|
|
gem.description = %q{A gem-authoring framework.}
|
|
gem.summary = %q{Gem-authoring tools like generic builders, dynamic options and more.}
|
|
gem.homepage = "https://github.com/apotonick/uber"
|
|
gem.license = "MIT"
|
|
|
|
gem.files = `git ls-files`.split($\)
|
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
gem.name = "uber"
|
|
gem.require_paths = ["lib"]
|
|
gem.version = Uber::VERSION
|
|
|
|
gem.add_development_dependency "rake"
|
|
gem.add_development_dependency "minitest"
|
|
end
|