rugui 1.5.2 → 1.5.3

Sign up to get free protection for your applications and to get access to all the features.
data/Changelog CHANGED
@@ -1,3 +1,6 @@
1
+ 1.5.3
2
+ - Fixed compatibility issues with ActiveSupport 3.0
3
+
1
4
  1.5.2
2
5
  - Removed unnecessary creation of .bat file in app generator
3
6
 
data/README.rdoc CHANGED
@@ -71,6 +71,13 @@ Your application may use Test::Unit or RSpec as the testing framework. If you
71
71
  have RSpec gem installed, 'rake -T' will list RSpec related tasks as well.
72
72
  Otherwise only Test::Unit tasks will be displayed.
73
73
 
74
+ == Using Active Support 3.0
75
+
76
+ When using with Active Support 3.0 you'll need to install two gems that are
77
+ needed by it:
78
+
79
+ sudo gem install tzinfo i18n
80
+
74
81
  == More info
75
82
 
76
83
  http://rugui.org
data/lib/rugui/version.rb CHANGED
@@ -2,7 +2,7 @@ module RuGUI
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 5
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/lib/rugui.rb CHANGED
@@ -1,5 +1,7 @@
1
1
  require 'rubygems'
2
2
  require 'active_support'
3
+ require 'active_support/dependencies'
4
+ require 'active_support/core_ext'
3
5
 
4
6
  module RuGUI
5
7
  class << self
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rugui
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 5
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 2
10
- version: 1.5.2
9
+ - 3
10
+ version: 1.5.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Vicente Mundim
@@ -18,7 +18,7 @@ autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
20
 
21
- date: 2010-07-05 00:00:00 -03:00
21
+ date: 2010-07-06 00:00:00 -03:00
22
22
  default_executable:
23
23
  dependencies:
24
24
  - !ruby/object:Gem::Dependency