Sunday, 11 September 2011

Ruby on Rails Job at Memory Reel (Dallas, Texas

Required Senior Web Developer (Ruby on Rails) to join our team

The tech skills:
-Stellar Ruby on Rails development skills - a big plus if you've participated in Open Source Contributions or worked on the core team.
-Along with that, a strong SQL Plus background from query optimization to server configuration and tuning. Your SQL has got to be fast. A plus if you've worked with databases like RIAK, Cassandra or Voldemort.
-A few years of experience writing complex JavaScript. We're currently using jQuery but you should be versed in many JS frameworks.
-Some experience working with 3rd party APIs, particularly real time API's such as Twitter's.
-Rounding it out, some front-end skills as well (HTML, CSS, etc), some Linux admin skills, and overall tech savvy to find solutions to get the job done.


apply through email: services@memoryreel.com

  

Friday, 9 September 2011

Ruby Conference 2011

RubyConf 2011 @ New Orleans

RubyConf is the official International Ruby Conference. Founded in 2001, RubyConf has provided an annual venue for the ever-growing Ruby community to meet face to face to share, collaborate, and socialize.

venue :
$153 Crowne Plaza Hotel Astor-New Orleans‎
739 Canal Street
New Orleans, LA 70130
(888) 891-9563

schedule : 
A complete schedule with the author and his presentation has been listed here.  http://rubyconf.org/schedule
Few of the Important authors are : Yukihiro Matsumoto, Amit Kumar, Jim Weirich, Piotr Szotkowski, Avdi Grimm and many more


sponsor:  You can be sponsor and make your self advertised at top.




Get register and make the event sucess.. cheerss...


online event management




Ruby on Rails Job at ettain group




 ettain group has an immediate opening for a Ruby on Rails Developer  in Atlanta, GA

Requirements
 expert with Ruby on Rails.
 good knowldeg on commercial Web-based products
 strong Web development background using JRuby, JavaScript, CSS, HTML, XML, XSLT, etc.
 communication skills should be good

  please apply online @ http://www.ettaingroup.com

there are some 700 unfilled Ruby on Rails jobs.

Recently while reading an article, I came to see there are huge number of job openings are still left with unfilled state. some 700 unfilled Ruby on Rails jobs. . This shows the growth of ruby on rails development and its demand. In recent days Ruby on rails development team has been increasing day by day... I feel so proud to be a part of ruby on rails development team.

Here are the few words from that article.

Ruby on Rails has become the language of choice for many developers because it has shown to be scalable and has been successfully used in some large corporate development projects and large consumer web services. And so the demand for Ruby on Rails specialists is soaring. Mr Dillon points out that in San Francisco, there are some 700 unfilled Ruby on Rails jobs.

 But despite the popularity of Rails Mr. Dillion believes there’s a strong future for PHP to become a strong Rails competitor. Which is why the company recently acquired Irish startupOrchestra, because the same technologies that support its Ruby on Rails customers can be used to support PHP development.


Thank you,
Uma Mahesh


Wednesday, 7 September 2011

Payment could not be processed, please check the details you entered with Authorize.net in spree

 When I am working with Authorize.net payment gateway in Spree application in rails. I have face issue with payment process. I have faced issue and used to get

error: Payment could not be processed, please check the details you entered


After gogling for solution, I have found one more solution. Here is the reference URL.

http://blog.endpoint.com/2010/04/spree-authorizenet-authorization.html



In this they have given few tips to make the payment gateway authorize.net to work in spree. He mentioned that "Mark Johnson responded to my question on authorize versus authorize and capture that the Authorize.Net request type be changed from "AUTH_ONLY" to "AUTH_CAPTURE"."



The auto_capture setting defaults to false, not surprisingly, so it can be updated with one of the following changes.



# *_extension.rb:
def activate
  AppConfiguration.class_eval do
    preference :auto_capture, :boolean, :default => true
  end
end

# EXTENSION_DIR/config/initializers/*.rb:
if Preference.table_exists?
  Spree::Config.set(:auto_capture => true)
end


 So finally I have made changes in  config/initializers/*.rb by adding below lines.


if Preference.table_exists?
  Spree::Config.set(:auto_capture => true)
end



The above modifications worked for me to make a successful checkout.



While checking through the Authorize.net merchant account I didn't found the last transcation what i have made form the application.

Tuesday, 6 September 2011

Webbynode as free hosting provider for ruby on rails applications

Webbynode is a ruby on rails web application deployment and hosting platform. You Can deploy your rails applications  in your own dedicated instance. You will have full control, and you can run as many applications.

Here are the simple steps.

Install the gem in your system.
$ sudo gem install webbynode
$ webbynode init mywebby

Now prepare a sample application with some functionality and make it ready to commit.
Push the code with below commands.

 $ webbynode push
 $ webbynode open

 You Can modified files with below commands same as git
$ git add .
$ git commit -m "example"
$ webbynode push

By this way you are pushing your local application to webbynode provider. This is same as heroku. It also provides addon's same as heroku.

You can get the complete information about the webbynode at their official website.
URL : http://webbynode.com/

It provides different packages where you can choose as per your requirement.

Thank You,
Uma Mahesh.
Facebook : Maheshseeram