Skip to content

Commit

Permalink
Remove git-ignored database.yml from gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
pat committed Dec 24, 2011
1 parent 48034eb commit 2e597d7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 41 deletions.
10 changes: 6 additions & 4 deletions tasks/distribution.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,22 @@
gem.email = "pat@freelancing-gods.com"
gem.homepage = "http://github.com/freelancing-god/ts-datetime-delta"
gem.authors = ["Pat Allan"]

gem.add_dependency 'thinking-sphinx', '>= 1.3.8'

gem.add_development_dependency "rspec", ">= 1.2.9"
gem.add_development_dependency "yard", ">= 0"
gem.add_development_dependency "cucumber", ">= 0"

gem.files = FileList[
'lib/**/*.rb',
'LICENSE',
'README.textile'
]
gem.test_files = FileList[
'features/**/*',
'features/**/*.rb',
'features/**/*.feature',
'features/support/database.example.yml',
'spec/**/*'
]
end
Expand Down
51 changes: 14 additions & 37 deletions ts-datetime-delta.gemspec
Original file line number Diff line number Diff line change
@@ -1,60 +1,37 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{ts-datetime-delta}
s.name = "ts-datetime-delta"
s.version = "1.0.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Pat Allan"]
s.date = %q{2009-12-03}
s.description = %q{Manage delta indexes via datetime columns for Thinking Sphinx}
s.email = %q{pat@freelancing-gods.com}
s.date = "2011-12-24"
s.description = "Manage delta indexes via datetime columns for Thinking Sphinx"
s.email = "pat@freelancing-gods.com"
s.extra_rdoc_files = [
"LICENSE",
"README.textile"
"README.textile"
]
s.files = [
"LICENSE",
"README.textile",
"lib/thinking_sphinx/deltas/datetime_delta.rb",
"lib/thinking_sphinx/deltas/datetime_delta/tasks.rb"
"README.textile",
"lib/thinking_sphinx/deltas/datetime_delta.rb",
"lib/thinking_sphinx/deltas/datetime_delta/tasks.rb"
]
s.homepage = %q{http://github.com/freelancing-god/ts-datetime-delta}
s.rdoc_options = ["--charset=UTF-8"]
s.homepage = "http://github.com/freelancing-god/ts-datetime-delta"
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Thinking Sphinx - Datetime Deltas}
s.test_files = [
"features/datetime_deltas.feature",
"features/step_definitions",
"features/step_definitions/common_steps.rb",
"features/step_definitions/datetime_delta_steps.rb",
"features/support",
"features/support/database.example.yml",
"features/support/database.yml",
"features/support/db",
"features/support/db/fixtures",
"features/support/db/fixtures/thetas.rb",
"features/support/db/migrations",
"features/support/db/migrations/create_thetas.rb",
"features/support/env.rb",
"features/support/models",
"features/support/models/theta.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/thinking_sphinx",
"spec/thinking_sphinx/deltas",
"spec/thinking_sphinx/deltas/datetime_delta_spec.rb"
]
s.rubygems_version = "1.8.10"
s.summary = "Thinking Sphinx - Datetime Deltas"
s.test_files = ["features/step_definitions/common_steps.rb", "features/step_definitions/datetime_delta_steps.rb", "features/support/db/fixtures/thetas.rb", "features/support/db/migrations/create_thetas.rb", "features/support/env.rb", "features/support/models/theta.rb", "features/datetime_deltas.feature", "features/support/database.example.yml", "spec/spec.opts", "spec/spec_helper.rb", "spec/thinking_sphinx", "spec/thinking_sphinx/deltas", "spec/thinking_sphinx/deltas/datetime_delta_spec.rb"]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<thinking-sphinx>, [">= 1.3.8"])
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
s.add_development_dependency(%q<yard>, [">= 0"])
Expand Down

0 comments on commit 2e597d7

Please sign in to comment.