[Rails] [Screencast] ActionCable - Part 3 - Securing Your WebSockets

2016-07-25 Thread Dave Kimura
Using authentication and authorization, lock down your ActionCable WebSockets so that messages are only sent and received to the intended users. https://www.driftingruby.com/episodes/actioncable-part-3-securing-your-websockets -- Posted via http://www.ruby-forum.com/. -- You received this messa

[Rails] [Screencast] ActionCable - Part 2 - More Complex Example

2016-07-18 Thread Dave Kimura
Extending the previous episode, we look into making a realtime poll application where users can get live feedback on voting. https://www.driftingruby.com/episodes/actioncable-part-2-more-complex-example -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subs

[Rails] [Screencast] ActionCable - Part 1 - Configuration and Basics

2016-07-11 Thread Dave Kimura
A walkthrough on configuring ActionCable with Rails 5. Learn how to configure your mount points and the basics of using ActionCable with your Rails application. https://www.driftingruby.com/episodes/actioncable-part-1-configuration-and-basics -- Posted via http://www.ruby-forum.com/. -- You re

[Rails] [Screencast] ActionController::Renderer

2016-07-05 Thread Dave Kimura
ActionController::Renderer allows you to render arbitrary templates without requirement of being in controller actions. https://www.driftingruby.com/episodes/actioncontroller-renderer -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google

[Rails] [Screencast] Importing and Exporting CSV Data

2016-06-27 Thread Dave Kimura
https://www.driftingruby.com/episodes/importing-and-exporting-csv-data Basics on importing and exporting CSV Data using Ruby and without gems. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To

[Rails] Tutorial - Playing with JSON

2016-06-20 Thread Dave Kimura
Some neat tips and tricks for interacting with and parsing JSON responses from an API. https://www.driftingruby.com/episodes/playing-with-json -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To

[Rails] [Screencast] Progressive Render

2016-06-13 Thread Dave Kimura
Slow content got you down? Load it later! Use this gem to defer loading of portions of your page until after load. They will be fetched via AJAX and placed on the page when ready. https://www.driftingruby.com/episodes/progressive-render -- Posted via http://www.ruby-forum.com/. -- You received

[Rails] [Screencast] Production Deployment on Ubuntu

2016-05-31 Thread Dave Kimura
A guide to configure your Ubuntu installation and deploy a Ruby on Rails application. Lock down the settings to prevent unwanted access. https://www.driftingruby.com/episodes/production-deployment-on-ubuntu -- Posted via http://www.ruby-forum.com/. -- You received this message because you are

[Rails] [Screencast] Eager Loading with Goldiloader

2016-05-23 Thread Dave Kimura
https://www.driftingruby.com/episodes/eager-loading-with-goldiloader Wouldn't it be awesome if ActiveRecord didn't make you think about eager loading and it just did the "right" thing by default? With Goldiloader it can! -- Posted via http://www.ruby-forum.com/. -- You received this message be

[Rails] [Screencast] Infinite Scrolling

2016-05-16 Thread Dave Kimura
https://www.driftingruby.com/episodes/infinite-scrolling Infinite scrolling is now a common feature and there are several cases where it is really useful. For instance there are some websites where we simply can’t imagine a good pagination system, like Twitter or even Facebook. -- Posted via htt

[Rails] [Screencast] WYSIWYG Editor with Trix

2016-05-09 Thread Dave Kimura
Compose beautifully formatted text in your web application. Trix is a WYSIWYG editor for writing messages, comments, articles, and lists. https://www.driftingruby.com/episodes/wysiwyg-editor-with-trix -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscr

[Rails] [Screencast] WYSIWYG Editor with Summernote

2016-05-02 Thread Dave Kimura
Integrate Summernote WYSIWYG Editor into your application. Learn how to use AJAX callbacks to filestore your images instead of database Base64. https://www.driftingruby.com/episodes/wysiwyg-editor-with-summernote -- Posted via http://www.ruby-forum.com/. -- You received this message because yo

[Rails] [Screencast] Meta Tags

2016-04-25 Thread Dave Kimura
https://www.driftingruby.com/episodes/meta-tags Adding Meta Tags to your website is important for SEO ranking and content display. Learn how to easily add meta tags to your Ruby on Rails application. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscri

[Rails] Rails Wiki solution on Windows?

2013-07-10 Thread Dave Kimura
You can look into Bitnami which has turnkey installers for wikis. Its really easy to configure and not invasive on your system. MediaWiki is one of the most popular ones that ive found and closest to wikipedia. -- You received this message because you are subscribed to the Google Groups "Ruby

[Rails] Re: cancan roles issue

2013-07-02 Thread Dave Kimura
if user.role? :admin looks strange. the .role? indicates that it is a boolean, no? On Monday, July 1, 2013 6:22:46 PM UTC-4, Phil wrote: > > Rails 3.2.11 > Ruby 2 > > > Hi, > > I am building my first rails app and decided to use Devise(2.2.4) and > Cancan(1.6.10) for auth and role management. Th

[Rails] Re: cannot load such file -- openssl (again)

2012-02-26 Thread Dave Kimura
Just in case you needed more information, it can be confusing if you're using the Debian dpkg installer and then receive this error. You can download the source code file as well and extract it. Under source/ext/openssl you can then run ruby extconf.rb Prior to this you should have installed ru

[Rails] Re: Rails 3 route problem

2011-02-12 Thread Dave Kimura
I think that I am experiencing the same issue. My background on Rails is fairly limited, but since upgrading to Rails 3.0.4, I've had issues testing my controller on live server. Webrick works fine, but when I test my application on my server, it gives me the 404 HTML Error. I'm using a test-liv