Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
Mon-Ouie committed Oct 12, 2011
0 parents commit 39e3ab6
Show file tree
Hide file tree
Showing 9 changed files with 595 additions and 0 deletions.
Empty file added Rakefile
Empty file.
31 changes: 31 additions & 0 deletions coolline.gemspec
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
7 changes: 7 additions & 0 deletions lib/coolline.rb
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'
Loading

0 comments on commit 39e3ab6

Please sign in to comment.