-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gemspec
21 lines (20 loc) · 1.12 KB
/
.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 'rubygems' unless Object.const_defined?(:Gem)
require File.dirname(__FILE__) + "/lib/ripl/johnson/version"
Gem::Specification.new do |s|
s.name = "ripl-johnson"
s.version = Ripl::Johnson::VERSION
s.authors = ["Gabriel Horner"]
s.email = "[email protected]"
s.homepage = "http://github.com/cldwalker/ripl-johnson"
s.summary = "A javascript shell using johnson (mozilla's tracemonkey)"
s.description = "A full-featured javscript shell based on johnson a.k.a mozilla's tracemonkey. Since this uses ripl, it comes with most irb functionality: a global config(~/.johnsonrc), autocompletion (very basic currently), history (~/.johnson_history) and multi-line support."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = 'tagaholic'
s.executables = ['ripl-johnson']
s.add_dependency 'ripl', '>= 0.2.8'
s.add_dependency 'johnson', '>= 2.0.0.pre3'
s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc} ext/**/*.{rb,c} **/deps.rip]) + %w{Rakefile .gemspec}
s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"]
s.license = 'MIT'
end