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.
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!
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
···
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'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 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.
···
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 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.
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.
···
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:
On 3/26/07, Florian Groß <florgro@gmail.com> wrote:
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!
Add another user to that list. Very nice work Florian. This will
definitely come in handy!