Sha256: cb0251bf5ccb72a4cdfa044b69c1b1b3d79448ba9236ffc463cbfcf8377fd8e7

Contents?: true

Size: 992 Bytes

Versions: 1

Compression:

Stored size: 992 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rhino/version"

Gem::Specification.new do |s|
  s.name = %q{therubyrhino}
  s.version = Rhino::VERSION
  s.authors = ["Charles Lowell"]
  s.email = %q{cowboyd@thefrontside.net}

  s.summary = %q{Embed the Rhino JavaScript interpreter into JRuby}
  s.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.}
  s.homepage = %q{http://github.com/cowboyd/therubyrhino}
  s.rubyforge_project = %q{therubyrhino}
  s.extra_rdoc_files = ["README.md"]
  s.license = "MIT"

  s.require_paths = ["lib"]
  s.files = `git ls-files`.split("\n").sort.
    reject { |file| file == 'therubyrhino_jar.gemspec' || file =~ /^jar\// }

  s.required_ruby_version = '>= 1.9.3'

  s.add_dependency "therubyrhino_jar", '>= 1.7.4', '< 1.7.9'

  s.add_development_dependency "rspec", "~> 2.14.1"
  s.add_development_dependency "mocha", "~> 0.13.3"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
therubyrhino-2.1.2 therubyrhino.gemspec