Sha256: 5313fd4fbf27ef5f7034e4326196a2115c73da00bce3d0a2f282689d4d2c16b5

Contents?: true

Size: 833 Bytes

Versions: 3

Compression:

Stored size: 833 Bytes

Contents

Gem::Specification.new do |s|

  s.name = 'tafel'

  s.version = File.read(
    File.expand_path('../lib/tafel.rb', __FILE__)
  ).match(/ VERSION *= *['"]([^'"]+)/)[1]

  s.platform = Gem::Platform::RUBY
  s.authors = [ 'John Mettraux' ]
  s.email = [ 'jmettraux@gmail.com' ]
  s.homepage = 'http://github.com/jmettraux/tafel'
  s.rubyforge_project = 'rufus'
  s.license = 'MIT'
  s.summary = 'something to turn data into arrays of arrays'

  s.description = %{
Something to turn data into arrays of arrays (suitable for CSV).
  }.strip

  #s.files = `git ls-files`.split("\n")
  s.files = Dir[
    'Makefile',
    'lib/**/*.rb',# 'spec/**/*.rb', 'test/**/*.rb',
    '*.gemspec', '*.txt', '*.rdoc', '*.md'
  ]

  #s.add_runtime_dependency 'tzinfo'

  s.add_development_dependency 'rspec', '>= 2.13.0'

  s.require_path = 'lib'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tafel-1.0.1 tafel.gemspec
tafel-1.0.0 tafel.gemspec
tafel-0.3.0 tafel.gemspec