Skip to content

Commit

Permalink
0.7.1: Require removed railtie from yabeda gem. See yabeda-rb/yabeda#15
Browse files Browse the repository at this point in the history
  • Loading branch information
Envek committed Oct 2, 2020
1 parent 5f2b6c4 commit 1fd00e1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 0.7.1 - 2020-10-02

### Changed

- Explicitly require previously removed railtie to fix case when it doesn't get required in `yabeda` gem (if `yabeda` is required before `rails`). See [yabeda-rb/yabeda#15](https://github.com/yabeda-rb/yabeda/issues/15). @Envek

## 0.7.0 - 2020-08-21

### Removed
Expand Down
4 changes: 4 additions & 0 deletions lib/yabeda/rails/railtie.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# frozen_string_literal: true

# Explicitly require yabeda's railtie in case if its require was skipped there.
# See https://github.com/yabeda-rb/yabeda/issues/15
require "yabeda/railtie"

module Yabeda
module Rails
class Railtie < ::Rails::Railtie # :nodoc:
Expand Down
2 changes: 1 addition & 1 deletion lib/yabeda/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Yabeda
module Rails
VERSION = "0.7.0"
VERSION = "0.7.1"
end
end

0 comments on commit 1fd00e1

Please sign in to comment.