Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kimsuelim committed Jul 9, 2017
0 parents commit 154ba06
Show file tree
Hide file tree
Showing 19 changed files with 579 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/.bundle/
/.yardoc
/Gemfile.lock
/_yardoc/
/coverage/
/doc/
/pkg/
/spec/reports/
/tmp/
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
sudo: false
language: ruby

cache:
bundler: true

rvm:
- 2.2.6
- 2.3.3
- 2.4.0
- jruby
- rbx-2
- ruby-head

matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-2
- rvm: ruby-head

before_install: gem install bundler -v 1.15.1
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file.

## [unreleased]

## [1.0.0] - 2017-07-09

- first release

[1.0.0]: https://github.com/kimsuelim/hashash/releases/tag/v1.0.0
[1.1.0]: https://github.com/kimsuelim/hashash/compare/v1.0.0...v1.1.0
[unreleased]: https://github.com/kimsuelim/hashash/compare/v1.0.0...HEAD
74 changes: 74 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, gender identity and expression, level of experience,
nationality, personal appearance, race, religion, or sexual identity and
orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at kimsuelim@gmail.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at [http://contributor-covenant.org/version/1/4][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"

# Specify your gem's dependencies in hashash.gemspec
gemspec
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2017 Surim Kim

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
94 changes: 94 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
# Hashash
[![Build Status](https://travis-ci.org/kimsuelim/hashash.svg?branch=master)](https://travis-ci.org/kimsuelim/hashash)
[![Coverage Status](https://coveralls.io/repos/github/kimsuelim/hashash/badge.svg?branch=master)](https://coveralls.io/github/kimsuelim/hashash?branch=master)
[![Gem Version](https://badge.fury.io/rb/hashash.svg)](https://badge.fury.io/rb/hashash)

Hashash is a collection of classes and mixins that make it more useful when working with JSON APIs.
Convert underscore to camelCase, convert camelcase to underscore, convert hashes to the objects.

## Installation

Add this line to your application's Gemfile:

```ruby
gem "hashash"
```

And then execute:

$ bundle

Or install it yourself as:

$ gem install hashash

## Underscore keys when working with JSON APIs
### underscore_keys
converts all keys in a hash to underscore.

```ruby
hash = { firstName: "Surim", lastName: "Kim" }
hash.underscore_keys
# => {:first_name=>"Surim", :last_name=>"Kim"}
```

### deep_underscore_keys
recursively converts all keys in a hash to underscore.

```ruby
hash = { person: { firstName: "Surim", lastName: "Kim" } }
hash.deep_underscore_keys
# => {:person=>{:first_name=>"Surim", :last_name=>"Kim"}}
```

## Camelize keys when working with JSON APIs

### camelize_keys
converts all keys in a hash to camelCase.

```ruby
hash = { first_name: "Surim", last_name: "Kim" }
hash.camelize_keys
# => {:firstName=>"Surim", :lastName=>"Kim"}
```

### deep_camelize_keys
recursively converts all keys in a hash to camelCase.

```ruby
hash = { person: { first_name: "Surim", last_name: "Kim" } }
hash.deep_camelize_keys
# => {:person=>{:firstName=>"Surim", :lastName=>"Kim"}}
```

## Converts hashes to the objects.
### objectified_hash
```ruby
hash = { person: { first_name: "Surim", last_name: "Kim" } }
objectified_hash = Hashash::ObjectifiedHash.new(hash)
# => #<Hashash::ObjectifiedHash:70188137990700 {hash: {:person=>{:first_name=>"Surim", :last_name=>"Kim"}}}

puts objectified_hash.person
# => #<Hashash::ObjectifiedHash:70188137990400 {hash: {:first_name=>"Surim", :last_name=>"Kim"}}>

puts objectified_hash.person.first_name
# => "Surim"
```

## Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/kimsuelim/hashash. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.

## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

## Code of Conduct

Everyone interacting in the Hashash project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/kimsuelim/hashash/blob/master/CODE_OF_CONDUCT.md).
10 changes: 10 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
require "bundler/gem_tasks"
require "rake/testtask"

Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList["test/**/*_test.rb"]
end

task default: :test
14 changes: 14 additions & 0 deletions bin/console
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env ruby

require "bundler/setup"
require "hashash"

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.

# (If you use this, don't forget to add pry to your Gemfile!)
# require "pry"
# Pry.start

require "irb"
IRB.start(__FILE__)
8 changes: 8 additions & 0 deletions bin/setup
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
set -vx

bundle install

# Do any other automated setup that you need to do here
29 changes: 29 additions & 0 deletions hashash.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "hashash/version"

Gem::Specification.new do |spec|
spec.name = "hashash"
spec.version = Hashash::VERSION
spec.authors = ["Surim Kim"]
spec.email = ["kimsuelim@gmail.com"]

spec.description = "Hashash is a collection of classes and mixins that make it more useful when working with JSON APIs"
spec.summary = "Your friendly neighborhood JSON API library."
spec.homepage = "https://github.com/kimsuelim/hashash"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 1.15"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rubocop", "~> 0.49.0"
spec.add_development_dependency "coveralls", "~> 0.8.21"
end
6 changes: 6 additions & 0 deletions lib/hashash.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require "hashash/version"
require "hashash/core_ext/hash/keys"
require "hashash/objectified_hash"

module Hashash
end

0 comments on commit 154ba06

Please sign in to comment.