Chris Oliver

Joined

292,390 Experience
93 Lessons Completed
295 Questions Solved

Activity

Posted in File Uploads with Refile Discussion

Check out this section in the Readme which should get you sorted out. https://github.com/refile/r...

Posted in Manage Assets With Rails Assets Discussion

If you're trying to customize something like bootstrap, you can do this: Instead of doing the *= require bootstrap, you can do @import "bootstrap" to import the file using SASS and put your custom variables above the import to override the defaults.

Basically it doesn't change from how you would normally do it, but it can be a little unclear since they don't give you any instructions. Does that make sense though?

Posted in Manage Assets With Rails Assets Discussion

You are correct. It'll use that latest version of the library. And thanks! :D

Posted in Manage Assets With Rails Assets Discussion

I believe it works by just setting the version on the gem you include.

gem "rails-assets-bootstrap", "1.0.0"

Posted in Manage Assets With Rails Assets Discussion

Awesome post! Thanks for sharing that Mohnish.

Posted in Page Specific Javascript

That's actually what I would recommend doing. If you set up your JS to look for data-behavior tags like I covered in this episode you can load things into those tags.

The best way is not to really have page specific javascript, but instead to have these little widgets that can be reused anywhere by detecting things on the page. It'll keep the JS and Rails code very separate and the flexibility of making it not tied to specific pages helps a lot in the future.

Posted in Manage Assets With Rails Assets Discussion

If you haven't tried this already, you'll probably want to include bourbon with @import instead of the require statements so you can use it in your sass code.

Posted in Manage Assets With Rails Assets Discussion

It should, but with more complex things like ckeditor, you might have to have those lang/en.js files compiled separately. Something like this based upon the filename in the Rails Assets gem.

config.assets.precompile += %w( lang/en.js )

This is definitely one part where the documentation with Rails Assets is poor.

Posted in Introduction to Importing from CSV Discussion

Definitely. This is where form objects tend to make a lot more sense because it's that much more complicated. An intermediate step of uploading, processing, and finding errors before doing the actual import can be a good thing for this too.

Posted in Manage Assets With Rails Assets Discussion

It's really, really well done. Props to the authors!

Posted in Manage Assets With Rails Assets Discussion

I'm definitely migrating over some older apps too! :)

Posted in Page Specific Javascript

This is a really great question Michael. Do you have examples of what kind of Javascript you intend to run on specific pages? I can give you some generic advice, but it's always easier to understand with some examples.

Posted in Multitenancy with Apartment Gem

Are you executing pg_dump manually from the command line? I've noticed that when it's run without the user option, it defaults to the current operating system username. Wondering if that is what's happening.

Posted in Using Vagrant for Rails Development Discussion

I haven't had the time to find any solution to that recently. Hopefully someone can leave a comment if they find a solution!

Posted in Setup MacOS 10.10 Yosemite Discussion

Sounds like your server isn't running. You can run "brew info postgres" to get the instructions for starting the postgres server.

Posted in Basic Authentication and RSS Feeds Discussion

It should be in the top right if you click on "Account" in the navigation too.

Posted in File Uploads with Refile Discussion

Yes you can. This isn't specific to Refile, but just some regular Javascript hitting the browser File api. http://jsfiddle.net/LvsYc/

Posted in Setup MacOS 10.10 Yosemite Discussion

Try restarting your terminal. That usually fixes it.

Posted in Setup MacOS 10.10 Yosemite Discussion

Yep they should! I use ZSH too, but it supports almost the exact same syntax.

Posted in Multitenancy with the Apartment gem

You probably want to create a Rake task to run through your existing users and create their tenants. You could also do this in the Rails console. Just loop through each user and then create the tenant and that should be it.

Another solution is you could catch the error when the tenant doesn't exist and to create it then. This would let you roll it out and they would each be created as they were used.

I'd probably recommend the first option because it means that all your users are running on the same code all the time. It's generally better to have consistent data than not.