Sha256: 3bded6ac15cfc9b568a911407dd6ad0a95efb16370a0bb84837e54dd5e23c73b

Contents?: true

Size: 1.13 KB

Versions: 26

Compression:

Stored size: 1.13 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").reject {|f| f =~ /^release\//}

  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', '~> 12'
  s.add_development_dependency 'rake-compiler', '~> 0'
  s.add_development_dependency 'rspec', '~> 3'
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
libv8-7.8.279.23.0beta1 libv8.gemspec
libv8-7.4.288.28.0beta1 libv8.gemspec
libv8-7.3.492.27.3beta1 libv8.gemspec
libv8-7.3.492.27.1 libv8.gemspec
libv8-7.3.492.27.0 libv8.gemspec
libv8-7.3.492.27.0beta1 libv8.gemspec
libv8-6.7.288.46.1 libv8.gemspec
libv8-6.7.288.46.0 libv8.gemspec
libv8-6.7.288.46.1beta0 libv8.gemspec
libv8-6.3.292.48.1 libv8.gemspec
libv8-6.3.292.48.0 libv8.gemspec
libv8-6.3.292.48.0beta2 libv8.gemspec
libv8-6.3.292.48.0beta1 libv8.gemspec
libv8-6.2.414.42.1 libv8.gemspec
libv8-6.2.414.42.0 libv8.gemspec
libv8-6.2.414.42.0beta1 libv8.gemspec
libv8-6.0.286.54.3 libv8.gemspec
libv8-6.0.286.54.2 libv8.gemspec
libv8-6.0.286.54.1 libv8.gemspec
libv8-6.0.286.54.0 libv8.gemspec