adamkittelson/dogstatsd-elixir 37
An Elixir client for DogStatsd https://www.datadoghq.com/
Macros to use :timer.apply_after and :timer.apply_interval with a block
Quick talk about our adventures in building a simple cluster management tool
FFXIV JavaScript Raiding Overlay
Chosen is a library for making long, unwieldy select boxes more friendly.
A parser combinator library for Elixir projects
Coverage Reports for Elixir
ActiveRecord-like Model for DynamoDB
The Tankazon Resource - a Diablo II mini site.
push eventzencoder/zenflow
commit sha 1e41f4d6378a239e9774866df29cfd0469aa6aae
upd(circleCI): renaming and fixing image
push time in 7 days
push eventzencoder/zenflow
commit sha 3b9889d99c3bf595f46692dea8173856accf237b
upd(Rspec): Finishing updating Rspec syntax
push time in 7 days
push eventzencoder/zenflow
commit sha b5dafc30547fd1ceca9dba54b20d0c34ca2de825
fix(ask): Should exit on no retry
push time in 8 days
push eventzencoder/zenflow
commit sha b36eb434c8a848749bd1360419e3bbddb55ad42b
Upgrade (Ruby 2.7.1): First approach
push time in 8 days
Pull request review commentzencoder/zenflow
subject { Zenflow::Hotfix.new } it { expect(subject.flow).to eq("hotfix") }- it { expect(subject.branch(:source)).to be_false }+ it { expect(subject.branch(:source)).to be false }
yeah, that's better, I missed that
comment created time in 21 days
Pull request review commentzencoder/zenflow
subject { Zenflow::Hotfix.new } it { expect(subject.flow).to eq("hotfix") }- it { expect(subject.branch(:source)).to be_false }+ it { expect(subject.branch(:source)).to be false }
maybe be_falsy?
comment created time in 21 days
Pull request review commentzencoder/zenflow
+version: 2.1+orbs: # Reusable configuration objects from CircleCI+ ruby: circleci/[email protected]+jobs:+ test:+ docker:+ - image: cimg/ruby:2.7+ steps:+ - checkout+ - ruby/install-deps # Using the orb to install deps+ - ruby/rspec-test
This is just a base CircleCI configuration, there is going to be more steps
comment created time in 21 days
Pull request review commentzencoder/zenflow
+reporters:+ - rubocop
I plan on getting linting on the steps too, solargraph can be used with most IDE
comment created time in 21 days
Pull request review commentzencoder/zenflow
-# -*- encoding: utf-8 -*--lib = File.expand_path('../lib/', __FILE__)-$:.unshift lib unless $:.include?(lib)+lib = File.expand_path('lib', __dir__)+$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib) require 'yaml' require 'zenflow/helpers/version' require 'zenflow/version' Gem::Specification.new do |s|+ s.required_ruby_version = '>= 2.5.5' s.name = "zenflow" s.version = Zenflow::VERSION.to_s s.platform = Gem::Platform::RUBY s.authors = ["Adam Kittelson", "Brandon Arbini", "Chris Warren"] s.email = ["[email protected]", "[email protected]", "[email protected]"]- s.homepage = "http://github.com/zencoder/zenflow"+ s.homepage = "https://github.com/zencoder/zenflow" s.summary = "Branch management and deployment tool." s.description = "Zenflow is a development workflow management tool." s.license = 'MIT' s.executables << "zenflow"- s.add_dependency "thor", "~> 0.19.0"+ s.add_dependency "colored", "~> 1.2"+ s.add_dependency "httparty", "~> 0.18.1" s.add_dependency "terminal-table", "~> 1.4.5"- s.add_dependency "httparty", "~> 0.13.0"- s.add_development_dependency('rspec', '~> 2.14')- s.add_development_dependency('simplecov', '~> 0.7.1')+ s.add_dependency "thor", "~> 0.19.0" s.add_development_dependency('byebug') s.add_development_dependency('fuubar', '~> 1.1.1')- s.add_development_dependency('guard-rspec', '~> 3.0.2')- s.add_development_dependency('vcr', '~> 2.5.0')- s.add_development_dependency('webmock', '~> 1.13.0')+ #s.add_development_dependency('guard-rspec', '~> 3.0.2')
I commented that out because it's for running the tests when developing, so I'll work on having that, I didn't want to delete the line so I didn't forget
comment created time in 21 days
Pull request review commentzencoder/zenflow
+version: 2.1+orbs: # Reusable configuration objects from CircleCI+ ruby: circleci/[email protected]+jobs:+ test:+ docker:+ - image: cimg/ruby:2.7+ steps:+ - checkout+ - ruby/install-deps # Using the orb to install deps+ - ruby/rspec-test
this could be an iteration once this is on circle, but can we report test coverage? as the test are running in a single container it should be not that hard to report back
comment created time in 21 days
Pull request review commentzencoder/zenflow
+reporters:+ - rubocop
what is this solargraph for? is new to me
comment created time in 21 days
Pull request review commentzencoder/zenflow
-# -*- encoding: utf-8 -*--lib = File.expand_path('../lib/', __FILE__)-$:.unshift lib unless $:.include?(lib)+lib = File.expand_path('lib', __dir__)+$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib) require 'yaml' require 'zenflow/helpers/version' require 'zenflow/version' Gem::Specification.new do |s|+ s.required_ruby_version = '>= 2.5.5' s.name = "zenflow" s.version = Zenflow::VERSION.to_s s.platform = Gem::Platform::RUBY s.authors = ["Adam Kittelson", "Brandon Arbini", "Chris Warren"] s.email = ["[email protected]", "[email protected]", "[email protected]"]- s.homepage = "http://github.com/zencoder/zenflow"+ s.homepage = "https://github.com/zencoder/zenflow" s.summary = "Branch management and deployment tool." s.description = "Zenflow is a development workflow management tool." s.license = 'MIT' s.executables << "zenflow"- s.add_dependency "thor", "~> 0.19.0"+ s.add_dependency "colored", "~> 1.2"+ s.add_dependency "httparty", "~> 0.18.1" s.add_dependency "terminal-table", "~> 1.4.5"- s.add_dependency "httparty", "~> 0.13.0"- s.add_development_dependency('rspec', '~> 2.14')- s.add_development_dependency('simplecov', '~> 0.7.1')+ s.add_dependency "thor", "~> 0.19.0" s.add_development_dependency('byebug') s.add_development_dependency('fuubar', '~> 1.1.1')- s.add_development_dependency('guard-rspec', '~> 3.0.2')- s.add_development_dependency('vcr', '~> 2.5.0')- s.add_development_dependency('webmock', '~> 1.13.0')+ #s.add_development_dependency('guard-rspec', '~> 3.0.2')
no guard rspec needed?
comment created time in 21 days
push eventzencoder/zenflow
commit sha 327d2bb56682cae7c65a37360b68e2963f48453c
fix(docker): Image name wrong
push time in 21 days
push eventzencoder/zenflow
commit sha c01bd1daf384c06bdd84cf041f60d63448a1cab7
add(CircleCI): Testing basic Circle CI
push time in 21 days
PR closed zencoder/zencoder-php
Reproduce with: php php-cs-fixer --rules=native_function_invocation fix ./ --allow-risky=yes (php-cs-fixer from : https://cs.symfony.com/)
Details: https://veewee.github.io/blog/optimizing-php-performance-by-fq-function-calls/
pr closed time in 22 days
push eventbasecamp/handbook
commit sha 55a8eb34425a70ca79d9ccaf428e625c0866cd39
Update titles-for-designers.md
push time in a month
push eventbasecamp/handbook
commit sha 05a0611853b540e0b4cf3e53898437a76c5f5f87
Update titles-for-programmers.md
push time in a month
push eventbasecamp/handbook
commit sha 7300e8d340375488b8f54b37febccf1b8f508599
Update our-rituals.md
push time in a month
push eventbasecamp/handbook
commit sha 3041e6561468c159de8a96327e119c88702ecf48
Update making-a-career.md
push time in a month
push eventbasecamp/handbook
commit sha 290c52d7869d1cda836e5b4cab0c1d6f05a402fc
Update making-a-career.md
push time in a month
push eventbasecamp/handbook
commit sha eaa89d2253a2e8dc8a251abf320ce9da7c8e078b
Update making-a-career.md
push time in a month
push eventbasecamp/handbook
commit sha 5a91b3984caf9ca65bec20cc1eba323788a14d37
Update making-a-career.md
push time in a month
push eventbasecamp/handbook
commit sha ff3a2c729034783867a15cb6fac4e27b6e2e3695
Update how-we-work.md
push time in a month