Skip to content

Commit

Permalink
Depend on newest version of activesupport
Browse files Browse the repository at this point in the history
  • Loading branch information
toreriklinnerud committed May 5, 2009
1 parent c2d2aff commit 2fb8399
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Rakefile
Expand Up @@ -9,9 +9,8 @@ begin
gem.email = "torerik.linnerud@alphasights.com"
gem.homepage = "http://github.com/alphasights/clean-files"
gem.authors = ["Tor Erik Linnerud"]
gem.executables << 'clean_files'
gem.files = FileList["{lib,bin,spec}/*"]
gem.add_dependency 'activesupport'
gem.add_dependency 'activesupport', ">=2.3.2"
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
Expand Down
9 changes: 5 additions & 4 deletions clean-files.gemspec
Expand Up @@ -7,8 +7,9 @@ Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tor Erik Linnerud"]
s.date = %q{2009-05-05}
s.default_executable = %q{clean_files}
s.email = %q{torerik.linnerud@alphasights.com}
s.executables = ["clean_files", "clean_files"]
s.executables = ["clean_files"]
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
Expand Down Expand Up @@ -36,11 +37,11 @@ Gem::Specification.new do |s|
s.specification_version = 2

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
s.add_runtime_dependency(%q<activesupport>, [">= 2.3.2"])
else
s.add_dependency(%q<activesupport>, [">= 0"])
s.add_dependency(%q<activesupport>, [">= 2.3.2"])
end
else
s.add_dependency(%q<activesupport>, [">= 0"])
s.add_dependency(%q<activesupport>, [">= 2.3.2"])
end
end

0 comments on commit 2fb8399

Please sign in to comment.