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
module Common | |
module Client | |
module FaradayConnection | |
end | |
end | |
end | |
module Pullson |
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
module A | |
module B | |
end | |
end | |
module C | |
include A | |
puts B.inspect # => A::B |
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 Proxy | |
def proxy(context, &blk) | |
@context = context | |
@blk = blk | |
end | |
def method_missing(method, *args, &blk) | |
__object.send(method, *args, &blk) | |
end |
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 Proxy | |
def self.proxy(context, &blk) | |
p = new(context) | |
p.__proxy &blk | |
p | |
end | |
def initialize(context) | |
@context = context | |
end |
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
irb(main):008:0> x = Enumerator.new(Float::INFINITY) { yield 1 } | |
=> #<Enumerator: #<Enumerator::Generator:0x007f85531b6360>:each> | |
irb(main):009:0> x.size | |
=> Infinity |
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
>> be vim | |
Your Ruby version is 2.2.3, but your Gemfile specified 2.1.7 | |
Vim: Caught deadly signal SEGV | |
Vim: Finished. | |
Segmentation fault: 11 |
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
# This is the default .slate file. | |
# If no ~/.slate file exists this is the file that will be used. | |
config defaultToCurrentScreen true | |
config nudgePercentOf screenSize | |
config resizePercentOf screenSize | |
config modalEscapeKey esc | |
alias modal esc,ctrl | |
alias mt ${modal}:toggle |
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
### In file version | |
klass = Class.new do | |
def hi | |
puts 'hello' | |
end | |
end | |
name = __FILE__.slice(/\w*.rb$/).slice(/\w*/).camelcase | |
Object.const_set(name, klass) |
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
=begin | |
This class allows you to condsolidate the declaration of class names into | |
the file name. It also handles namespacing based on the file path if you are | |
using Rails autoloading. | |
This works with the single exception of constant lookup via nesting, so you | |
will need to replace constants with variables and methods. | |
Examples: |
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
# app/models/user.rb | |
Dryer.def_class(__FILE__) do | |
def hi | |
"hello world" | |
end | |
end | |
User.new.hi | |
=> "hello world" |