1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00

project skeleton

This commit is contained in:
Charles Lowell 2011-11-09 12:46:51 -06:00
parent 9cb4f1c7d2
commit 112ed41c6d
6 changed files with 48 additions and 0 deletions

17
.gitignore vendored Normal file
View file

@ -0,0 +1,17 @@
*.gem
*.rbc
.bundle
.config
.yardoc
Gemfile.lock
InstalledFiles
_yardoc
coverage
doc/
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
tmp

4
Gemfile Normal file
View file

@ -0,0 +1,4 @@
source 'http://rubygems.org'
# Specify your gem's dependencies in therubyracer.gemspec
gemspec

2
Rakefile Normal file
View file

@ -0,0 +1,2 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"

5
lib/v8.rb Normal file
View file

@ -0,0 +1,5 @@
require "v8/version"
module V8
end

3
lib/v8/version.rb Normal file
View file

@ -0,0 +1,3 @@
module V8
VERSION = "0.10.0beta1"
end

17
therubyracer.gemspec Normal file
View file

@ -0,0 +1,17 @@
# -*- 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