Search Results for "i-made-a-quiz-game-for-ruby"
Lessons
Forum Threads
How can I test sortableJs ? (RSpec)
I made a drag and drop to-do-list with SortableJs and i'm trying to test the drag-n-drop with RSpec/Selenium/Capybara if the request is sent onEnd.
I'm able to do the drag n drop using selenium `d...

1
Testing
A few issues with tidying up @mentions
Answering the second half of my question from a response Benjamin Hargett made in the video. Fixing the `_pasteHtml` method with:
```javascript
this.editor.setSelectedRange([position - endPos + st...

2
Rails
How can I implement back button and bookmark history with turbolinks ajax and rails 4?
Hmm that sounds right. Are you able to share an example app that I could take a look at? Not sure I can give you any more pointers without fiddling with some code.

4
General
How can i Configure my Trix Editor / ActionText field?
Had the same problem, your solution helped me a lot. Would be cool if there was a better way to edit the toolbar of trix.

3
General
How do I handle Koala error
My [examples](https://github.com/cmirnow/Twitter-toolkit-onRails/blob/master/app/services/twi.rb) of handling Twitter limit overruns. Hope this helps.

3
Rails
How do I add minified JS files to the Rails Webpacker
I made a stupid mistake!
Can call minified JS files also with the same way.
So, instead of '<%= javascript_pack_tag 'something.min' %>' like I did before - I just have to use '<%= j...

3
Rails
Rails Application Templates Discussion
Hi Chris please help
when installing jumpstart it pause on bellow generator
rails generate devise:views:bootstrapped
Please help!!!!

39
General
How to translate and localize apps with Rails Internationalization (18n) Discussion
Hello Chris, you mention at the end, an episode about translating modes. Is it available? I made a search but couldn't find anything other than this episode. Really appreciate any pointers!

18
General
Hatchbox deployment. public/index.html not found
To run staging on your server, make sure you have RAILS_ENV=staging set in the env vars. 👍

6
Servers
ActionController::RoutingError (No route matches [GET] "/assets/images/4.jpg"):
If you put the images in your `app/assets/images` directory, then you should be able to call the image directly with no prefix in the path. ie. `image_url('logo.png')`

4
Rails
Allow lvh.me with my ISP router
Thank you Jacob the change ```8.8.8.8``` fix the issue

13
General
Electronic Signatures with the Docusign API Discussion
I followed along but I keep getting the following in my rails console: Traceback (most recent call last):
2: from (irb):16
1: from app/models/envelope.rb:5:in `create_from_templ...

3
General
Multi-User Spreadsheets with ActionCable: Part 5 Discussion
Just an FYI... the download for this episode has "138" prepended to it instead of "141".

3
General
Recurring events with the ice_cube gem Discussion
Hi Chris.
This is an old episode and an old discussion. But it's still relevant, I watched it and used it in my Rails 7 project. But what I want to add to the Set Schedule dialog are the 'until' a...

48
General
CSV Model method and Summing Hours cleanly.
With some help this morning from Chris and me reading APIDocs on filtering arrays we came to this method which works right. :)
````
def self.to_csv(records = [], options = {})
CSV.genera...

7
General