Skip to content

Commit

Permalink
Added ActiveSupport 3 compatibility (actually, it will work with > 2.…
Browse files Browse the repository at this point in the history
…3.9)
  • Loading branch information
vicentemundim committed Jan 15, 2011
1 parent ef352ef commit fa159d1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.6.0
- Added ActiveSupport 3 compatibility (actually, it will work with > 2.3.9)

1.5.4
- Fixed a bug where {ROOT_PATH} was not properly substituted in style files

Expand Down
4 changes: 2 additions & 2 deletions lib/rugui/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module RuGUI
module VERSION #:nodoc:
MAJOR = 1
MINOR = 5
TINY = 4
MINOR = 6
TINY = 0

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
6 changes: 3 additions & 3 deletions rugui.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Gem::Specification.new do |s|
s.summary = %q{A rails like MVC framework for building desktop applications with GUI frameworks.}
s.description = %q(RuGUI is a framework which aims to help building desktop applications. RuGUI was mostly inspired by the *Ruby on Rails* framework, taking most of its features from it.)

s.authors = ["Vicente Mundim", "Felipe Mesquita", "Claudio Escudero", "Cole Teeter"]
s.email = ["vicente.mundim@gmail.com", "fmesquitacunha@gmail.com", "claudioe@gmail.com", "thecatwasnot@gmail.com"]
s.authors = ["Vicente Mundim", "Felipe Mesquita", "Claudio Escudero", "Cole Teeter", "Sebastien Nicouleaud"]
s.email = ["vicente.mundim@gmail.com", "fmesquitacunha@gmail.com", "claudioe@gmail.com", "thecatwasnot@gmail.com", "sebastien.nicouleaud@gmail.com"]
s.homepage = %q{http://rugui.org}
s.rubyforge_project = %q{rugui}
s.licenses = ["GNU LGPL"]
Expand All @@ -24,7 +24,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = ">= 1.3.5"

s.add_runtime_dependency(%q<activesupport>, [">= 2.1.1"])
s.add_runtime_dependency(%q<activesupport>, [">= 2.3.9"])
s.add_runtime_dependency(%q<thor>, [">= 0.13.3"])
end

0 comments on commit fa159d1

Please sign in to comment.