2014-08-15 12:29:07 +00:00
|
|
|
# coding: utf-8
|
|
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
2014-08-15 12:31:25 +00:00
|
|
|
require 'burlesque/version'
|
2014-08-15 12:29:07 +00:00
|
|
|
|
|
|
|
Gem::Specification.new do |spec|
|
2014-08-16 07:39:10 +00:00
|
|
|
spec.name = 'burlesque-client'
|
2014-08-16 08:24:01 +00:00
|
|
|
spec.version = Burlesque::VERSION
|
2014-08-16 07:39:10 +00:00
|
|
|
spec.authors = ['Gregory Eremin']
|
|
|
|
spec.email = ['g@erem.in']
|
2014-08-15 12:29:07 +00:00
|
|
|
spec.summary = %q{TODO: Write a short summary. Required.}
|
|
|
|
spec.description = %q{TODO: Write a longer description. Optional.}
|
2014-08-16 07:39:10 +00:00
|
|
|
spec.homepage = ''
|
|
|
|
spec.license = 'MIT'
|
2014-08-15 12:29:07 +00:00
|
|
|
|
|
|
|
spec.files = `git ls-files -z`.split("\x0")
|
|
|
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
|
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
2014-08-16 07:39:10 +00:00
|
|
|
spec.require_paths = ['lib']
|
2014-08-15 12:29:07 +00:00
|
|
|
|
2014-08-16 08:24:01 +00:00
|
|
|
spec.add_development_dependency 'bundler', '>= 1.6'
|
2014-08-16 07:39:10 +00:00
|
|
|
spec.add_development_dependency 'rake'
|
2014-08-15 12:29:07 +00:00
|
|
|
end
|