Sha256: 01ac506041f993fe993822f6fdf4e267347b35e02118236a46ab3ba95c8e380b

Contents?: true

Size: 820 Bytes

Versions: 2

Compression:

Stored size: 820 Bytes

Contents

# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__),'lib','hemlock','version.rb'])
spec = Gem::Specification.new do |s|
  s.name = 'hemlock'
  s.version = Hemlock::VERSION
  s.author = 'Nicholas Shook'
  s.email = 'nicholas.shook@gmail.com'
  s.homepage = 'https://github.com/shicholas/hemlock'
  s.platform = Gem::Platform::RUBY
  s.summary = 'Memorization through written repetition - Socrates is not amused'
  s.files = `git ls-files`.split("
")
  s.require_paths << 'lib'
  s.has_rdoc = true
  s.rdoc_options << '--title' << 'hemlock' << '--main' << '-ri'
  s.bindir = 'bin'
  s.executables << 'hemlock'
  s.add_development_dependency('guard-rspec')
  s.add_runtime_dependency('gli','2.9.0')
  s.add_runtime_dependency('rainbow', '1.99.1')
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hemlock-0.0.6 hemlock.gemspec
hemlock-0.0.5 hemlock.gemspec