rugui 1.2.2 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Changelog CHANGED
@@ -1,3 +1,7 @@
1
+ 1.3.0
2
+ - Added support to upload RuGUI to rubyforge.
3
+ - Updated README docs with new instructions for installation.
4
+
1
5
  1.2.0
2
6
  - Added support for gems dependency mechanism
3
7
 
data/README CHANGED
@@ -25,14 +25,9 @@ adapters may be written, enabling the use of RuGUI with any other GUI frameworks
25
25
 
26
26
  == Instalation
27
27
 
28
- Download the source from:
28
+ Install the gem:
29
29
 
30
- http://github.com/intelitiva/rugui/tree/master
31
-
32
- Next, build and install the gem:
33
-
34
- gem build rugui.gemspec
35
- gem install rugui-X.X.X.gem
30
+ gem install rugui
36
31
 
37
32
  To check if the installation was successful type in a console:
38
33
 
@@ -64,4 +59,4 @@ For more options type:
64
59
 
65
60
  == More info
66
61
 
67
- http://rugui.org
62
+ http://rugui.org
data/README.rdoc CHANGED
@@ -25,14 +25,9 @@ adapters may be written, enabling the use of RuGUI with any other GUI frameworks
25
25
 
26
26
  == Instalation
27
27
 
28
- Download the source from:
28
+ Install the gem:
29
29
 
30
- http://github.com/intelitiva/rugui/tree/master
31
-
32
- Next, build and install the gem:
33
-
34
- gem build rugui.gemspec
35
- gem install rugui-X.X.X.gem
30
+ gem install rugui
36
31
 
37
32
  To check if the installation was successful type in a console:
38
33
 
@@ -64,4 +59,4 @@ For more options type:
64
59
 
65
60
  == More info
66
61
 
67
- http://rugui.org
62
+ http://rugui.org
data/Rakefile CHANGED
@@ -9,24 +9,4 @@ require 'rake/rdoctask'
9
9
  require 'rubygems'
10
10
  require 'lib/rugui/tasks/rugui_framework'
11
11
 
12
-
13
- begin
14
- require 'jeweler'
15
- Jeweler::Tasks.new do |gemspec|
16
- gemspec.name = "rugui"
17
- gemspec.summary = "A simple MVC framework for RubyGTK."
18
- gemspec.email = ["vicente.mundim@intelitiva.com", "felipe.mesquita@intelitiva.com", "claudio.escudero@intelitiva.com"]
19
- gemspec.homepage = "http://rugui.org"
20
- gemspec.description = "A simple MVC framework for RubyGTK."
21
- gemspec.authors = ["Vicente Mundim", "Felipe Mesquita", "Claudio Escudero"]
22
- gemspec.add_dependency(%q<activesupport>, [">= 2.1.1"])
23
- gemspec.add_dependency(%q<rubigen>, [">= 1.5.1"])
24
- gemspec.version = "1.2.2"
25
- gemspec.date = %q{2009-04-01}
26
- gemspec.rubyforge_project = "rugui"
27
- gemspec.executables = ['rugui']
28
- gemspec.files = FileList["bin/*", "lib/**/*", "rugui_generators/**/*", "script/*", "spec/**/*", "Changelog", "LICENSE", "Rakefile", "README"].to_a
29
- end
30
- rescue LoadError
31
- puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
32
- end
12
+ require 'lib/packing/release'
@@ -0,0 +1,20 @@
1
+ begin
2
+ require 'jeweler'
3
+ Jeweler::Tasks.new do |gemspec|
4
+ gemspec.name = "rugui"
5
+ gemspec.summary = "A simple MVC framework for RubyGTK."
6
+ gemspec.email = ["vicente.mundim@intelitiva.com", "felipe.mesquita@intelitiva.com", "claudio.escudero@intelitiva.com"]
7
+ gemspec.homepage = "http://rugui.org"
8
+ gemspec.description = "A simple MVC framework for RubyGTK."
9
+ gemspec.authors = ["Vicente Mundim", "Felipe Mesquita", "Claudio Escudero"]
10
+ gemspec.add_dependency(%q<activesupport>, [">= 2.1.1"])
11
+ gemspec.add_dependency(%q<rubigen>, [">= 1.5.1"])
12
+ gemspec.version = "1.3.0"
13
+ gemspec.date = %q{2009-04-01}
14
+ gemspec.rubyforge_project = "rugui"
15
+ gemspec.executables = ['rugui']
16
+ gemspec.files = FileList["bin/*", "lib/**/*", "rugui_generators/**/*", "script/*", "spec/**/*", "Changelog", "LICENSE", "Rakefile", "README"].to_a
17
+ end
18
+ rescue LoadError
19
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
20
+ end
data/lib/rugui/version.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  module RuGUI
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
- MINOR = 2
5
- TINY = 2
4
+ MINOR = 3
5
+ TINY = 0
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rugui
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vicente Mundim
@@ -53,6 +53,7 @@ files:
53
53
  - README
54
54
  - Rakefile
55
55
  - bin/rugui
56
+ - lib/packing/release.rb
56
57
  - lib/rugui.rb
57
58
  - lib/rugui/base_controller.rb
58
59
  - lib/rugui/base_model.rb