Sha256: 26f0f365d58b37505e2a5efc3558264f71a7d7632872f16a596ea6bba72f9686
Contents?: true
Size: 1.11 KB
Versions: 9
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'protonbot/titler' Gem::Specification.new do |spec| spec.name = 'protonbot-titler' spec.version = ProtonBot::Titler::VERSION spec.authors = ['Nickolay Ilyushin'] spec.email = ['nickolay02@inbox.ru'] spec.summary = 'An URL resolver for ProtonBot' spec.description = 'An URL resolver for ProtonBot. Filters most bots automatically, so no botloops.' spec.homepage = 'https://github.com/handicraftsman/ProtonBot-Titler' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.13' spec.add_development_dependency 'rake', '~> 10.0' spec.add_runtime_dependency 'nokogiri', '~> 1.7' spec.add_runtime_dependency 'http', '~> 2.2' spec.add_runtime_dependency 'protonbot', '>= 0.2.2' end
Version data entries
9 entries across 9 versions & 1 rubygems