Sha256: ed327b6b63a719895e829f56d40aea01c1743abdab8e1eed0580b39040061ade

Contents?: true

Size: 1.49 KB

Versions: 5

Compression:

Stored size: 1.49 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "vimgolf/version"

Gem::Specification.new do |s|
  s.name        = "vimgolf"
  s.version     = Vimgolf::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Ilya Grigorik"]
  s.email       = ["ilya@igvita.com"]
  s.homepage    = "http://github.com/igrigorik/vimgolf"
  s.summary     = "CLI client for vimgolf.com"
  s.description = s.summary

  s.rubyforge_project = "vimgolf"
  s.add_dependency "thor", ">= 0.14.6"
  s.add_dependency "json_pure"
  s.add_dependency "highline"

  s.add_development_dependency "rspec"
  s.add_development_dependency "rake"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

   s.post_install_message = %{
------------------------------------------------------------------------------
Thank you for installing vimgolf-#{Vimgolf::VERSION}.

0.1.3: custom vimgolf .vimrc file to help level the playing field
0.2.0: proxy support, custom diffs + proper vimscript parser/scoring
0.3.0: improve windows support, switch to YAML to remove c-ext dependency
0.4.0: improved diff/retry CLI, emacs support: http://bit.ly/yHgOPF

*NOTE*: please re-run "vimgolf setup" prior to playing!

For more information, rules & updates: http://vimgolf.com/about
------------------------------------------------------------------------------
}
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
vimgolf-0.4.8 vimgolf.gemspec
vimgolf-0.4.7 vimgolf.gemspec
vimgolf-0.4.6 vimgolf.gemspec
vimgolf-0.4.5 vimgolf.gemspec
vimgolf-0.4.4 vimgolf.gemspec