Sha256: f236c1854f557029e1c07786173b81c48eb8c160fc0e61b26ad990146686e5ce

Contents?: true

Size: 1.1 KB

Versions: 8

Compression:

Stored size: 1.1 KB

Contents

$:.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.license     = "MIT"

  s.rubyforge_project = "libv8"

  s.files  = `git ls-files`.split("\n")

  submodules = `git submodule --quiet foreach 'echo $path'`.split("\n").map(&:chomp)
  submodules.each do |submodule|
    s.files += Dir.chdir(submodule) do
      `git ls-files`.split("\n").reject {|f| f =~ /^test/}.map {|f| "#{submodule}/#{f}"}
    end
  end

  s.extensions = ["ext/libv8/extconf.rb"]
  s.require_paths = ["lib", "ext"]

  s.add_development_dependency 'rake', '~> 11'
  s.add_development_dependency 'rake-compiler', '~> 0'
  s.add_development_dependency 'rspec', '~> 3'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
libv8-5.2.361.43.1 libv8.gemspec
libv8-5.2.361.43.0 libv8.gemspec
libv8-5.1.281.59.1 libv8.gemspec
libv8-5.1.281.59.0 libv8.gemspec
libv8-5.1.281.59.0beta3 libv8.gemspec
libv8-5.0.71.48.3 libv8.gemspec
libv8-5.0.71.48.2 libv8.gemspec
libv8-5.0.71.48.0beta2 libv8.gemspec