angularonrails.com
Angular on Rails E-Book - Angular on Rails
https://www.angularonrails.com/angular-rails-book
Start Here If You’re New. Angular on Rails E-Book. There still isn’t a lot of super great content out there on how to integrate AngularJS with Ruby on Rails. It’s frustrating to have to google around and try blog post after blog post that. Works but doesn’t quite cut it. It would be nice to have a complete, well-written resource that spells everything out for you. That’s what I intend to create. I’m working on an Angular Rails ebook that features:. Proper spelling and grammar. Get Notified of Launch.
angularonrails.com
Interview with Tero Parviainen, author of Build Your Own AngularJS - Angular on Rails
https://www.angularonrails.com/interview-with-tero-parviainen-author-of-build-your-own-angularjs
Start Here If You’re New. Interview with Tero Parviainen, author of Build Your Own AngularJS. I talked with my friend Tero Parviainen about his outstanding Angular book, Build Your Own AngularJS. As well as what it was like to transition from Java to Rails to front-end, as well as CoffeeScript vs. ES6, Angular 2, and a few other topics. Enjoy. Hello everyone, I’m Jason Swett, author of angularonrails.com. I’m here with my friend Tero, author of Build Your Own AngularJS. Back then it seemed like a lot mor...
angularonrails.com
How to Use RSpec to Test an Angular/Rails Single-Page Application - Angular on Rails
https://www.angularonrails.com/use-rspec-test-angular-rails-single-page-application
Start Here If You’re New. How to Use RSpec to Test an Angular/Rails Single-Page Application. I struggled for some time deciding how to “properly” put together an integration test for an Angular/Rails single-page application. First I tried to drive Rails with Protractor but that felt weird. Then it dawned on me that the fact that the SPA-ness of my Rails app is just a detail. This is a Rails app that. To be a single-page application. I can still use RSpec to test my SPA just like I would for a non-SPA.
angularonrails.com
Get Help - Angular on Rails
https://www.angularonrails.com/get-help
Start Here If You’re New. To get help for free. Put up a question on Stack Overflow. Link me to the Stack Overflow question via comment or email ( jason@benfranklinlabs.com. I’ll help you if I can. To hire me to help you. Email me at jason@benfranklinlabs.com. I’ll email you back and we’ll set up a time to talk. What you can hire me for. Mowing your lawn at a very unreasonable pay rate. One thought on “ Get Help. November 4, 2015 at 10:05 am. Can I use the code for this application:. On Putting the Angul...
angularonrails.com
About the Author - Angular on Rails
https://www.angularonrails.com/about
Start Here If You’re New. Hi, I’m Jason Swett. I’m a Rails and Angular consultant who has done work for a variety of clients from places like AT&T and Dow Jones to small startups. In addition to coding I offer mentorship and training services. In 2015, while working for Andela. Under CTO Obie Fernandez, I traveled to Lagos, Nigeria to teach Rails, Angular and other technologies to a team of 50 developers. One thought on “ About the Author. July 22, 2014 at 10:17 am. Angular 2 Service Test Example. On Put...
angularonrails.com
How to Wire Up Ruby on Rails and AngularJS as a Single-Page Application (Gulp Version) - Angular on Rails
https://www.angularonrails.com/how-to-wire-up-ruby-on-rails-and-angularjs-as-a-single-page-application-gulp-version
Start Here If You’re New. How to Wire Up Ruby on Rails and AngularJS as a Single-Page Application (Gulp Version). Important note: This tutorial no longer works if followed verbatim. I would recommend my more recent updated-for-2016. Why this tutorial exists. I wrote this tutorial because I had a pretty tough time getting Rails and Angular to talk to each other as an SPA. The best resource I could find out there was Ari Lerner’s Riding Rails with AngularJS. Setting up our Rails project. I’ve tried t...
angularonrails.com
Object-Oriented AngularJS Service Example - Angular on Rails
https://www.angularonrails.com/object-oriented-angularjs-service-example
Start Here If You’re New. Object-Oriented AngularJS Service Example. I’ve seen some examples of using AngularJS services online that follow the convention of. I was confused about how to use AngularJS without throwing all my useful object-oriented programming experience out the window. I’ve come up with a solution that I think I like. Here’s how I’m using my. Class in a controller:. Use strict" angular.module("myApp").controller "PaymentsCtrl", ($scope, Report) - report = new Report() $scope....After com...
angularonrails.com
How to Wire Up Ruby on Rails and AngularJS as a Single-Page Application - Angular on Rails
https://www.angularonrails.com/ruby-on-rails-angularjs-single-page-application
Start Here If You’re New. How to Wire Up Ruby on Rails and AngularJS as a Single-Page Application. This post is now somewhat outdated. If you’re interested in Angular/Rails/Grunt/JavaScript/HTML, read on. If you’d prefer Angular/Rails/Gulp/CoffeeScript/Jade, check out this newer post. Why this tutorial exists. There’s a certain sample app I plan to use throughout AngularOnRails.com. I also created a branch specifically to match up with this tutorial here. Setting up our Rails project. Cd fake lunch hub.
angularonrails.com
How To Get HTML5 pushState Working With Angular And Rails - Angular on Rails
https://www.angularonrails.com/get-html5-pushstate-working-angular-rails
Start Here If You’re New. How To Get HTML5 pushState Working With Angular And Rails. There are three steps to getting HTML5 pushState working in an Angular/Rails SPA. The first step is to enable pushState within Angular. This is super simple. If you just do the first step it will. Enable pushState in Angular. Fix the reload problem for the development environment. Fix the reload problem for the production environment. Before you dive deep into this post. My advice doesn’t. File (which includes the releva...