Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies for Rails 3.1.0+ #12

Merged
merged 1 commit into from Feb 9, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 10 additions & 4 deletions Gemfile.lock
@@ -1,20 +1,26 @@
PATH PATH
remote: . remote: .
specs: specs:
business_time (0.5.0.pre) business_time (0.6.0)
activesupport (>= 2.0.0) activesupport (>= 3.1.0)
tzinfo (~> 0.3.31)


GEM GEM
remote: http://rubygems.org/ remote: http://rubygems.org/
specs: specs:
activesupport (2.3.4) activesupport (3.2.1)
i18n (~> 0.6)
multi_json (~> 1.0)
i18n (0.6.0)
multi_json (1.0.4)
rake (0.9.2.2) rake (0.9.2.2)
shoulda (2.11.3) shoulda (2.11.3)
tzinfo (0.3.31)


PLATFORMS PLATFORMS
ruby ruby


DEPENDENCIES DEPENDENCIES
business_time! business_time!
rake rake (>= 0.9.2)
shoulda shoulda
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -27,7 +27,7 @@ end


task :default => :test task :default => :test


require 'rake/rdoctask' require 'rdoc/task'
Rake::RDocTask.new do |rdoc| Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : "" version = File.exist?('VERSION') ? File.read('VERSION') : ""


Expand Down
7 changes: 4 additions & 3 deletions business_time.gemspec
Expand Up @@ -10,11 +10,12 @@ Gem::Specification.new do |s|
s.homepage = "http://github.com/bokmann/business_time" s.homepage = "http://github.com/bokmann/business_time"
s.authors = ["bokmann"] s.authors = ["bokmann"]
s.email = "dbock@codesherpas.com" s.email = "dbock@codesherpas.com"

s.files = `git ls-files -- {lib,rails_generators,LICENSE,README.rdoc}`.split("\n") s.files = `git ls-files -- {lib,rails_generators,LICENSE,README.rdoc}`.split("\n")


s.add_dependency('activesupport','>= 2.0.0') s.add_dependency('activesupport','>= 3.1.0')
s.add_dependency("tzinfo", "~> 0.3.31")


s.add_development_dependency 'rake' s.add_development_dependency "rake", ">= 0.9.2"
s.add_development_dependency "shoulda", ">= 0" s.add_development_dependency "shoulda", ">= 0"
end end
2 changes: 1 addition & 1 deletion lib/business_time/version.rb
@@ -1,3 +1,3 @@
module BusinessTime module BusinessTime
VERSION = "0.5.0.pre" VERSION = "0.6.0"
end end