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 +4 -0
- data/README +3 -8
- data/README.rdoc +3 -8
- data/Rakefile +1 -21
- data/lib/packing/release.rb +20 -0
- data/lib/rugui/version.rb +2 -2
- metadata +2 -1
data/Changelog
CHANGED
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
|
-
|
|
28
|
+
Install the gem:
|
|
29
29
|
|
|
30
|
-
|
|
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
|
-
|
|
28
|
+
Install the gem:
|
|
29
29
|
|
|
30
|
-
|
|
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
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.
|
|
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
|