Sha256: 942a090898a07874566134b2a5da69bfa4ef3d5470acd55e52607417c8ac6989

Contents?: true

Size: 905 Bytes

Versions: 1

Compression:

Stored size: 905 Bytes

Contents

# -*- encoding: utf-8 -*-
root = File.expand_path('../', __FILE__)
lib = "#{root}/lib"

$:.unshift lib unless $:.include?(lib)

Gem::Specification.new do |s|
  s.name        = "accelerator"
  s.version     = '0.1.0'
  s.platform    = Gem::Platform::RUBY
  s.authors     = [ "Winton Welsh" ]
  s.email       = [ "mail@wintoni.us" ]
  s.homepage    = "http://github.com/winton/nginx-accelerator"
  s.summary     = %q{Drop-in page caching using nginx, lua, and memcached}
  s.description = %q{Drop-in page caching using nginx, lua, and memcached.}

  s.executables = `cd #{root} && git ls-files bin/*`.split("\n").collect { |f| File.basename(f) }
  s.files = `cd #{root} && git ls-files`.split("\n")
  s.require_paths = %w(lib)
  s.test_files = `cd #{root} && git ls-files -- {features,test,spec}/*`.split("\n")

  s.add_dependency "memcached", "~> 1.5.0"
  s.add_development_dependency "rspec", "~> 1.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
accelerator-0.1.0 nginx-accelerator.gemspec