Sha256: abea90b755b6f367324aff196ab247f29c1a6bee31c3956fc0fc49ac7720d1ab
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'mastodon_healthchecker/version' Gem::Specification.new do |spec| spec.name = 'mastodon_healthchecker' spec.version = MastodonHealthchecker::VERSION spec.authors = ['nullkal'] spec.email = ['nullkal@nil.nu'] spec.summary = 'Perform the health check of a mastodon instance' spec.description = <<-DESCRIPTION mastodon_healthchecker provides a function which checks the connectability, and other statuses of a mastodon instance. DESCRIPTION spec.homepage = 'https://github.com/nullkal/mastodon_healthchecker' 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.15' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rubocop', '~> 0.49.1' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mastodon_healthchecker-0.1.0.pre | mastodon_healthchecker.gemspec |