Sha256: c9e8c5d835bb30b72b2e77d541af3f30b7ceaa5ff0c953c53520a9fea92962fd
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'lounger/version' Gem::Specification.new do |spec| spec.name = "lounger" spec.version = Lounger::VERSION spec.authors = ["Groza Sergiu"] spec.email = ["serioja90@gmail.com"] spec.license = "MIT" spec.summary = %q{A simple Ruby gem for current thread idling} spec.description = %q{Lounger is a Ruby gem that, as its name suggests, allows to make the current thread doing nothing. } spec.homepage = "https://github.com/serioja90/lounger" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency 'bundler', '~> 2.2', '>= 2.2.33' spec.add_development_dependency 'rake', '~> 13.0', '>= 12.3.3' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lounger-0.3.4 | lounger.gemspec |