awesome_rails_console 0.4.0 → 0.4.1

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: 3c6d0377a61aebe9e4bc5fb4f46407180f7329aa
4
- data.tar.gz: 46ec9cbf75236b7ea1c6363f0eeb3e48e930aafa
3
+ metadata.gz: 9096e4d730a34162e07ee4f4992b5c81cf181859
4
+ data.tar.gz: d7f9504be9fb8f7e5c552fd9eb4e6765f91cd120
5
5
  SHA512:
6
- metadata.gz: e954bdbedb1bd139e94a3bba449cf0dfaa5b7639a3efe2f39cdeb5c4d79b302e433db6a2a3bd7f884e88460d5b74d0b16da83235d5ef35d0aa514c0ea74d8314
7
- data.tar.gz: 7487cdbbbdbba8d3172544a0173386290dfb96aacfdb563393630e25b5ac2d801977bf13c8bd312fcb2c885fc7a80ae2fe10261107a0d816d94ca1f552182819
6
+ metadata.gz: 481b61c888a0d37f5a69f4a0714c40c267a5d9fd8ba0e136249fc8a2fc27765d8c7c83d0a3e031b51a485ec09759b096c79c77b8c838e415999e9a96839fce04
7
+ data.tar.gz: 48dfbe3ec6d838dcb3bb09d398a7f9e969aab62a8a3517d15749e08f006a1244ed71c6c9fc3348cc55fa99efc791279a4643fdced957953095b5175626ad2a0b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.4.1
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.0
4
8
 
5
9
  * Add `pry-byebug`, `pry-stack_explorer` and `hirb` back as optional enhancement. (Run `rails generate awesome_rails_console:install` to install them)
data/README.md CHANGED
@@ -10,13 +10,18 @@ The pros of `awesome_rails_console` are:
10
10
 
11
11
  ## TL; DR;
12
12
 
13
- ``` ruby Gemfile
13
+ Gemfile:
14
+
15
+ ``` ruby
14
16
  gem 'awesome_rails_console'
15
17
  ```
16
18
 
17
- ``` sh (terminal)
19
+ In terminal:
20
+
21
+ ``` sh
22
+ bundle
23
+ rails g awesome_rails_console:install #This will include dependancy gems to the gemfile
18
24
  bundle
19
- rails g awesome_rails_console:install
20
25
  spring stop
21
26
  rails c
22
27
  ```
@@ -1,3 +1,3 @@
1
1
  module AwesomeRailsConsole
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
@@ -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'
9
+ gem 'hirb-unicode-steakknife'
10
10
  gem 'pry-byebug'
11
11
  gem 'pry-stack_explorer'
12
12
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awesome_rails_console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruce Li
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-03-20 00:00:00.000000000 Z
11
+ date: 2018-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  version: '0'
140
140
  requirements: []
141
141
  rubyforge_project:
142
- rubygems_version: 2.4.5
142
+ rubygems_version: 2.5.2.3
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: Simple and useful rails console enhancements