Skip to content

Commit

Permalink
releasing xapit as a gem (v0.1.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanb committed May 28, 2009
1 parent c4e5fa8 commit cd2a621
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ pkg
doc
*.sqlite3
tmp/**/*
spec/tmp/**/*
spec/tmp/**/*
Manifest
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*0.1.0* (May 28th, 2009)

* initial release
11 changes: 11 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
require 'rubygems'
require 'rake'
require 'echoe'

Echoe.new('xapit', '0.1.0') do |p|
p.summary = "Ruby library for interacting with Xapian, a full text search engine."
p.description = "Ruby library for interacting with Xapian, a full text search engine."
p.url = "http://github.com/ryanb/xapit"
p.author = 'Ryan Bates'
p.email = "ryan (at) railscasts (dot) com"
p.ignore_pattern = ["tmp/*"]
p.development_dependencies = []
end

Dir["#{File.dirname(__FILE__)}/tasks/*.rb"].sort.each { |ext| load ext }

0 comments on commit cd2a621

Please sign in to comment.