Sha256: c2129ec1efc23eae20e43669c0517042c409986d53e57b6b83bea37a418276a8

Contents?: true

Size: 889 Bytes

Versions: 4

Compression:

Stored size: 889 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = "synchronizable"
  s.version     = Synchronizable::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Ryan LeCompte"]
  s.email       = ["lecompte@gmail.com"]
  s.homepage    = "http://github.com/ryanlecompte/synchronizable"
  s.summary     = %q{Synchronizable is a generic way to provide per-object thread safety}
  s.description = %q{Synchronizable is a generic way to provide per-object thread safety}

  s.rubyforge_project = "synchronizable"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- spec/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_development_dependency("rspec", "~> 2.5.0")
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
synchronizable-0.0.4 synchronizable.gemspec
synchronizable-0.0.3 synchronizable.gemspec
synchronizable-0.0.2 synchronizable.gemspec
synchronizable-0.0.1 synchronizable.gemspec