Sha256: 14b48353f781ea3f0da4880b430448c6b7f65c6a8c4a3d82d843843098fa917a

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

$:.push File.expand_path("../lib", __FILE__)
require 'webmachine/version'

Gem::Specification.new do |gem|
  gem.name = "webmachine"
  gem.version = Webmachine::VERSION
  gem.summary = %Q{webmachine is a toolkit for building HTTP applications,}
  gem.description = <<-DESC.gsub(/\s+/, ' ')
    webmachine is a toolkit for building HTTP applications in a declarative fashion, that avoids
    the confusion of going through a CGI-style interface like Rack. It is strongly influenced
    by the original Erlang project of the same name and shares its opinionated nature about HTTP.
  DESC
  gem.homepage = "http://github.com/seancribbs/webmachine-ruby"
  gem.authors = ["Sean Cribbs"]
  gem.email = ["sean@basho.com"]

  gem.add_runtime_dependency(%q<i18n>, [">= 0.4.0"])
  gem.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
  gem.add_development_dependency(%q<yard>, ["~> 0.7.3"])
  gem.add_development_dependency(%q<rake>)
  gem.add_development_dependency(%q<mongrel>, ['~>1.2.beta'])
  gem.add_development_dependency(%q<rack>)

  ignores = File.read(".gitignore").split(/\r?\n/).reject{ |f| f =~ /^(#.+|\s*)$/ }.map {|f| Dir[f] }.flatten
  gem.files = (Dir['**/*','.gitignore'] - ignores).reject {|f| !File.file?(f) }
  gem.test_files = (Dir['spec/**/*','features/**/*','.gitignore'] - ignores).reject {|f| !File.file?(f) }
  gem.executables   = Dir['bin/*'].map { |f| File.basename(f) }
  gem.require_paths = ['lib']
end

Version data entries

4 entries across 3 versions & 1 rubygems

Version Path
webmachine-0.4.2 webmachine.gemspec
webmachine-0.4.1 pkg/webmachine-0.4.0/webmachine.gemspec
webmachine-0.4.1 webmachine.gemspec
webmachine-0.4.0 webmachine.gemspec