safer_rails_console 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/safer_rails_console/consoles/irb.rb +1 -1
- data/lib/safer_rails_console/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60c8081453e2c1e79dac6dd7c34a566990041483
|
4
|
+
data.tar.gz: c453c7ff11d75ab9a8f23b46cb49760ea1bc7cdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
|
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.
|
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-
|
11
|
+
date: 2017-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appraisal
|