SSH Terminal in Browser in Ruby - ruby

I've taken a look at the Net-SSH gem, but it doesn't seem to support the in browser aspect. Before I start integrating that gem with javascript and a full user interface, I just wanted to ask the community if there are any libraries that have done this for me already. Feel free to suggest libraries outside of ruby. Any and all suggestions welcome.

There is already a product: GateOne. But sorry it is Python.

Related

Ruby implementations of SCIM v2

SCIM is a fresh standard for user provisioning put forward by Google, Salesforce, Ping Identity..etc.. Are there existing ruby implementations to support this?
Similar but for Java
You can get an Okta-oriented start from here or start from scratch here but I think you're otherwise on your own.
Yay! You've got an opportunity to contribute an open source project to the Ruby community :)

Cloud 9 IDE and Ruby on Rails

Has anyone successfully created a Ruby on Rails (2.3.8) with Ruby (1.8.7) on the Cloud 9 IDE?
I have tried several times, but the lack of documentation is a bit irritating, and every time I attempt to load the version of Ruby on Rails and Ruby that I need the whole workspace seems to break.
Any assistance would be greatly appreciated. I can supply any additional information needed upon request.
Link to more information from post on Cloud9 IDE website: Cloud9 IDE Support
Thank you for you time.
I used Cloud9 for around a year, and ended up migrating to Koding mainly because of issues like this. Koding gives you root access in your VM, so you can install and use whatever you like. None of these permission issues :)

Ruby API for Google Voice

Is there a ruby API/Gem for Google Voice that anyone could recommend? I found this gem http://rubydoc.info/gems/google-voice/ but it appears to be half-baked and I haven't had much success using it.
For Python there appears to be some viable options but would prefer a ruby option.
The reason I am interested in this is I would like to write some scripts to automate tasks that I can't do using the web application e.g. archive all read messages etc. If this is not possible in ruby right now I would like to know if anyone has had success with a different platform and Google Voice.
I cant say this satisfies your need completely.
I found this through googling
https://github.com/bratta/googlevoiceapi
and this java based, may be u can use this if u go with jruby
http://code.google.com/p/google-voice-java/
I haven't tried any but that does not stop you from experimenting :)

What is the easiest way to install Ruby on my server

I want to code pages in Ruby so that my website can be run in Ruby (just like I have a php install on my server).
What's the easiest way to go about this?
You can use Heroku and forget about Ruby server installation.
The answer to this question varies heavily depending on your operating system. But instructions for downloading and installing ruby on many systems are on the download page.
However, if you're planning on using it for a webserver, you probably also want Rails.

Accessing Microsoft Exchange server from Ruby

I need to sync MS Exchange's contacts with my Ruby on Rails application.
Which is the best way? Would you recommend any existing gems for it?
One place to start would be the Exchange Developer Center, where Microsoft links to downloads of the different SDKs, documentation, etc. Understandably, most of the docs and examples will be using Microsoft's .NET Framework and languages.
If you want to connect with Exchange 2007 or 2010, you'll probably find it easiest to use some form of Exchange Web Services (EWS) which you may be able to connect to using Ruby web services frameworks like SOAP4R, WSO2, etc.
For Exchange 2003 and earlier, you're much more limited; and programming CDO through Ruby's win32ole is not going to be pretty or fun.
Perhaps https://rubygems.org/gems/exchanger exchanger gem will help you.
Ruby library for accessing Microsoft Exchange using Exchange Web
Services. This library tries to make creating and updating items as
easy as possible. It will keep track of changed properties and will
update only them.
I tested viewpoint gem and it works. Be sure to follow wiki page for instructions, because readme is a little bit deprecated.
perhaps using win32ole?
Updating this thread a bit, 5 years later: this gem looks promising, starting to test it right now: https://github.com/WinRb/Viewpoint

Resources