spectre-core 1.15.2 → 2.0.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.
@@ -1,26 +1,35 @@
1
- require_relative '../spectre'
2
-
3
1
  require 'securerandom'
4
2
  require 'json'
5
3
  require 'date'
6
4
  require 'ostruct'
7
- require 'jsonpath'
8
5
 
9
6
  class ::String
7
+ ##
8
+ # Parses the string as JSON and returns an +OpenStruct+
9
+ #
10
10
  def as_json
11
11
  JSON.parse(self, object_class: OpenStruct)
12
12
  end
13
13
 
14
+ ##
15
+ # Parses the string as a date time object
16
+ #
14
17
  def as_date
15
18
  DateTime.parse(self)
16
19
  end
17
20
 
21
+ ##
22
+ # Parses the string as a date time object and returns it as a unix timestamp
23
+ #
18
24
  def as_timestamp
19
25
  DateTime.parse(self).to_time.to_i
20
26
  end
21
27
 
28
+ ##
29
+ # Replaces placeholder in style of +#{placeholder}+ with the given +Hash+
30
+ #
22
31
  def with mapping
23
- return self unless mapping and mapping.is_a? Hash
32
+ return self unless mapping.is_a? Hash
24
33
 
25
34
  new_string = self
26
35
 
@@ -31,28 +40,19 @@ class ::String
31
40
  new_string
32
41
  end
33
42
 
43
+ ##
44
+ # Trims the string to the given length and adds +...+ at the end
34
45
  def trim size = 50
35
- if (self.length + 3) > size
36
- return self[0..size-4] + '...'
37
- end
46
+ return "#{self[0..size - 4]}..." if (length + 3) > size
38
47
 
39
48
  self
40
49
  end
41
50
 
42
- def pick path
43
- raise ArgumentError.new("`path' must not be nil or empty") if path.nil? or path.empty?
44
-
45
- begin
46
- JsonPath.on(self, path)
47
- rescue MultiJson::ParseError
48
- # do nothing and return nil
49
- end
50
- end
51
-
52
- # File helpers
53
-
51
+ ##
52
+ # Interprets the string as a file path and reads its content
53
+ #
54
54
  def content with: nil
55
- fail "'#{self}' is not a file path, or the file does not exist." unless File.exist? self
55
+ raise "'#{self}' is not a file path, or the file does not exist." unless File.exist? self
56
56
 
57
57
  file_content = File.read(self)
58
58
 
@@ -63,77 +63,74 @@ class ::String
63
63
  end
64
64
  end
65
65
 
66
+ ##
67
+ # Interprets the string as a file path and returns its size
68
+ #
66
69
  def file_size
67
- fail "'#{self}' is not a file path, or the file does not exist." unless File.exist? self
70
+ raise "'#{self}' is not a file path, or the file does not exist." unless File.exist? self
68
71
 
69
72
  File.size(self)
70
73
  end
71
74
 
75
+ ##
76
+ # Interprets the string as a file path and returns +true+ if is exists, +false+ otherwise
77
+ #
72
78
  def exists?
73
79
  File.exist? self
74
80
  end
75
81
 
82
+ ##
83
+ # Interprets the string as a file path and removes it
84
+ #
76
85
  def remove!
77
- fail "'#{self}' is not a file path, or the file does not exist." unless File.exist? self
86
+ raise "'#{self}' is not a file path, or the file does not exist." unless File.exist? self
78
87
 
79
88
  File.delete self
80
89
  end
81
90
  end
82
91
 
83
92
  class ::OpenStruct
84
- def to_json *args, **kwargs
85
- self.to_h.inject({}) { |memo, (k,v)| memo[k] = v.is_a?(OpenStruct) ? v.to_h : v; memo }.to_json(*args, **kwargs)
93
+ def each(&)
94
+ to_h.each(&)
86
95
  end
87
96
 
88
- def pick path
89
- raise ArgumentError.new("`path' must not be nil or empty") if path.nil? or path.empty?
90
-
91
- JsonPath.on(self, path)
97
+ def to_json(*, **)
98
+ to_h
99
+ .transform_values { |x| x.is_a?(OpenStruct) ? x.to_h : x }
100
+ .to_json(*, **)
92
101
  end
93
102
 
94
- def default_to! defaults
103
+ def default_to! defaults = {}, **kwargs
104
+ defaults = kwargs if kwargs.any?
105
+
95
106
  defaults.each_key do |key|
96
- unless self[key] != nil
97
- self[key] = defaults[key]
98
- end
107
+ self[key] = defaults[key] unless to_h.key? key
99
108
  end
100
109
  end
101
-
102
- alias :defaults_to! :default_to!
103
110
  end
104
111
 
105
112
  class ::Hash
106
- def symbolize_keys
107
- self.inject({}) { |memo, (k,v)| memo[k.to_sym] = v; memo }
108
- end
113
+ def default_to! defaults = {}, **kwargs
114
+ defaults = kwargs if kwargs.any?
109
115
 
110
- def default_to! defaults
111
116
  defaults.each_key do |key|
112
- unless self[key] != nil
113
- self[key] = defaults[key]
114
- end
117
+ self[key] = defaults[key] unless key? key
115
118
  end
116
119
  end
117
-
118
- alias :defaults_to! :default_to!
119
- end
120
-
121
- class ::Array
122
- def first_element
123
- self[0]
124
- end
125
-
126
- def last_element
127
- self[-1]
128
- end
129
120
  end
130
121
 
131
- def uuid length = nil
132
- return SecureRandom.hex(length/2) if length
122
+ module Spectre
123
+ module Helpers
124
+ class << self
125
+ def uuid length = niL
126
+ return SecureRandom.hex(length / 2) if length
133
127
 
134
- SecureRandom.uuid
135
- end
128
+ SecureRandom.uuid
129
+ end
136
130
 
137
- def now
138
- Time.now
131
+ def now
132
+ Time.now
133
+ end
134
+ end
135
+ end
139
136
  end
@@ -0,0 +1,3 @@
1
+ module Spectre
2
+ VERSION = '2.0.1'.freeze
3
+ end