Sha256: 5d7afc380414eb31981cdc07aed1ab57e79dcaf24aaea1e88a493461ff096e7f

Contents?: true

Size: 1.34 KB

Versions: 1

Compression:

Stored size: 1.34 KB

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/working_man/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Evan Machnic"]
  gem.email         = ["emachnic@broadmac.net"]
  gem.description   = %q{Start/stop your work apps for the day}
  gem.summary       = %q{Start/stop your work apps for the day}
  gem.homepage      = "http://emachnic.github.com/working_man"

  gem.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.name          = "working_man"
  gem.require_paths = ["lib"]
  gem.version       = WorkingMan::VERSION
  gem.post_install_message = <<-END
    Thanks for installing WorkingMan!

    To get started, you'll need a .working_man.yml configuration file in your
    home directory. You can use the following as an example:

    apps:
      - 'Google Chrome'

    urls:
      - 'http://www.ruby-lang.com'

    Please see the documentation at http://emachnic.github.com/working_man for
    more information.
  END

  gem.add_development_dependency 'rdoc'
  gem.add_development_dependency 'rake',  '~> 10.4'
  gem.add_development_dependency 'aruba', '~> 0.10'
  gem.add_development_dependency 'rspec', '~> 3.4'
  gem.add_runtime_dependency     'thor',  '~> 0.19'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
working_man-1.2.0 working_man.gemspec