Sha256: 3cc1d34bb01025025188df32b7071d07ed616effa9355612d5d8fef11170a870
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
# -*- encoding: utf-8 -*- require 'pathname' # Sanity check! if !File.exist? File.join('lib', 'libv8', 'v8', 'SConstruct') then `git submodule update --init` end $:.push 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 = ["Logan Lowell", "Charles Lowell"] s.email = ["fractaloop@thefrontside.net", "cowboyd@thefrontside.net"] s.homepage = "http://github.com/fractaloop/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" root = Pathname(__FILE__).dirname s.files = `git ls-files`.split("\n") s.files += Dir.chdir(root.join("lib/libv8/v8")) do `git ls-files`.split("\n").reject {|f| f =~ /^test/ || f =~ /^samples/ || f =~ /^benchmarks/}.map {|f| "lib/libv8/v8/#{f}"} end s.extensions = ["ext/libv8/extconf.rb"] s.require_paths = ["lib"] s.add_development_dependency "rake", "~> 0.8.7" s.add_development_dependency "bundler" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
libv8-3.5.10.beta1 | libv8.gemspec |