mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
18 lines
656 B
Ruby
18 lines
656 B
Ruby
|
# -*- encoding: utf-8 -*-
|
||
|
require File.expand_path('../lib/v8/version', __FILE__)
|
||
|
|
||
|
Gem::Specification.new do |gem|
|
||
|
gem.authors = ["Charles Lowell"]
|
||
|
gem.email = ["cowboyd@thefrontside.net"]
|
||
|
gem.description = %q{TODO: Write a gem description}
|
||
|
gem.summary = %q{TODO: Write a gem summary}
|
||
|
gem.homepage = ""
|
||
|
|
||
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
||
|
gem.files = `git ls-files`.split("\n")
|
||
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
||
|
gem.name = "therubyracer"
|
||
|
gem.require_paths = ["lib"]
|
||
|
gem.version = V8::VERSION
|
||
|
end
|