View gist:9722841
This file contains 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 TestClass | |
@class_var_alternative = "class_var_alternative" | |
class << self | |
attr_accessor :class_var_alternative | |
end | |
end | |
puts TestClass.class_var_alternative | |
TestClass.class_var_alternative = "new value" |
View PacketInfo.java
This file contains 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
package server; | |
public class PacketInfo { | |
private String sipAddress; | |
private String branch; | |
private String viaAddress; | |
public String receiverUser; | |
public String senderUsername; | |
public String senderAddress; |
View authentication_helper.rb
This file contains 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
module AuthenticationHelper | |
def sign_in(user) | |
header('Authorization', "Token token=\"#{user.authentication_token}\", user_email=\"#{user.email}\"") | |
end | |
def create_and_sign_in_user | |
user = FactoryGirl.create(:user) | |
sign_in(user) | |
return user | |
end |
View users_spec.rb
This file contains 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
require 'rails_helper' | |
describe Api::V1::UsersController, type: :api do | |
context :index do | |
before do | |
5.times{ FactoryGirl.create(:user) } | |
5.times{ FactoryGirl.create(:admin) } | |
FactoryGirl.create(:super_admin) | |
sign_in(User.regular.last) | |
end |
View example.rb
This file contains 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} |
View 0_reuse_code.js
This file contains 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 |
View put jsonapi
This file contains 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" | |
} |
View console.rb
This file contains 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 |
View rspec-api.rb
This file contains 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 |
View rspec_api_helper.rb
This file contains 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 |
OlderNewer