Skip to content

Instantly share code, notes, and snippets.

module Typewriter
VERSION = "0.1.0"
class Person
getter name : String, surname : Surname
def initialize(@name, surname)
@surname = Surname.new(surname)
end

Keybase proof

I hereby claim:

  • I am epergo on github.
  • I am epergo (https://keybase.io/epergo) on keybase.
  • I have a public key ASDk2zk1VpVljmxztf4-c8IPPqXqqdAOVxL9LYoNaHUk3Qo

To claim this, I am signing this object:

language: ruby
cache: bundler
rvm:
- 2.4.1
after_success:
- export PRONTO_PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST} && bundle exec pronto run -f github_pr
class Article < ApplicationRecord
def is_available?
Time.now >= publish_on
end
end
@epergo
epergo / Gemfile.rb
Last active April 12, 2018 15:10
pronto post - Gemfile
group :development, :test do
gem 'pronto', require: false
gem 'pronto-rubocop', require: false
end