Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.ruby > #3645
| From | 7stud -- <bbxx789_05ss@yahoo.com> |
|---|---|
| Newsgroups | comp.lang.ruby |
| Subject | Re: calling methods, beginner help |
| Date | 2011-04-28 13:03 -0500 |
| Organization | Service de news de lacave.net |
| Message-ID | <da29582ae9eed835f8483d1af887180c@ruby-forum.com> (permalink) |
| References | <626238bd776ed0898a473c7a16e02fb5@ruby-forum.com> <560a5f2c1a7578882b0fd9ce72f43724@ruby-forum.com> |
Ronnie Aa wrote in post #995580:
> Thanx for your answers. I know: never use global variables ... and no
> monkey patching ...I'll try.
>
Whoa, you can use monkey patching if you follow some guidelines.
> I'm programming for sketchup api. My code structure is like this
>
> module Module
>
> class Do_this
> def initialize()
> end;end;
>
>
> class Do_that
> def initialize()
> end;end;
>
>
The formatting and lack of indenting you are using is unacceptable.
>
> #When I want to execute a command I have to add a button in the GUI of
> Sketchup, like this:
>
>
> cmd = UI::Command.new("Do this") {Module::Do_this.new()}
> UI.menu("Plugins").add_item(cmd)
>
> end#module
> #-------------------------------------------------------
> So as markus suggested
>
> class Test
> def initialize
> @array = [10,10]
> end
>
> def product
> @array.inject(1) { |s,v| s *= v }
> end
> end
>
> And than run *outside* the class:
>
> object = Test.new
> object.product # => 100
>
>
> Is in my case impossible: it has to run *inside* a class
>
What does that mean?
> Just did some quick reading about procs, is that an option???
>
> For extra clearness:
>
> My class Do_this and my class Do_that both have to use that method..
> They both use the same variable and both have to apply the same
> operations on that variable (amongst other things of course)..
>
>
> Please help
It sounds like you are trying to reinvent someone's wheel. Anything you
are trying to do has already been done before--or you are going about it
the wrong way.
--
Posted via http://www.ruby-forum.com/.
Back to comp.lang.ruby | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
calling methods, beginner help Ronnie Aa <liquid98@gmail.com> - 2011-04-28 12:06 -0500
Re: calling methods, beginner help Markus Schirp <mbj@seonic.net> - 2011-04-28 12:14 -0500
Re: calling methods, beginner help 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-28 12:23 -0500
Re: calling methods, beginner help Ronnie Aa <liquid98@gmail.com> - 2011-04-28 12:44 -0500
Re: calling methods, beginner help Markus Schirp <mbj@seonic.net> - 2011-04-28 13:03 -0500
Re: calling methods, beginner help 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-28 13:03 -0500
Re: calling methods, beginner help Brian Candler <b.candler@pobox.com> - 2011-04-28 15:29 -0500
Re: calling methods, beginner help Ronnie Aa <liquid98@gmail.com> - 2011-04-28 13:40 -0500
Re: calling methods, beginner help Ronnie Aa <liquid98@gmail.com> - 2011-04-28 16:05 -0500
Re: calling methods, beginner help Brian Candler <b.candler@pobox.com> - 2011-04-29 03:02 -0500
Re: calling methods, beginner help Ronnie Aa <liquid98@gmail.com> - 2011-04-29 04:27 -0500
Re: calling methods, beginner help Brian Candler <b.candler@pobox.com> - 2011-04-29 13:19 -0500
Re: calling methods, beginner help Stu <stu@rubyprogrammer.net> - 2011-04-29 15:24 -0500
csiph-web