123456789101112131415161718192021222324252627282930313233 |
- # -*- encoding: utf-8 -*-
- Gem::Specification.new do |s|
- s.name = "libv8"
- s.version = "3.3.10.4"
- s.platform = "x86-linux"
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
- s.authors = ["Logan Lowell", "Charles Lowell"]
- s.date = "2011-11-15"
- s.description = "Distributes the V8 JavaScript engine in binary and source forms in order to support fast builds of The Ruby Racer"
- s.email = ["fractaloop@thefrontside.net", "cowboyd@thefrontside.net"]
- s.homepage = "http://github.com/fractaloop/libv8"
- s.require_paths = ["lib"]
- s.rubyforge_project = "libv8"
- s.rubygems_version = "1.8.24"
- s.summary = "Distribution of the V8 JavaScript engine"
- if s.respond_to? :specification_version then
- s.specification_version = 3
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
- s.add_development_dependency(%q<rake>, ["~> 0.9.2"])
- s.add_development_dependency(%q<bundler>, [">= 0"])
- else
- s.add_dependency(%q<rake>, ["~> 0.9.2"])
- s.add_dependency(%q<bundler>, [">= 0"])
- end
- else
- s.add_dependency(%q<rake>, ["~> 0.9.2"])
- s.add_dependency(%q<bundler>, [">= 0"])
- end
- end
|