rash_alt 0.4.2 → 0.4.3
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 +4 -4
- data/README.rdoc +14 -0
- data/lib/rash/version.rb +1 -1
- data/rash.gemspec +1 -1
- data/spec/spec_helper.rb +6 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a9bf3bf7b6d1d1e020b0c6e612f15d3901b2131
|
|
4
|
+
data.tar.gz: de64c06f111384f13b4a78d66a95657ecb4aaf30
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d145dc5f659a731a2eb602ebb8bf2b8e10aaea0e81acc1c6f60f0cd5fadc82afcbddd06edd471fd69c0fbec27adad33b23a025153f384183feb57af350d966c
|
|
7
|
+
data.tar.gz: 7253524c44097a92797d0c625333b9342e039e7ee884d09e63984f70f4306f276cbd1d083dd7cd639507579116674602fa67b84bfe2306bfd8b846694e20634c
|
data/README.rdoc
CHANGED
|
@@ -11,6 +11,20 @@ The purpose of this is when working w/ Java (or any other apis) that return hash
|
|
|
11
11
|
|
|
12
12
|
You will now be able to access those keys through underscored key names (camelCase still available)
|
|
13
13
|
|
|
14
|
+
== Installation
|
|
15
|
+
|
|
16
|
+
Add this line to your application's Gemfile:
|
|
17
|
+
|
|
18
|
+
gem 'rash_alt', require: 'rash'
|
|
19
|
+
|
|
20
|
+
And then execute:
|
|
21
|
+
|
|
22
|
+
$ bundle
|
|
23
|
+
|
|
24
|
+
Or install it yourself as:
|
|
25
|
+
|
|
26
|
+
$ gem install rash_alt
|
|
27
|
+
|
|
14
28
|
== Usage
|
|
15
29
|
|
|
16
30
|
@rash = Hashie::Mash::Rash.new({
|
data/lib/rash/version.rb
CHANGED
data/rash.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.authors = ["tcocca", "Shigenobu Nishikawa"]
|
|
8
8
|
s.description = %q{simple extension to Hashie::Mash for rubyified keys, all keys are converted to underscore to eliminate horrible camelCasing}
|
|
9
9
|
s.email = %q{tom.cocca@gmail.com, shishi.s.n@gmail.com}
|
|
10
|
-
s.homepage = "https://github.com/shishi/
|
|
10
|
+
s.homepage = "https://github.com/shishi/rash_alt"
|
|
11
11
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
12
12
|
s.summary = %q{simple extension to Hashie::Mash for rubyified keys}
|
|
13
13
|
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rash_alt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tcocca
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-04-
|
|
12
|
+
date: 2016-04-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: hashie
|
|
@@ -87,7 +87,7 @@ files:
|
|
|
87
87
|
- rash.gemspec
|
|
88
88
|
- spec/rash_spec.rb
|
|
89
89
|
- spec/spec_helper.rb
|
|
90
|
-
homepage: https://github.com/shishi/
|
|
90
|
+
homepage: https://github.com/shishi/rash_alt
|
|
91
91
|
licenses: []
|
|
92
92
|
metadata: {}
|
|
93
93
|
post_install_message:
|