-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 39e3ab6
Showing
9 changed files
with
595 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/usr/bin/env ruby | ||
# -*- coding: utf-8 -*- | ||
|
||
$LOAD_PATH.unshift File.expand_path(File.join("lib", File.dirname(__FILE__))) | ||
|
||
require 'coolline/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "coolline" | ||
|
||
s.version = Coolline::Version | ||
|
||
s.summary = "Sounds like readline, smells like readline, but isn't readline" | ||
s.description = <<-eof | ||
A readline-like library that allows to change how the input | ||
is displayed. | ||
eof | ||
|
||
s.homepage = "http://github.com/Mon-Ouie/coolline" | ||
|
||
s.email = "[email protected]" | ||
s.authors = ["Mon ouie"] | ||
|
||
s.files |= Dir["lib/**/*.rb"] | ||
s.files |= Dir["test/**/*.rb"] | ||
s.files << "repl.rb" << ".gemtest" | ||
|
||
s.require_paths = %w[lib] | ||
|
||
s.add_development_dependency "riot" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
require 'coolline/handler' | ||
require 'coolline/history' | ||
require 'coolline/editor' | ||
|
||
require 'coolline/coolline' | ||
|
||
require 'coolline/version' |
Oops, something went wrong.