Tom Lord
Tom Lord
Adds a **new method**, `I18n.interpolation_keys`, which returns a list of keys needed to fully resolve a translation. Some examples: ``` # Suppose we have the following: # I18n.t 'example.zero' ==...
A small mistake in documentation that I noticed while working on https://github.com/ruby-i18n/i18n/pull/682 > `["maybe no, %{user}, "no, %{user}"]` 
https://github.com/rspec/rspec-expectations/blob/master/lib/rspec/matchers.rb#L320-L322 https://github.com/rspec/rspec-expectations/blob/master/lib/rspec/matchers/built_in/be.rb#L104-L106 I think that the following: ``` expect(foo).to be ``` Should be deprecated, in favour of: ``` expect(foo).to be_truthy ``` The existence of the former has just caused me...