mirror of
				https://github.com/rails/execjs
				synced 2023-03-27 23:21:20 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
$:.unshift File.expand_path('../lib', __FILE__)
 | 
						|
require 'execjs/version'
 | 
						|
 | 
						|
Gem::Specification.new do |s|
 | 
						|
  s.name    = "execjs"
 | 
						|
  s.version = ExecJS::VERSION
 | 
						|
 | 
						|
  s.homepage    = "https://github.com/sstephenson/execjs"
 | 
						|
  s.summary     = "Run JavaScript code from Ruby"
 | 
						|
  s.description = "ExecJS lets you run JavaScript code from Ruby."
 | 
						|
 | 
						|
  s.files = Dir["README.md", "LICENSE", "lib/**/*"]
 | 
						|
 | 
						|
  s.add_dependency "multi_json", "~>1.0"
 | 
						|
  s.add_development_dependency "rake"
 | 
						|
 | 
						|
  s.authors = ["Sam Stephenson", "Josh Peek"]
 | 
						|
  s.email   = ["sstephenson@gmail.com", "josh@joshpeek.com"]
 | 
						|
end
 |