ruby-rails-extensions 2.1.0.pre.rc.8 → 2.1.0.pre.rc.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2f8208756fad0f3e2d3467fe56d7f299ee20d04db7290e6079e2b5f60b9fb2f
|
4
|
+
data.tar.gz: 62d873c62e3d3cfcba37d70c63565d83bf84887d30285f23cf25ca62912cfdb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc3318c549ddeb4cdaa3f7d393dfa26a0d1ff6ad41c0f375fc282e97d5fadfa0d8d82b7518b5ec1624e7272c51a95f536e79d142d1042745ef5bc8e7edae5c04
|
7
|
+
data.tar.gz: 7d1fd81b3578daf91c6e8ca7a495d386773ba2904b6b9b01ecac955ffa10ffbce48338adf589ef3c0f78e9a4ffb0009e886333c7fd8dbe858eb0f33baa52ad24
|
@@ -111,13 +111,15 @@ module RubyRailsExtensions
|
|
111
111
|
end
|
112
112
|
end
|
113
113
|
|
114
|
+
module_function
|
115
|
+
|
114
116
|
# @return [Configuration]
|
115
|
-
def
|
117
|
+
def configuration
|
116
118
|
@configuration ||= Configuration.new
|
117
119
|
end
|
118
120
|
|
119
121
|
# @yield [Configuration]
|
120
|
-
def
|
122
|
+
def configure
|
121
123
|
yield(configuration)
|
122
124
|
|
123
125
|
Configuration::BOOLEAN_GEMS.each do |extension|
|
@@ -132,5 +134,30 @@ module RubyRailsExtensions
|
|
132
134
|
configuration.flags
|
133
135
|
end
|
134
136
|
|
135
|
-
|
137
|
+
# @see Object#presence from active_support/core_ext/object/blank.rb
|
138
|
+
def presence(*items)
|
139
|
+
items.each do |item|
|
140
|
+
return item if present?(item)
|
141
|
+
end
|
142
|
+
|
143
|
+
nil
|
144
|
+
end
|
145
|
+
|
146
|
+
# @see Object#blank? from active_support/core_ext/object/blank.rb
|
147
|
+
def blank?(item)
|
148
|
+
if item.respond_to?(:blank?)
|
149
|
+
return item.blank?
|
150
|
+
end
|
151
|
+
|
152
|
+
item.respond_to?(:empty?) ? !!item.empty? : !item
|
153
|
+
end
|
154
|
+
|
155
|
+
# @see Object#present? from active_support/core_ext/object/blank.rb
|
156
|
+
def present?(item)
|
157
|
+
if item.respond_to?(:present?)
|
158
|
+
return item.present?
|
159
|
+
end
|
160
|
+
|
161
|
+
!blank?(item)
|
162
|
+
end
|
136
163
|
end
|