Sha256: eea14c61f6cd1c576b4c2b0cb859973db83311c9fb842b2cb918e78c3161154a
Contents?: true
Size: 1.18 KB
Versions: 5
Compression:
Stored size: 1.18 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.license = "Apache-2.0" gem.add_runtime_dependency(%q<i18n>, [">= 0.4.0"]) gem.add_runtime_dependency(%q<multi_json>) gem.add_runtime_dependency(%q<as-notifications>, ["~> 1.0"]) 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) } end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
webmachine-1.6.0 | webmachine.gemspec |
webmachine-1.5.0 | webmachine.gemspec |
webmachine-1.4.0 | webmachine.gemspec |
webmachine-1.3.1 | webmachine.gemspec |
webmachine-1.3.0 | webmachine.gemspec |