awesome_rails_console 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5dcd289a5c456b2b2bd45fb1bbcb25f9ebf4c4e8
|
|
4
|
+
data.tar.gz: c2512f11a4183f602d96ac0aa2e0e4657ce89c18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32acd335aaea493ac4fc643ea45073b78a72cdf94f476c0ae36fd4d73fb1f8af9bdfee2d03ff23b5d2181f9d500569a7b9bde8c20162583cc73bf6c6be07f9a2
|
|
7
|
+
data.tar.gz: 71b133d4f474389aecebc030df54503c983bd63a8aa5dff33ceaae5b31d92c34cafe533d8fdca72fa2690d3efb8d115b31bcc267518b79d5bb2eba365650a695
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## v0.4.2
|
|
4
|
+
|
|
5
|
+
* Replace `hirb-unicode` with `hirb-unicode-steakknife` in optional enhancement. (Run `rails generate awesome_rails_console:install` to install them)
|
|
6
|
+
|
|
3
7
|
## v0.4.1
|
|
4
8
|
|
|
5
9
|
* Replace `hirb-unicode` with `hirb-unicode-steakknife` in optional enhancement. (Run `rails generate awesome_rails_console:install` to install them)
|
|
@@ -6,7 +6,7 @@ class AwesomeRailsConsole::InstallGenerator < Rails::Generators::Base
|
|
|
6
6
|
def update_gemfile
|
|
7
7
|
gem_group :development, :test do
|
|
8
8
|
gem 'hirb'
|
|
9
|
-
gem 'hirb-unicode-steakknife'
|
|
9
|
+
gem 'hirb-unicode-steakknife', require: 'unicode-steakknife'
|
|
10
10
|
gem 'pry-byebug'
|
|
11
11
|
gem 'pry-stack_explorer'
|
|
12
12
|
end
|