Skip to content
This repository was archived by the owner on Feb 1, 2022. It is now read-only.

Commit 8ea6db7

Browse files
committed
Update the README
1 parent ef057e0 commit 8ea6db7

File tree

2 files changed

+38
-7
lines changed

2 files changed

+38
-7
lines changed

README

Lines changed: 0 additions & 7 deletions
This file was deleted.

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Deep Clone
2+
3+
## Status
4+
5+
|System|Status|
6+
|--|--|
7+
| Travis | [![Travis Build Status](https://travis-ci.org/gmodarelli/ruby-deepclone.svg?branch=master)](https://travis-ci.org/gmodarelli/ruby-deepclone) |
8+
| Gem Version | [![Gem Version](https://badge.fury.io/rb/deep_clone.svg)](https://badge.fury.io/rb/deep_clone) |
9+
10+
## Description
11+
12+
This gem provides a native implementation to deep clone Ruby objects.
13+
It supports Ruby 1.9.3, 2.2.x, 2.3.x and 2.4.x.
14+
15+
## Installation
16+
17+
```
18+
gem install ruby_deep_clone
19+
```
20+
21+
or add it to your `Gemfile`
22+
23+
```
24+
gem 'ruby_deep_clone'
25+
```
26+
27+
and run `bundle install`
28+
29+
## Usage
30+
31+
Can be used as follows:
32+
33+
```
34+
require 'deep_clone'
35+
36+
object = Object.new
37+
clone_object = DeepClone.clone obj
38+
```

0 commit comments

Comments
 (0)