Jason Charnes | @jmcharnes
def say_hi puts "hi" end say_hi
Time.now
["My", "Pretty", "Array"]
so_pretty = ["My", "Pretty", "Array"] so_pretty.join(" ") => "My Pretty Array"
Gems => Shards
Gemfile => shard.yml
name: shards version: 0.1.0 dependencies: openssl: github: datanoise/openssl.cr branch: master development_dependencies: minitest: git: https://github.com/ysbaddaden/minitest.cr.git version: ~> 0.3.1 license: MIT
By Jason Charnes