Sha256: add0e922cc0cefbf670d24e1a9bfb3ab5cc60086b6f2abbfbeabdabe2aa052d5

Contents?: true

Size: 1.32 KB

Versions: 2

Compression:

Stored size: 1.32 KB

Contents

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

Gem::Specification.new do |gem|
  gem.authors       = ["Tom Scott"]
  gem.email         = ["tubbo@psychedeli.ca"]
  gem.description   = %q{DOTS is an advanced ZSH framework.}
  gem.summary       = <<-TEXT
  DOTS is an advanced ZSH framework. It abstracts a lot of hard-to-remember commands away from you
  and leaves you with fully-documented, easy-to-remember, plain-english aliases for common tasks.
  Supporting the Antigen framework for plugins, it's meant to be easy to install and light-weight in
  code, but able to support and replicate an entire home directory worth of dotfiles, essentially
  enabling you to take your shell environment "on the road" in a Github repository.
  TEXT
  gem.homepage      = "http://tubbo.github.com/dots"

  gem.files         = `git ls-files`.split($\)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(spec)/})
  gem.name          = "zsh_dots"
  gem.require_paths = ["lib/ruby"]
  gem.version       = Dots::VERSION

  gem.add_runtime_dependency 'thor'
  gem.add_runtime_dependency 'activemodel'

  gem.add_development_dependency 'rake'

  gem.signing_key = '/Users/tom/.gem/auth/gem-private_key.pem'
  gem.cert_chain  = ['gem-public_cert.pem']
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
zsh_dots-0.6.5 zsh_dots.gemspec
zsh_dots-0.6.3 zsh_dots.gemspec