mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
project skeleton
This commit is contained in:
parent
9cb4f1c7d2
commit
112ed41c6d
6 changed files with 48 additions and 0 deletions
17
.gitignore
vendored
Normal file
17
.gitignore
vendored
Normal 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
4
Gemfile
Normal file
|
@ -0,0 +1,4 @@
|
|||
source 'http://rubygems.org'
|
||||
|
||||
# Specify your gem's dependencies in therubyracer.gemspec
|
||||
gemspec
|
2
Rakefile
Normal file
2
Rakefile
Normal file
|
@ -0,0 +1,2 @@
|
|||
#!/usr/bin/env rake
|
||||
require "bundler/gem_tasks"
|
5
lib/v8.rb
Normal file
5
lib/v8.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
require "v8/version"
|
||||
|
||||
module V8
|
||||
|
||||
end
|
3
lib/v8/version.rb
Normal file
3
lib/v8/version.rb
Normal file
|
@ -0,0 +1,3 @@
|
|||
module V8
|
||||
VERSION = "0.10.0beta1"
|
||||
end
|
17
therubyracer.gemspec
Normal file
17
therubyracer.gemspec
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue