Sha256: 72c766a8aceb458ef0791eb1fd12232f67f38ab3c04bb5ad0be1ed5f1a0f3f24

Contents?: true

Size: 1.08 KB

Versions: 6

Compression:

Stored size: 1.08 KB

Contents

require 'yard'
require 'jeweler'

desc 'Generate documentation'
YARD::Rake::YardocTask.new

Jeweler::Tasks.new do |gem|
  gem.name        = "thinking-sphinx"
  gem.summary     = "ActiveRecord/Rails Sphinx library"
  gem.description = "A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching."
  gem.author      = "Pat Allan"
  gem.email       = "pat@freelancing-gods.com"
  gem.homepage    = "http://ts.freelancing-gods.com"
    
  # s.rubyforge_project = "thinking-sphinx"
  gem.files     = FileList[
    "rails/*.rb",
    "lib/**/*.rb",
    "LICENCE",
    "README.textile",
    "tasks/**/*.rb",
    "tasks/**/*.rake",
    "VERSION"
  ]
  gem.test_files = FileList[
    "features/**/*",
    "spec/**/*_spec.rb"
  ]
  
  gem.add_dependency 'activerecord', '>= 1.15.6'
  gem.add_dependency 'riddle',       '>= 1.0.8'
  gem.add_dependency 'after_commit', '>= 1.0.5'
  
  gem.post_install_message = <<-MESSAGE
If you're upgrading, you should read this:
http://freelancing-god.github.com/ts/en/upgrading.html

MESSAGE
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
zipme-thinking-sphinx-1.3.14 tasks/distribution.rb
thinking-sphinx-1.3.14 tasks/distribution.rb
thinking-sphinx-1.3.13 tasks/distribution.rb
thinking-sphinx-1.3.12 tasks/distribution.rb
thinking-sphinx-1.3.11 tasks/distribution.rb
thinking-sphinx-1.3.10 tasks/distribution.rb