forked from cowboyd/commonjs.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommonjs.gemspec
21 lines (18 loc) · 875 Bytes
/
commonjs.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/commonjs/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Charles Lowell"]
gem.email = ["[email protected]"]
gem.description = "Host CommonJS JavaScript environments in Ruby"
gem.summary = "Provide access to your Ruby and Operating System runtime via the commonjs API"
gem.homepage = "http://github.com/cowboyd/commonjs.rb"
gem.license = "MIT"
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 = "commonjs"
gem.require_paths = ["lib"]
gem.version = CommonJS::VERSION
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
end