This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The following is a list of places where you can find job offers as a Rails developer: | |
| https://twitter.com/currofile | |
| https://twitter.com/domestikaempleo #spain only | |
| http://www.workingwithrails.com/ | |
| https://weworkremotely.com/jobs/search?term=rails | |
| https://jobs.github.com/ | |
| http://trabajosrails.com/ # spain only | |
| http://www.indeed.com/q-Ruby-On-Rails-Developer-jobs.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('#products').append('<%= j render(@products) %>'); | |
| <% if @products.next_page %> | |
| $('.pagination').replaceWith('<%= j will_paginate(@products) %>'); | |
| <% else %> | |
| $('.pagination').remove(); | |
| <% end %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## | |
| # A Rake interface to creating a tunnel using ssh. | |
| # This file originally comes with the facebooker gem for Ruby on Rails: http://github.com/mmangino/facebooker | |
| # | |
| # How to use: | |
| # 1. Simply put it at a proper place. e.g. lib/tasks/ in your Rails application | |
| # 2. Create a config file 'easy_tunnel.yml' like following: | |
| # | |
| # development: | |
| # public_host_username: host_user_name |
NewerOlder