spec
|--- apis #do not put into controllers folder.
|--- your_api_test_spec.rb
|--- controllers
|--- models
|--- factories
|--- views
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
| #Mixins as I sometimes want them. Proper Composition. | |
| #It probably requires different approach on how we write mixins atm. | |
| #@vasilakisfil | |
| module NamespacedMixin | |
| module ClassMethods | |
| def namespace(name, as:) | |
| namespace = as | |
| namespaced_class = name.split('::').inject(Object) {|o,c| o.const_get c} |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| PUT /articles/1 | |
| Content-Type: application/vnd.api+json | |
| Accept: application/vnd.api+json | |
| { | |
| "articles": { | |
| "title": "Rails is a Melting Pot", | |
| "links": { | |
| "author": "1" | |
| } |
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
| import Ember from 'ember'; | |
| import Notify from 'ember-notify'; | |
| export default Ember.Route.extend(ApplicationRouteMixin, { | |
| actions: { | |
| error: function (errorObject) { | |
| if (errorObject) { | |
| if (errorObject.status === 401) { | |
| return this.transitionTo('login'); |
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
| # copy and store in another variable: | |
| [16] pry(main)> hash1 = {a: 'asdasd', b: 'asdasd'} | |
| => {:a=>"asdasd", :b=>"asdasd"} | |
| [17] pry(main)> hash2 = hash1 | |
| => {:a=>"asdasd", :b=>"asdasd"} | |
| [18] pry(main)> hash2.delete(:a) | |
| => "asdasd" | |
| [19] pry(main)> hash2 | |
| => {:b=>"asdasd"} | |
| [20] pry(main)> hash1 |
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
| class ObjectHash | |
| attr_accessor :hash | |
| def initialize(hash) | |
| @hash = HashWithIndifferentAccess.new(hash) | |
| end | |
| def method_missing(name) | |
| return hash[name] if hash.key? name |
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
| #rspec/support/rspec_api_helper.rb | |
| module RspecApiHelper | |
| module ExampleMethods | |
| def objectize_resources(json, root: root) | |
| array = [] | |
| array_hash = HashWithIndifferentAccess.new(MultiJson.load(json)) | |
| if root | |
| array_hash = array_hash[root] | |
| end |
Your application is growing, and you are starting to have a complex mailing system: notification emails, retention emails, misc user emails, admin emails, etc...
It's time to clean up your mailers !
You may already have a single mailer, responsible of every emails, like this one: