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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
PATH
remote: .
specs:
business_time (0.5.0.pre)
activesupport (>= 2.0.0)
business_time (0.6.0)
activesupport (>= 3.1.0)
tzinfo (~> 0.3.31)

GEM
remote: http://rubygems.org/
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)
shoulda (2.11.3)
tzinfo (0.3.31)

PLATFORMS
ruby

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

task :default => :test

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

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

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"
end
2 changes: 1 addition & 1 deletion lib/business_time/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module BusinessTime
VERSION = "0.5.0.pre"
VERSION = "0.6.0"
end