This fall, several people presented their work on Ruby type checkers. So let’s take a look: what’s the big deal, and what have they been up to?
What's new in React-Rails 2.0?
For Planning Center free week, I cooked up react-rails
2.0 🎊.
Watching files during Rails development
You can tell Ruby on Rails to respond to changes in certain files during development.
Prototyping a GraphQL Schema From Definition With Ruby
GraphQL 1.5.0 includes a new way to define a schema: from a GraphQL definition.
Tracking Schema Changes with GraphQL-Ruby
One way to keep an eye on your GraphQL schema is to check the definition into source control.
Optimizing GraphQL-Ruby
Soon, graphql-ruby
1.5.0 will be released. Query execution will be ~70% faster than 1.3.0!
Parallelism in GraphQL-Ruby
It’s possible to get IO operations running in parallel with the graphql
gem.
Introducing GraphQL::Pro
graphql-ruby
is almost two years old! Today, I’m adding a new element to the project, GraphQL::Pro
.
Raising Exceptions is Bad
In general, raising exceptions for control flow makes code hard to understand. However, there are other cases when an exception is the right choice.
GraphQL Query as a State Machine
State machines are applied to a wide variety of programming problems. I found it useful to think of a GraphQL query as a state machine.