full_clone 0.0.8 → 0.0.9

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: 14cfceda7682d4b558c1514f2d19df85300c406b
4
- data.tar.gz: 3c98a86036a67f658954966e4715d759769c2c5f
3
+ metadata.gz: c5671e38cbd5b3f7214be72da4d3e5d183a41d7d
4
+ data.tar.gz: 174f1e3f0e7279565e2843a88e59665df9c184b2
5
5
  SHA512:
6
- metadata.gz: 74bf868b009295a0f5c4580d778d34c2db87d9d76dd286f52ea0770a307ed910164d4d4fb6df80fc854fc17efa9572ee71babcfa70dbb93196e642facabded0b
7
- data.tar.gz: acb6722e2319ddf219501e2b4b1b46d3dde459846cbc70d7c6cb7316d35ba4caed3b28614acfdf8e06e943ae9bd56b8e67db686121d3295f4f91f78c72d73454
6
+ metadata.gz: 6871aaf141f6c9c4c44cc9b3ab6fca0d56b39544a7fe7b0b87f96ea554d5ee8cd01636bf0dcd2d0c9bf2e67f5875ff4104d0f72887287ba73270d3d90fec8da0
7
+ data.tar.gz: ee7830f9882649c34c2d063638fe08b0391855d11c732ca81010158d915841191ddbc08d9a4afe22e398af5909d6404c9a7b4dd765325247a582be7bee3cabe2
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at peter.c.camilleri@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/full_clone.gemspec CHANGED
@@ -10,17 +10,16 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["peter.c.camilleri@gmail.com"]
11
11
  spec.description = "A (safe/no exceptions) clone variant that performs a deep, recursive copy."
12
12
  spec.summary = "A clone variant that performs a deep copy."
13
- spec.homepage = "http://teuthida-technologies.com/"
13
+ spec.homepage = "https://github.com/PeterCamilleri/full_clone"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
17
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
18
  spec.require_paths = ["lib"]
19
19
 
20
- spec.add_development_dependency 'minitest_visible', ">= 0.1.0"
21
- spec.add_development_dependency 'mini_readline', ">= 0.4.8"
20
+ spec.add_development_dependency "rake", "~> 12.0"
22
21
  spec.add_development_dependency "bundler", "~> 1.3"
23
- spec.add_development_dependency "rake"
24
- spec.add_development_dependency 'minitest', "~> 4.7.5"
22
+ spec.add_development_dependency 'minitest', "~> 5.7"
23
+ spec.add_development_dependency 'minitest_visible', "~> 0.1"
25
24
 
26
25
  end
@@ -1,3 +1,3 @@
1
1
  module FullClone
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
metadata CHANGED
@@ -1,43 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: full_clone
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Camilleri
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-23 00:00:00.000000000 Z
11
+ date: 2017-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: minitest_visible
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: 0.1.0
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: 0.1.0
27
- - !ruby/object:Gem::Dependency
28
- name: mini_readline
14
+ name: rake
29
15
  requirement: !ruby/object:Gem::Requirement
30
16
  requirements:
31
- - - ">="
17
+ - - "~>"
32
18
  - !ruby/object:Gem::Version
33
- version: 0.4.8
19
+ version: '12.0'
34
20
  type: :development
35
21
  prerelease: false
36
22
  version_requirements: !ruby/object:Gem::Requirement
37
23
  requirements:
38
- - - ">="
24
+ - - "~>"
39
25
  - !ruby/object:Gem::Version
40
- version: 0.4.8
26
+ version: '12.0'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: bundler
43
29
  requirement: !ruby/object:Gem::Requirement
@@ -53,33 +39,33 @@ dependencies:
53
39
  - !ruby/object:Gem::Version
54
40
  version: '1.3'
55
41
  - !ruby/object:Gem::Dependency
56
- name: rake
42
+ name: minitest
57
43
  requirement: !ruby/object:Gem::Requirement
58
44
  requirements:
59
- - - ">="
45
+ - - "~>"
60
46
  - !ruby/object:Gem::Version
61
- version: '0'
47
+ version: '5.7'
62
48
  type: :development
63
49
  prerelease: false
64
50
  version_requirements: !ruby/object:Gem::Requirement
65
51
  requirements:
66
- - - ">="
52
+ - - "~>"
67
53
  - !ruby/object:Gem::Version
68
- version: '0'
54
+ version: '5.7'
69
55
  - !ruby/object:Gem::Dependency
70
- name: minitest
56
+ name: minitest_visible
71
57
  requirement: !ruby/object:Gem::Requirement
72
58
  requirements:
73
59
  - - "~>"
74
60
  - !ruby/object:Gem::Version
75
- version: 4.7.5
61
+ version: '0.1'
76
62
  type: :development
77
63
  prerelease: false
78
64
  version_requirements: !ruby/object:Gem::Requirement
79
65
  requirements:
80
66
  - - "~>"
81
67
  - !ruby/object:Gem::Version
82
- version: 4.7.5
68
+ version: '0.1'
83
69
  description: A (safe/no exceptions) clone variant that performs a deep, recursive
84
70
  copy.
85
71
  email:
@@ -89,6 +75,7 @@ extensions: []
89
75
  extra_rdoc_files: []
90
76
  files:
91
77
  - ".gitignore"
78
+ - CODE_OF_CONDUCT.md
92
79
  - Gemfile
93
80
  - LICENSE.txt
94
81
  - README.md
@@ -106,7 +93,7 @@ files:
106
93
  - test/hash_tests.rb
107
94
  - test/object_tests.rb
108
95
  - test/struct_tests.rb
109
- homepage: http://teuthida-technologies.com/
96
+ homepage: https://github.com/PeterCamilleri/full_clone
110
97
  licenses:
111
98
  - MIT
112
99
  metadata: {}
@@ -126,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
113
  version: '0'
127
114
  requirements: []
128
115
  rubyforge_project:
129
- rubygems_version: 2.2.2
116
+ rubygems_version: 2.2.3
130
117
  signing_key:
131
118
  specification_version: 4
132
119
  summary: A clone variant that performs a deep copy.