Sha256: 3b538bbe5782e68f11d6e1608415a7df547dce9149b6053446e0c03467a3f39a

Contents?: true

Size: 944 Bytes

Versions: 4

Compression:

Stored size: 944 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path("../lib/robot-vim/version", __FILE__)

Gem::Specification.new do |s|
  s.name        = "robot-vim"
  s.version     = Robot::Vim::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Matt Margolis"]
  s.email       = ["matt@mattmargolis.net"]
  s.homepage    = "https://github.com/mrmargolis/robot-vim"
  s.summary     = "Vim automation with Ruby"
  s.description = "Automate Vim with Ruby to allow for TDD/BDD of Vim plugins and scripts"

  s.required_rubygems_version = ">= 1.3.6"
  s.rubyforge_project         = "robot-vim"

  s.add_development_dependency "bundler", ">= 1.0.0"
  s.add_development_dependency "rspec", "~> 2.5.0"
  s.add_development_dependency "autotest"

  s.add_dependency "uuid", "~> 2.3.1"

  s.files        = `git ls-files`.split("\n")
  s.executables  = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
  s.require_path = 'lib'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
robot-vim-1.1.0 robot-vim.gemspec
robot-vim-1.0.0 robot-vim.gemspec
robot-vim-0.10.0 robot-vim.gemspec
robot-vim-0.9.0 robot-vim.gemspec