Execute as Ruby Code Service for OS X

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.service.zip
  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.manytricks.com/
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 G.

The number is 0.70682595577091
when you select rand and hit Apple-*.

:slight_smile: It almost certainly wont, you know :wink:

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

On Mar 26, 3:33 pm, [email protected] wrote:

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

:slight_smile: It almost certainly wont, you know :wink:

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

I just need a huge user base! :wink:

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

Hi,

On 3/26/07, Florian Groß [email protected] wrote:

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

I just need a huge user base! :wink:

Add another user to that list. Very nice work Florian. This will
definitely come in handy!

Thanks,
Michael G.

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.

Florian Groß [email protected] 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/index.html

Executing selected text would be a subset. m.

On 28 Mrz., 17:10, [email protected] (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/index.html

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. :slight_smile:

On Mar 27, 10:33 pm, Benjohn B. [email protected] 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.