Sha256: 1404684676532366ea717559c97183755616c71e361e855ca19e22f55d14ccc4

Contents?: true

Size: 1.19 KB

Versions: 13

Compression:

Stored size: 1.19 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.license     = "MIT"

  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.files += Dir.chdir("vendor/gyp") do
    `git ls-files`.split("\n").map {|f| "vendor/gyp/#{f}"}
  end

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

  s.add_development_dependency 'rake', '~> 10'
  s.add_development_dependency 'rake-compiler', '~> 0'
  s.add_development_dependency 'rspec', '~> 2'
  s.add_development_dependency 'rspec-spies', '~> 2'
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
libv8-3.16.14.19.1 libv8.gemspec
libv8-3.16.14.19 libv8.gemspec
libv8-3.16.14.18 libv8.gemspec
arcabouco-0.2.13 vendor/bundle/gems/libv8-3.16.14.17/libv8.gemspec
libv8-3.16.14.17 libv8.gemspec
libv8-3.16.14.16 libv8.gemspec
libv8-3.16.14.15 libv8.gemspec
libv8-3.16.14.14 libv8.gemspec
libv8-3.16.14.13 libv8.gemspec
libv8-3.16.14.12 libv8.gemspec
libv8-3.16.14.11 libv8.gemspec
libv8-3.16.14.10 libv8.gemspec
libv8-3.16.14.8 libv8.gemspec