[ANN] Reactive - The desktop application framework

Hi railers,

I’m pleased to announce a new project: Reactive

What is that? It’s a desktop application framework that is highly
inspired by Rails.
Thus it is MVC oriented and has built-in features like scaffolds.

It currenty uses wx as it’s view system.

The current release is pre-alpha, but you may already play with it.
Refer to
http://www.ruby-reactive.org for some help.

Pascal

Hi,

I have tried Reactive on Windows, but I’m getting the following error:

C:\lab>reactive mysales -w wx
uninitialized constant Reactive::Request

2008/5/15 Pascal H. [email protected]:

The current release is pre-alpha, but you may already play with it.
Refer to
http://www.ruby-reactive.org for some help.

Pascal

Posted via http://www.ruby-forum.com/.


Weverton G. de Morais
Tecnólogo em Redes de Comunicação
Desenvolvedor Delphi
Entusiasta Ruby/Rails
“Todos juntos somos fortes”

Weverton G. wrote:

Hi,

I have tried Reactive on Windows, but I’m getting the following error:

C:\lab>reactive mysales -w wx
uninitialized constant Reactive::Request

2008/5/15 Pascal H. [email protected]:

Yes, some gems needs an update. You may update them all with:
gem update

But the problem should come from rubygems itself (I have version 1.0.1)
Try :
gem update --system

Let me know.

Regards,

Pascal

Hi,

I’m sorry by late, but now it’s all working and I think wonderful. When
will
we have more examples and materials about Reactive??

2008/5/19 Pascal H. [email protected]:

Regards,

Pascal

Posted via http://www.ruby-forum.com/.


Weverton G. de Morais
Tecnólogo em Redes de Comunicação
Desenvolvedor Delphi
Entusiasta Ruby/Rails
“Todos juntos somos fortes”

Weverton G. wrote:

Hi,

I’m sorry by late, but now it’s all working and I think wonderful. When
will
we have more examples and materials about Reactive??

2008/5/19 Pascal H. [email protected]:

This first release is a proof-of-concept.
I’ll add some more features, especially in the view_wx scaffold views.

I may create a screen-cast at this stage.

After that, tests have to be written for the core and the view_wx. The
core will need some review also. Then, a first beta will be released.

I don’t plan to head the whole development, so contributors are welcome!

Cheers,

Pascal

Hello!

I have a trouble. I can’t install reactive_view_wx gem. This is an error
msg:

===========
ERROR: Error installing reactive_view_wx:
ERROR: Failed to build gem native extension.

rake RUBYARCHDIR=C:/Program
Files/ruby/lib/ruby/gems/1.8/gems/wxruby-1.9.7-x86-mswin32-60/lib
RUBYLIBDIR=C:/Program Files/ruby/lib/ruby/gems/1.8/gems/
wxruby-1.9.7-x86-mswin32-60/lib
(in C:/Program
Files/ruby/lib/ruby/gems/1.8/gems/wxruby-1.9.7-x86-mswin32-60/temp)
rake aborted!
Don’t know how to build task
‘Files/ruby/lib/ruby/gems/1.8/gems/wxruby-1.9.7-x86-mswin32-60/lib’

(See full trace by running task with --trace)

Gem files will remain installed in C:/Program
Files/ruby/lib/ruby/gems/1.8/gems/wxruby-1.9.7-x86-mswin32-60 for
inspection.
Results logged to C:/Program
Files/ruby/lib/ruby/gems/1.8/gems/wxruby-1.9.7-x86-mswin32-60/temp/gem_make.out

It seems that the reason is in the space in the path. Can somebody help
me plz?

I install reactive, the dependecies of reactive_view_wx and update gem
–system.

but I have a trouble creating the reactive project…

C:>reactive mysales -w wx
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:32:in
gem_original_re from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/ custom_require.rb:32:inre from c:/ruby/lib/ruby/gems/1.8/gems/
activesupport-2.1.0/lib/active_suppo from c:/ruby/lib/ruby/gems/
1.8/gems/activesupport-2.1.0/lib/active_suppo from c:/ruby/lib/
ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_suppo from c:/
ruby/lib/ruby/gems/1.8/gems/wxruby-1.9.7-universal-darwin-9/
lib/ from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/
custom_require.rb:27:in ge from c:/ruby/lib/ruby/site_ruby/1.8/ rubygems/custom_require.rb:27:inre from c:/ruby/lib/ruby/gems/
1.8/gems/activesupport-2.1.0/lib/active_suppo … 17 levels…
from c:/ruby/lib/ruby/gems/1.8/gems/rubigen-1.3.2/lib/rubigen/
scripts/… from c:/ruby/lib/ruby/gems/1.8/gems/reactive-0.1.0/
bin/reactive:16
from c:/ruby/bin/reactive:16:in `load’
from c:/ruby/bin/reactive:16

can You help me?

Vladimir Scherbina wrote:

Hello!

I have a trouble. I can’t install reactive_view_wx gem. This is an error
msg:

Hello,

Your problem comes from the dependencies of reactive_view_wx, it depends
on the wxruby gem.

You better first install the wxruby gem (because there are platform
specific packages). type this:
gem install wxruby

You may then install reactive_view_wx with
gem install reactive_view_wx

Note that reactive_view_wx 0.1.0 will only work with actionpack 2.0.x
and not the lateset 2.1.x

Regards,

Pascal