Sha256: c3171adefe12fc9da7f958d38ee16568d1ce4dc2e15cbe60eda9a5cb5fafff5a
Contents?: true
Size: 1.03 KB
Versions: 5
Compression:
Stored size: 1.03 KB
Contents
# -*- encoding: utf-8 -*- $:.unshift File.expand_path("../lib", __FILE__) require "libv8/version" Gem::Specification.new do |s| s.name = "libv8" s.version = Libv8::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Charles Lowell"] s.email = ["cowboyd@thefrontside.net"] s.homepage = "http://github.com/cowboyd/libv8" s.summary = %q{Distribution of the V8 JavaScript engine} s.description = %q{Distributes the V8 JavaScript engine in binary and source forms in order to support fast builds of The Ruby Racer} s.rubyforge_project = "libv8" s.files = `git ls-files`.split("\n") s.files += Dir.chdir("vendor/v8") do `git ls-files`.split("\n").reject {|f| f =~ /^out/}.map {|f| "vendor/v8/#{f}"} end s.files += Dir['vendor/v8/build/**/*'] s.extensions = ["ext/libv8/extconf.rb"] s.require_paths = ["lib", "ext"] s.add_development_dependency "rake" s.add_development_dependency "rake-compiler" s.add_development_dependency "rspec" s.add_development_dependency "rspec-spies" end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
libv8-3.11.8.11 | libv8.gemspec |
libv8-3.11.8.10 | libv8.gemspec |
libv8-3.11.8.9 | libv8.gemspec |
libv8-3.11.8.8 | libv8.gemspec |
libv8-3.11.8.7 | libv8.gemspec |