Sha256: d6d99e0fc7e3bd808145816cf5afe0d95273116b7d83e1172f16f6da55f1522d

Contents?: true

Size: 941 Bytes

Versions: 9

Compression:

Stored size: 941 Bytes

Contents

# vim: set filetype=ruby et sw=2 ts=2:

require 'gem_hadar'

GemHadar do
  name        'infobar'
  author      'Florian Frank'
  email       'flori@ping.de'
  homepage    "http://flori.github.com/#{name}"
  summary     'Gem to display information about computations.'
  description 'This gem displays progress of computations and additional information to the terminal.'
  module_type :class
  test_dir    'spec'
  ignore      '.*.sw[pon]', 'pkg', 'Gemfile.lock', 'coverage', '.rvmrc',
    '.AppleDouble', 'tags', '.byebug_history', '.DS_Store', 'errors.lst'
  readme      'README.md'
  title       "#{name.camelize}"

  required_ruby_version '>= 2.3'
  dependency 'tins',           '~> 1.0', '>= 1.13.2'
  dependency 'term-ansicolor', '~> 1.4'
  dependency 'complex_config', '~> 0.10'
  dependency 'more_math'
  development_dependency 'rake'
  development_dependency 'simplecov'
  development_dependency 'rspec'
end

task :default => :spec

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
infobar-0.2.0 Rakefile
infobar-0.1.1 Rakefile
infobar-0.1.0 Rakefile
infobar-0.0.7 Rakefile
infobar-0.0.6 Rakefile
infobar-0.0.5 Rakefile
infobar-0.0.4 Rakefile
infobar-0.0.3 Rakefile
infobar-0.0.2 Rakefile