Skip to content

Commit

Permalink
Fixed rake/Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasronge committed Oct 20, 2010
1 parent c50f3d2 commit 2219ca1
Show file tree
Hide file tree
Showing 12 changed files with 68 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,9 @@
source :gemcutter

gemspec

gem "rake", ">= 0.8.7"
gem "rdoc", ">= 2.5.10"
gem "horo", ">= 1.0.2"
gem "rspec", ">= 2.0.0"

33 changes: 33 additions & 0 deletions Gemfile.lock
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,33 @@
PATH
remote: .
specs:
lucene (0.5.0)

GEM
remote: http://rubygems.org/
specs:
diff-lcs (1.1.2)
horo (1.0.2)
rdoc (~> 2.5)
rake (0.8.7)
rdoc (2.5.11)
rspec (2.0.1)
rspec-core (~> 2.0.1)
rspec-expectations (~> 2.0.1)
rspec-mocks (~> 2.0.1)
rspec-core (2.0.1)
rspec-expectations (2.0.1)
diff-lcs (>= 1.1.2)
rspec-mocks (2.0.1)
rspec-core (~> 2.0.1)
rspec-expectations (~> 2.0.1)

PLATFORMS
java

DEPENDENCIES
horo (>= 1.0.2)
lucene!
rake (>= 0.8.7)
rdoc (>= 2.5.10)
rspec (>= 2.0.0)
3 changes: 3 additions & 0 deletions lib/lucene/version.rb
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,3 @@
module Lucene
VERSION = '0.5.0'
end
23 changes: 23 additions & 0 deletions lucene.gemspec
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,23 @@
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'lucene/version'


Gem::Specification.new do |s|
s.name = "lucene"
s.version = Lucene::VERSION
# s.platform = Gem::Platform::CURRENT # will probably support C Ruby via RJB also in the future
s.authors = "Andreas Ronge"
s.email = 'andreas.ronge@gmail.com'
s.homepage = "http://github.com/andreasronge/lucene/tree"
s.rubyforge_project = 'lucene'
s.summary = "A lucene wrapper for JRuby"
s.description = s.summary
s.require_path = 'lib'
s.files = Dir.glob("{bin,lib}/**/*") + %w(README.rdoc CHANGELOG CONTRIBUTORS Gemfile neo4j.gemspec)
s.has_rdoc = true
s.extra_rdoc_files = %w( README.rdoc )
s.rdoc_options = ["--quiet", "--title", "Lucene.rb", "--opname", "index.html", "--line-numbers", "--main", "README.rdoc", "--inline-source"]
s.required_ruby_version = ">= 1.8.7"
end
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 2219ca1

Please sign in to comment.