Sha256: f5220a6ab739aa4ce585be6e764b8c5d56e73f5adb720aca1ffd545abf61ebbe

Contents?: true

Size: 870 Bytes

Versions: 9

Compression:

Stored size: 870 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = "eat"
  s.version     = Eat::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Seamus Abshere"]
  s.email       = ["seamus@abshere.net"]
  s.homepage    = "https://github.com/seamusabshere/eat"
  s.summary     = %q{A more trustworthy open-uri for use with RSS feeds, config scripts, etc.}
  s.description = %q{Lets you open local and remote files by immediately returning their contents as a string.}

  s.rubyforge_project = "eat"

  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.add_development_dependency 'test-unit'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
eat-0.1.1 eat.gemspec
eat-0.1.0 eat.gemspec
eat-0.0.7 eat.gemspec
eat-0.0.6 eat.gemspec
eat-0.0.5 eat.gemspec
eat-0.0.4 eat.gemspec
eat-0.0.3 eat.gemspec
eat-0.0.2 eat.gemspec
eat-0.0.1 eat.gemspec