Sha256: 15a961adc76ca044d68e21852e700758de054d3abf5901d5ee16341142f2a939
Contents?: true
Size: 1.38 KB
Versions: 2
Compression:
Stored size: 1.38 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cli_spinnable/version' Gem::Specification.new do |spec| spec.name = 'cli_spinnable' spec.version = CliSpinnable::VERSION spec.authors = ['Krzysztof Maicher'] spec.email = ['krzysztof.maicher@gmail.com'] spec.summary = 'CliSpinnable, a module that enriches ruby command line interface' spec.summary += ' with rotating spinner, check mark (✓) and and fail mark (×).' spec.description = 'CliSpinnable, a module that enriches ruby command line interface' spec.description += ' with rotating spinner, check mark (✓) and and fail mark (×).' spec.homepage = 'https://github.com/maicher/cli_spinnable' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.1.0' spec.add_development_dependency 'bundler', '~> 1.10' spec.add_development_dependency 'rubocop', '~> 0.44' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.4' spec.add_development_dependency 'pry', '~> 0.10' spec.add_development_dependency 'simplecov', '~> 0.12' spec.add_development_dependency 'codeclimate-test-reporter', '~> 1.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cli_spinnable-0.2 | cli_spinner.gemspec |
cli_spinnable-0.1 | cli_spinner.gemspec |