ostruct 0.5.5 → 0.6.1
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/{LICENSE.txt → BSDL} +3 -3
- data/COPYING +56 -0
- data/Gemfile +7 -3
- data/README.md +4 -4
- data/Rakefile +0 -7
- data/lib/ostruct.rb +14 -2
- data/ostruct.gemspec +2 -5
- metadata +9 -36
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae6b2eff250ea87f54f853d16222c5d6f106789d45fe0324364df9b8687f0374
|
4
|
+
data.tar.gz: c65306416c2c03cbbef31cd06fd61b32c6923f190bca1d05faca0f04f0cde862
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6eb8179130a4556650f64eddd7db05cb459027879b9ac2497dc45a2be065c5f4e8519bde10c328f9da4585893e987e3711a3bbd712320e5317ad7da27963dd58
|
7
|
+
data.tar.gz: 4fea652c406e0f08aeb1df620710fbc30bbb1cda436ad659f6f8749faf572c7fa35a0ac3982ae312575579cfdd835d00a21c983d3b36c61768a1cb3d7290a4b9
|
data/{LICENSE.txt → BSDL}
RENAMED
@@ -4,10 +4,10 @@ Redistribution and use in source and binary forms, with or without
|
|
4
4
|
modification, are permitted provided that the following conditions
|
5
5
|
are met:
|
6
6
|
1. Redistributions of source code must retain the above copyright
|
7
|
-
notice, this list of conditions and the following disclaimer.
|
7
|
+
notice, this list of conditions and the following disclaimer.
|
8
8
|
2. Redistributions in binary form must reproduce the above copyright
|
9
|
-
notice, this list of conditions and the following disclaimer in the
|
10
|
-
documentation and/or other materials provided with the distribution.
|
9
|
+
notice, this list of conditions and the following disclaimer in the
|
10
|
+
documentation and/or other materials provided with the distribution.
|
11
11
|
|
12
12
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
13
13
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
data/COPYING
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
|
2
|
+
You can redistribute it and/or modify it under either the terms of the
|
3
|
+
2-clause BSDL (see the file BSDL), or the conditions below:
|
4
|
+
|
5
|
+
1. You may make and give away verbatim copies of the source form of the
|
6
|
+
software without restriction, provided that you duplicate all of the
|
7
|
+
original copyright notices and associated disclaimers.
|
8
|
+
|
9
|
+
2. You may modify your copy of the software in any way, provided that
|
10
|
+
you do at least ONE of the following:
|
11
|
+
|
12
|
+
a. place your modifications in the Public Domain or otherwise
|
13
|
+
make them Freely Available, such as by posting said
|
14
|
+
modifications to Usenet or an equivalent medium, or by allowing
|
15
|
+
the author to include your modifications in the software.
|
16
|
+
|
17
|
+
b. use the modified software only within your corporation or
|
18
|
+
organization.
|
19
|
+
|
20
|
+
c. give non-standard binaries non-standard names, with
|
21
|
+
instructions on where to get the original software distribution.
|
22
|
+
|
23
|
+
d. make other distribution arrangements with the author.
|
24
|
+
|
25
|
+
3. You may distribute the software in object code or binary form,
|
26
|
+
provided that you do at least ONE of the following:
|
27
|
+
|
28
|
+
a. distribute the binaries and library files of the software,
|
29
|
+
together with instructions (in the manual page or equivalent)
|
30
|
+
on where to get the original distribution.
|
31
|
+
|
32
|
+
b. accompany the distribution with the machine-readable source of
|
33
|
+
the software.
|
34
|
+
|
35
|
+
c. give non-standard binaries non-standard names, with
|
36
|
+
instructions on where to get the original software distribution.
|
37
|
+
|
38
|
+
d. make other distribution arrangements with the author.
|
39
|
+
|
40
|
+
4. You may modify and include the part of the software into any other
|
41
|
+
software (possibly commercial). But some files in the distribution
|
42
|
+
are not written by the author, so that they are not under these terms.
|
43
|
+
|
44
|
+
For the list of those files and their copying conditions, see the
|
45
|
+
file LEGAL.
|
46
|
+
|
47
|
+
5. The scripts and library files supplied as input to or produced as
|
48
|
+
output from the software do not automatically fall under the
|
49
|
+
copyright of the software, but belong to whomever generated them,
|
50
|
+
and may be sold commercially, and may be aggregated with this
|
51
|
+
software.
|
52
|
+
|
53
|
+
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
54
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
55
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
56
|
+
PURPOSE.
|
data/Gemfile
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
|
3
|
-
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
|
4
|
-
|
5
|
-
# Specify your gem's dependencies in ostruct.gemspec
|
6
3
|
gemspec
|
4
|
+
|
5
|
+
group :development do
|
6
|
+
gem "bundler"
|
7
|
+
gem "rake"
|
8
|
+
gem "test-unit"
|
9
|
+
gem "test-unit-ruby-core"
|
10
|
+
end
|
data/README.md
CHANGED
@@ -8,7 +8,7 @@ The `ostruct` library comes pre-packaged with Ruby. No installation is necessary
|
|
8
8
|
|
9
9
|
## Usage
|
10
10
|
|
11
|
-
```
|
11
|
+
```ruby
|
12
12
|
require "ostruct"
|
13
13
|
|
14
14
|
person = OpenStruct.new
|
@@ -22,14 +22,14 @@ The `ostruct` library comes pre-packaged with Ruby. No installation is necessary
|
|
22
22
|
|
23
23
|
An OpenStruct employs a Hash internally to store the attributes and values and can even be initialized with one:
|
24
24
|
|
25
|
-
```
|
25
|
+
```ruby
|
26
26
|
australia = OpenStruct.new(:country => "Australia", :capital => "Canberra")
|
27
27
|
# => #<OpenStruct country="Australia", capital="Canberra">
|
28
28
|
```
|
29
29
|
|
30
30
|
Hash keys with spaces or characters that could normally not be used for method calls (e.g. <code>()[]*</code>) will not be immediately available on the OpenStruct object as a method for retrieval or assignment, but can still be reached through the Object#send method.
|
31
31
|
|
32
|
-
```
|
32
|
+
```ruby
|
33
33
|
measurements = OpenStruct.new("length (in inches)" => 24)
|
34
34
|
measurements.send("length (in inches)") # => 24
|
35
35
|
|
@@ -41,7 +41,7 @@ Hash keys with spaces or characters that could normally not be used for method c
|
|
41
41
|
|
42
42
|
Removing the presence of an attribute requires the execution of the delete_field method as setting the property value to +nil+ will not remove the attribute.
|
43
43
|
|
44
|
-
```
|
44
|
+
```ruby
|
45
45
|
first_pet = OpenStruct.new(:name => "Rowdy", :owner => "John Smith")
|
46
46
|
second_pet = OpenStruct.new(:name => "Rowdy")
|
47
47
|
|
data/Rakefile
CHANGED
@@ -15,11 +15,4 @@ Rake::TestTask.new(:test) do |t|
|
|
15
15
|
t.test_files = FileList["test/**/test_*.rb"]
|
16
16
|
end
|
17
17
|
|
18
|
-
task :sync_tool do
|
19
|
-
require 'fileutils'
|
20
|
-
FileUtils.cp "../ruby/tool/lib/core_assertions.rb", "./test/lib"
|
21
|
-
FileUtils.cp "../ruby/tool/lib/envutil.rb", "./test/lib"
|
22
|
-
FileUtils.cp "../ruby/tool/lib/find_executable.rb", "./test/lib"
|
23
|
-
end
|
24
|
-
|
25
18
|
task :default => [:test]
|
data/lib/ostruct.rb
CHANGED
@@ -107,7 +107,15 @@
|
|
107
107
|
# For all these reasons, consider not using OpenStruct at all.
|
108
108
|
#
|
109
109
|
class OpenStruct
|
110
|
-
VERSION = "0.
|
110
|
+
VERSION = "0.6.1"
|
111
|
+
|
112
|
+
HAS_PERFORMANCE_WARNINGS = begin
|
113
|
+
Warning[:performance]
|
114
|
+
true
|
115
|
+
rescue NoMethodError, ArgumentError
|
116
|
+
false
|
117
|
+
end
|
118
|
+
private_constant :HAS_PERFORMANCE_WARNINGS
|
111
119
|
|
112
120
|
#
|
113
121
|
# Creates a new OpenStruct object. By default, the resulting OpenStruct
|
@@ -124,6 +132,10 @@ class OpenStruct
|
|
124
132
|
# data # => #<OpenStruct country="Australia", capital="Canberra">
|
125
133
|
#
|
126
134
|
def initialize(hash=nil)
|
135
|
+
if HAS_PERFORMANCE_WARNINGS && Warning[:performance]
|
136
|
+
warn "OpenStruct use is discouraged for performance reasons", uplevel: 1, category: :performance
|
137
|
+
end
|
138
|
+
|
127
139
|
if hash
|
128
140
|
update_to_values!(hash)
|
129
141
|
else
|
@@ -364,7 +376,7 @@ class OpenStruct
|
|
364
376
|
end
|
365
377
|
@table.delete(sym) do
|
366
378
|
return yield if block
|
367
|
-
raise! NameError.new("no field
|
379
|
+
raise! NameError.new("no field '#{sym}' in #{self}", sym)
|
368
380
|
end
|
369
381
|
end
|
370
382
|
|
data/ostruct.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
name = File.basename(__FILE__, ".gemspec")
|
4
|
-
version = ["lib", Array.new(name.count("-")+1, "
|
4
|
+
version = ["lib", Array.new(name.count("-")+1, ".").join("/")].find do |dir|
|
5
5
|
break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
|
6
6
|
/^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
|
7
7
|
end rescue nil
|
@@ -19,9 +19,6 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
20
20
|
spec.required_ruby_version = ">= 2.5.0"
|
21
21
|
|
22
|
-
spec.files = [".gitignore", "Gemfile", "
|
22
|
+
spec.files = [".gitignore", "Gemfile", "COPYING", "BSDL", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/ostruct.rb", "ostruct.gemspec"]
|
23
23
|
spec.require_paths = ["lib"]
|
24
|
-
|
25
|
-
spec.add_development_dependency "bundler"
|
26
|
-
spec.add_development_dependency "rake"
|
27
24
|
end
|
metadata
CHANGED
@@ -1,43 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ostruct
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marc-Andre Lafortune
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: bundler
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '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'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rake
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
11
|
+
date: 2024-11-08 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
41
13
|
description: Class to build custom data structures, similar to a Hash.
|
42
14
|
email:
|
43
15
|
- ruby-core@marc-andre.ca
|
@@ -46,8 +18,9 @@ extensions: []
|
|
46
18
|
extra_rdoc_files: []
|
47
19
|
files:
|
48
20
|
- ".gitignore"
|
21
|
+
- BSDL
|
22
|
+
- COPYING
|
49
23
|
- Gemfile
|
50
|
-
- LICENSE.txt
|
51
24
|
- README.md
|
52
25
|
- Rakefile
|
53
26
|
- bin/console
|
@@ -59,7 +32,7 @@ licenses:
|
|
59
32
|
- Ruby
|
60
33
|
- BSD-2-Clause
|
61
34
|
metadata: {}
|
62
|
-
post_install_message:
|
35
|
+
post_install_message:
|
63
36
|
rdoc_options: []
|
64
37
|
require_paths:
|
65
38
|
- lib
|
@@ -74,8 +47,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
47
|
- !ruby/object:Gem::Version
|
75
48
|
version: '0'
|
76
49
|
requirements: []
|
77
|
-
rubygems_version: 3.
|
78
|
-
signing_key:
|
50
|
+
rubygems_version: 3.5.11
|
51
|
+
signing_key:
|
79
52
|
specification_version: 4
|
80
53
|
summary: Class to build custom data structures, similar to a Hash.
|
81
54
|
test_files: []
|