safer_rails_console 0.1.1 → 0.1.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: 59ffd68473fc4c5bbf2dfb186a84cab00ae3299c
4
- data.tar.gz: 0e3c5eb6bdc2a068b0bfe308af666f3d2cc21e87
3
+ metadata.gz: 60c8081453e2c1e79dac6dd7c34a566990041483
4
+ data.tar.gz: c453c7ff11d75ab9a8f23b46cb49760ea1bc7cdb
5
5
  SHA512:
6
- metadata.gz: e1c92aab76465e922c072953628fe44e67b99a098be13d24a5d0540d5fc5618e4beb19615dc1ac0b602709aed0a3b7ed4c99931b641b0a4383acc6d2edba89e3
7
- data.tar.gz: 19c8070a11dc6fcf31938cc77c1be220644318f4eca463f6acfb617da9b11634e701d4f6ba0bf552c278f154d871c82485d97307b27ed7c4fccadad4be361a55
6
+ metadata.gz: 9457c08b8a04f898095a52c7528a7e965b6acd0bce97b7e25276f5c1c14be48389402040038d1c3c01d206499db5437ed8b15d52a5a3491507fe6797433c4d6d
7
+ data.tar.gz: 3e0acbfd930e450e049d037a1444cdafed20b6fdbf4a1a54b29c1e752a47ef8b3fdbe7b33910e2d2de95e7d3a09fad569b5fd853f770d012b6e103b7275d5896
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.1.2](https://github.com/salsify/safer_rails_console/tree/v0.1.2) (2017-07-21)
4
+ [Full Changelog](https://github.com/salsify/safer_rails_console/compare/v0.1.1...v0.1.2)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Dasherize the app name given CamelCase [\#10](https://github.com/salsify/safer_rails_console/pull/10) ([timothysu](https://github.com/timothysu))
9
+
3
10
  ## [v0.1.1](https://github.com/salsify/safer_rails_console/tree/v0.1.1) (2017-07-07)
4
11
  [Full Changelog](https://github.com/salsify/safer_rails_console/compare/v0.1.0...v0.1.1)
5
12
 
@@ -1,6 +1,6 @@
1
1
  include SaferRailsConsole::Colors
2
2
 
3
- app_name = ::Rails.application.class.parent.to_s.downcase
3
+ app_name = ::Rails.application.class.parent.to_s.underscore.dasherize
4
4
  env_name = SaferRailsConsole.environment_name
5
5
  status = ::Rails.application.sandbox ? 'sandboxed' : 'unsandboxed'
6
6
  color = SaferRailsConsole.prompt_color
@@ -1,3 +1,3 @@
1
1
  module SaferRailsConsole
2
- VERSION = '0.1.1'.freeze
2
+ VERSION = '0.1.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: safer_rails_console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Salsify, Inc
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-07-07 00:00:00.000000000 Z
11
+ date: 2017-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: appraisal