[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

[ANN] Execute as Ruby Code Service for OS X

Florian Groß

3/26/2007 12:52:00 PM

Moin.

I've written a system service for OS X that allows you to execute
selected Ruby code in any OS X application by hitting Apple-* --
Adium, Safari, X-Chat, Mail, TextMate, more. Use it as a calculator or
for quickly executing any kind of Ruby code.

It will turn
The number is rand
into
The number is 0.70682595577091
when you select rand and hit Apple-*.

It will turn
"Hello World".reverse
into
"dlroW olleH"
when you select the line and hit Apple-*.

It also supports these things:
2**32#
x = 0
5.times do
x += 5#
end
raise#

They result in this when you select everything and hit Apple-*:
2**32 # => 4294967296
x = 0
5.times do
x += 5 # => 5, 10, 15, 20, 25
end
raise # ~> -:7: unhandled exception

It uses mfp's xmpfilter.rb and ThisService and is written in Ruby.

To install:
1) Download http://flgr.0x42.net/ExecuteasRubycode.s...
2) Unextract the archive if your browser hasn't done so already.
3) Move ExecuteasRubycode.service to ~/Library/Services or /Library/
Services.
4) Relogin to OS X.

You can use Service Scrubber (http://www.manyt...
servicescrubber/) to assign a custom hot key.

To see or modify the source code right click the service, select 'Show
package contents' and navigate to Contents/Resources.

Kind regards,
Florian Gross

7 Answers

benjohn

3/26/2007 1:33:00 PM

0

> Moin.
>
> I've written a system service for OS X that allows you to execute
> selected Ruby code in any OS X application by hitting Apple-* --
> Adium, Safari, X-Chat, Mail, TextMate, more. Use it as a calculator or
> for quickly executing any kind of Ruby code.
>
> It will turn
> The number is rand
> into
> The number is 0.70682595577091
> when you select rand and hit Apple-*.

:) It almost certainly wont, you know ;-)

That sounds great though, I'll be grabbing it tonight. Thanks!




Florian Groß

3/26/2007 2:14:00 PM

0

On Mar 26, 3:33 pm, benj...@fysh.org wrote:

> > It will turn
> > The number is rand
> > into
> > The number is 0.70682595577091
> > when you select rand and hit Apple-*.
>
> :) It almost certainly wont, you know ;-)
>
> That sounds great though, I'll be grabbing it tonight. Thanks!

I just need a *huge* user base! ;)

benjohn

3/27/2007 8:33:00 PM

0


On 26 Mar 2007, at 13:55, Florian Groß wrote:

> Moin.
>
> I've written a system service for OS X that allows you to execute
> selected Ruby code in any OS X application by hitting Apple-* --
> Adium, Safari, X-Chat, Mail, TextMate, more. Use it as a calculator or
> for quickly executing any kind of Ruby code.

I'm sure I'm doing something wrong, but this isn't working for me.
It's installed (well, I can see it in the services menu anyway), but
if I select some text and select it, nothing seems to happen. Would
you like some error diagnosis? I don't know where to start providing
further information, sorry.

Cheers,
Benj


Florian Groß

3/28/2007 1:27:00 AM

0

On Mar 27, 10:33 pm, Benjohn Barnes <benj...@fysh.org> wrote:

> I'm sure I'm doing something wrong, but this isn't working for me.
> It's installed (well, I can see it in the services menu anyway), but
> if I select some text and select it, nothing seems to happen.

I think the archive I uploaded was broken. I've reuploaded it and it
works now.


Unfortunately, there seems to be a bug in Apple's Mail.app: When you
try to use the service in its compose mail text panel the clip board
will be pasted instead. In other fields in Mail.app the service will
work as expected, however. This has been reported to Apple months ago
by ThisService's author.

Dave Baldwin

3/28/2007 7:27:00 AM

0

I found a similar thing. It doesn't work in Mail (just beeps), but
works in other apps (TextEdit and TextMate are the ones I tried).

Dave.


On 27 Mar 2007, at 21:33, Benjohn Barnes wrote:

>
> On 26 Mar 2007, at 13:55, Florian Groß wrote:
>
>> Moin.
>>
>> I've written a system service for OS X that allows you to execute
>> selected Ruby code in any OS X application by hitting Apple-* --
>> Adium, Safari, X-Chat, Mail, TextMate, more. Use it as a
>> calculator or
>> for quickly executing any kind of Ruby code.
>
> I'm sure I'm doing something wrong, but this isn't working for me.
> It's installed (well, I can see it in the services menu anyway),
> but if I select some text and select it, nothing seems to happen.
> Would you like some error diagnosis? I don't know where to start
> providing further information, sorry.
>
> Cheers,
> Benj
>
>


matt

3/28/2007 3:10:00 PM

0

Florian Groß <florgro@gmail.com> wrote:

> Moin.
>
> I've written a system service for OS X that allows you to execute
> selected Ruby code in any OS X application by hitting Apple-* --
> Adium, Safari, X-Chat, Mail, TextMate, more. Use it as a calculator or
> for quickly executing any kind of Ruby code.

Just FYI, see also Bellhop, which allows you to use Ruby code *as* a
system service:

<http://www.xendai.com/bellhop/library/inde...

Executing selected text would be a subset. m.

--
matt neuburg, phd = matt@tidbits.com, http://www.tidbits...
Tiger - http://www.takecontrolbooks.com/tiger-custom...
AppleScript - http://www.amazon.com/gp/product/...
Read TidBITS! It's free and smart. http://www.t...

Florian Groß

3/28/2007 3:22:00 PM

0

On 28 Mrz., 17:10, m...@tidbits.com (matt neuburg) wrote:

> Just FYI, see also Bellhop, which allows you to use Ruby code *as* a
> system service:
>
> <http://www.xendai.com/bellhop/library/inde...
>
> Executing selected text would be a subset. m.

Ah, that's an alternative to ThisService with more features then?

ThisService allows you take anything the console executes and turn it
into a service by feeding the selection to the service as STDIN and
replacing it by STDOUT.

My service is itself written in Ruby. :)