tins 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/.travis.yml +4 -2
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/tins/time_dummy.rb +8 -3
- data/lib/tins/version.rb +1 -1
- data/tins.gemspec +8 -8
- metadata +116 -226
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/Rakefile
CHANGED
@@ -11,7 +11,7 @@ GemHadar do
|
|
11
11
|
description 'All the stuff that isn\'t good/big enough for a real library.'
|
12
12
|
test_dir 'tests'
|
13
13
|
test_files.concat Dir["#{test_dir}/*_test.rb"]
|
14
|
-
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.rvmrc', 'coverage'
|
14
|
+
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.rvmrc', 'coverage', '.rbx'
|
15
15
|
readme 'README.rdoc'
|
16
16
|
|
17
17
|
development_dependency 'test-unit', '~>2.3'
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.3
|
data/lib/tins/time_dummy.rb
CHANGED
@@ -3,6 +3,7 @@ module Tins
|
|
3
3
|
def self.included(modul)
|
4
4
|
class << modul
|
5
5
|
alias really_new new
|
6
|
+
alias really_now now
|
6
7
|
|
7
8
|
remove_method :now rescue nil
|
8
9
|
remove_method :new rescue nil
|
@@ -23,15 +24,19 @@ module Tins
|
|
23
24
|
end
|
24
25
|
end
|
25
26
|
|
26
|
-
def new
|
27
|
+
def new(*a)
|
27
28
|
if dummy
|
28
29
|
dummy.dup
|
30
|
+
elsif caller.first =~ /now/
|
31
|
+
really_now
|
29
32
|
else
|
30
|
-
really_new
|
33
|
+
really_new(*a)
|
31
34
|
end
|
32
35
|
end
|
33
36
|
|
34
|
-
|
37
|
+
def now
|
38
|
+
new
|
39
|
+
end
|
35
40
|
end
|
36
41
|
super
|
37
42
|
end
|
data/lib/tins/version.rb
CHANGED
data/tins.gemspec
CHANGED
@@ -2,36 +2,36 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "tins"
|
5
|
-
s.version = "0.4.
|
5
|
+
s.version = "0.4.3"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Florian Frank"]
|
9
|
-
s.date = "2012-
|
9
|
+
s.date = "2012-06-02"
|
10
10
|
s.description = "All the stuff that isn't good/big enough for a real library."
|
11
11
|
s.email = "flori@ping.de"
|
12
|
-
s.extra_rdoc_files = ["README.rdoc", "lib/spruz.rb", "lib/tins/
|
12
|
+
s.extra_rdoc_files = ["README.rdoc", "lib/spruz.rb", "lib/tins/alias.rb", "lib/tins/ask_and_send.rb", "lib/tins/attempt.rb", "lib/tins/bijection.rb", "lib/tins/count_by.rb", "lib/tins/date_dummy.rb", "lib/tins/date_time_dummy.rb", "lib/tins/deep_dup.rb", "lib/tins/extract_last_argument_options.rb", "lib/tins/file_binary.rb", "lib/tins/find.rb", "lib/tins/generator.rb", "lib/tins/go.rb", "lib/tins/hash_symbolize_keys_recursive.rb", "lib/tins/hash_union.rb", "lib/tins/if_predicate.rb", "lib/tins/limited.rb", "lib/tins/lines_file.rb", "lib/tins/memoize.rb", "lib/tins/minimize.rb", "lib/tins/module_group.rb", "lib/tins/null.rb", "lib/tins/once.rb", "lib/tins/p.rb", "lib/tins/partial_application.rb", "lib/tins/range_plus.rb", "lib/tins/require_maybe.rb", "lib/tins/round.rb", "lib/tins/secure_write.rb", "lib/tins/shuffle.rb", "lib/tins/string_camelize.rb", "lib/tins/string_underscore.rb", "lib/tins/string_version.rb", "lib/tins/subhash.rb", "lib/tins/time_dummy.rb", "lib/tins/to_proc.rb", "lib/tins/uniq_by.rb", "lib/tins/version.rb", "lib/tins/write.rb", "lib/tins/xt/ask_and_send.rb", "lib/tins/xt/attempt.rb", "lib/tins/xt/blank.rb", "lib/tins/xt/count_by.rb", "lib/tins/xt/date_dummy.rb", "lib/tins/xt/date_time_dummy.rb", "lib/tins/xt/deep_dup.rb", "lib/tins/xt/extract_last_argument_options.rb", "lib/tins/xt/file_binary.rb", "lib/tins/xt/full.rb", "lib/tins/xt/hash_symbolize_keys_recursive.rb", "lib/tins/xt/hash_union.rb", "lib/tins/xt/if_predicate.rb", "lib/tins/xt/irb.rb", "lib/tins/xt/named.rb", "lib/tins/xt/null.rb", "lib/tins/xt/p.rb", "lib/tins/xt/partial_application.rb", "lib/tins/xt/range_plus.rb", "lib/tins/xt/require_maybe.rb", "lib/tins/xt/round.rb", "lib/tins/xt/secure_write.rb", "lib/tins/xt/shuffle.rb", "lib/tins/xt/string.rb", "lib/tins/xt/string_camelize.rb", "lib/tins/xt/string_underscore.rb", "lib/tins/xt/string_version.rb", "lib/tins/xt/subhash.rb", "lib/tins/xt/symbol_to_proc.rb", "lib/tins/xt/time_dummy.rb", "lib/tins/xt/uniq_by.rb", "lib/tins/xt/write.rb", "lib/tins/xt.rb", "lib/tins.rb"]
|
13
13
|
s.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE", "README.rdoc", "Rakefile", "TODO", "VERSION", "lib/spruz", "lib/spruz.rb", "lib/tins.rb", "lib/tins/alias.rb", "lib/tins/ask_and_send.rb", "lib/tins/attempt.rb", "lib/tins/bijection.rb", "lib/tins/count_by.rb", "lib/tins/date_dummy.rb", "lib/tins/date_time_dummy.rb", "lib/tins/deep_dup.rb", "lib/tins/extract_last_argument_options.rb", "lib/tins/file_binary.rb", "lib/tins/find.rb", "lib/tins/generator.rb", "lib/tins/go.rb", "lib/tins/hash_symbolize_keys_recursive.rb", "lib/tins/hash_union.rb", "lib/tins/if_predicate.rb", "lib/tins/limited.rb", "lib/tins/lines_file.rb", "lib/tins/memoize.rb", "lib/tins/minimize.rb", "lib/tins/module_group.rb", "lib/tins/null.rb", "lib/tins/once.rb", "lib/tins/p.rb", "lib/tins/partial_application.rb", "lib/tins/range_plus.rb", "lib/tins/require_maybe.rb", "lib/tins/round.rb", "lib/tins/secure_write.rb", "lib/tins/shuffle.rb", "lib/tins/string_camelize.rb", "lib/tins/string_underscore.rb", "lib/tins/string_version.rb", "lib/tins/subhash.rb", "lib/tins/time_dummy.rb", "lib/tins/to_proc.rb", "lib/tins/uniq_by.rb", "lib/tins/version.rb", "lib/tins/write.rb", "lib/tins/xt.rb", "lib/tins/xt/ask_and_send.rb", "lib/tins/xt/attempt.rb", "lib/tins/xt/blank.rb", "lib/tins/xt/count_by.rb", "lib/tins/xt/date_dummy.rb", "lib/tins/xt/date_time_dummy.rb", "lib/tins/xt/deep_dup.rb", "lib/tins/xt/extract_last_argument_options.rb", "lib/tins/xt/file_binary.rb", "lib/tins/xt/full.rb", "lib/tins/xt/hash_symbolize_keys_recursive.rb", "lib/tins/xt/hash_union.rb", "lib/tins/xt/if_predicate.rb", "lib/tins/xt/irb.rb", "lib/tins/xt/named.rb", "lib/tins/xt/null.rb", "lib/tins/xt/p.rb", "lib/tins/xt/partial_application.rb", "lib/tins/xt/range_plus.rb", "lib/tins/xt/require_maybe.rb", "lib/tins/xt/round.rb", "lib/tins/xt/secure_write.rb", "lib/tins/xt/shuffle.rb", "lib/tins/xt/string.rb", "lib/tins/xt/string_camelize.rb", "lib/tins/xt/string_underscore.rb", "lib/tins/xt/string_version.rb", "lib/tins/xt/subhash.rb", "lib/tins/xt/symbol_to_proc.rb", "lib/tins/xt/time_dummy.rb", "lib/tins/xt/uniq_by.rb", "lib/tins/xt/write.rb", "tests/ask_and_send_test.rb", "tests/bijection_test.rb", "tests/blank_full_test.rb", "tests/count_by_test.rb", "tests/date_dummy_test.rb", "tests/date_time_dummy_test.rb", "tests/deep_dup_test.rb", "tests/extract_last_argument_options_test.rb", "tests/file_binary_test.rb", "tests/find_test.rb", "tests/generator_test.rb", "tests/go_test.rb", "tests/hash_symbolize_keys_recursive_test.rb", "tests/hash_union_test.rb", "tests/if_predicate_test.rb", "tests/limited_test.rb", "tests/lines_file_test.rb", "tests/memoize_test.rb", "tests/minimize_test.rb", "tests/module_group_test.rb", "tests/named_test.rb", "tests/null_test.rb", "tests/partial_application_test.rb", "tests/range_plus_test.rb", "tests/require_maybe_test.rb", "tests/round_test.rb", "tests/secure_write_test.rb", "tests/shuffle_test.rb", "tests/string_camelize_test.rb", "tests/string_underscore_test.rb", "tests/string_version_test.rb", "tests/subhash_test.rb", "tests/test_helper.rb", "tests/time_dummy_test.rb", "tests/try_test.rb", "tests/uniq_by_test.rb", "tins.gemspec"]
|
14
14
|
s.homepage = "http://flori.github.com/tins"
|
15
15
|
s.rdoc_options = ["--title", "Tins - Useful stuff.", "--main", "README.rdoc"]
|
16
16
|
s.require_paths = ["lib"]
|
17
|
-
s.rubygems_version = "1.8.
|
17
|
+
s.rubygems_version = "1.8.24"
|
18
18
|
s.summary = "Useful stuff."
|
19
|
-
s.test_files = ["tests/
|
19
|
+
s.test_files = ["tests/ask_and_send_test.rb", "tests/bijection_test.rb", "tests/blank_full_test.rb", "tests/count_by_test.rb", "tests/date_dummy_test.rb", "tests/date_time_dummy_test.rb", "tests/deep_dup_test.rb", "tests/extract_last_argument_options_test.rb", "tests/file_binary_test.rb", "tests/find_test.rb", "tests/generator_test.rb", "tests/go_test.rb", "tests/hash_symbolize_keys_recursive_test.rb", "tests/hash_union_test.rb", "tests/if_predicate_test.rb", "tests/limited_test.rb", "tests/lines_file_test.rb", "tests/memoize_test.rb", "tests/minimize_test.rb", "tests/module_group_test.rb", "tests/named_test.rb", "tests/null_test.rb", "tests/partial_application_test.rb", "tests/range_plus_test.rb", "tests/require_maybe_test.rb", "tests/round_test.rb", "tests/secure_write_test.rb", "tests/shuffle_test.rb", "tests/string_camelize_test.rb", "tests/string_underscore_test.rb", "tests/string_version_test.rb", "tests/subhash_test.rb", "tests/test_helper.rb", "tests/time_dummy_test.rb", "tests/try_test.rb", "tests/uniq_by_test.rb", "tests/ask_and_send_test.rb", "tests/bijection_test.rb", "tests/blank_full_test.rb", "tests/count_by_test.rb", "tests/date_dummy_test.rb", "tests/date_time_dummy_test.rb", "tests/deep_dup_test.rb", "tests/extract_last_argument_options_test.rb", "tests/file_binary_test.rb", "tests/find_test.rb", "tests/generator_test.rb", "tests/go_test.rb", "tests/hash_symbolize_keys_recursive_test.rb", "tests/hash_union_test.rb", "tests/if_predicate_test.rb", "tests/limited_test.rb", "tests/lines_file_test.rb", "tests/memoize_test.rb", "tests/minimize_test.rb", "tests/module_group_test.rb", "tests/named_test.rb", "tests/null_test.rb", "tests/partial_application_test.rb", "tests/range_plus_test.rb", "tests/require_maybe_test.rb", "tests/round_test.rb", "tests/secure_write_test.rb", "tests/shuffle_test.rb", "tests/string_camelize_test.rb", "tests/string_underscore_test.rb", "tests/string_version_test.rb", "tests/subhash_test.rb", "tests/time_dummy_test.rb", "tests/try_test.rb", "tests/uniq_by_test.rb"]
|
20
20
|
|
21
21
|
if s.respond_to? :specification_version then
|
22
22
|
s.specification_version = 3
|
23
23
|
|
24
24
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
25
|
-
s.add_development_dependency(%q<gem_hadar>, ["~> 0.1.
|
25
|
+
s.add_development_dependency(%q<gem_hadar>, ["~> 0.1.8"])
|
26
26
|
s.add_development_dependency(%q<test-unit>, ["~> 2.3"])
|
27
27
|
s.add_development_dependency(%q<utils>, [">= 0"])
|
28
28
|
else
|
29
|
-
s.add_dependency(%q<gem_hadar>, ["~> 0.1.
|
29
|
+
s.add_dependency(%q<gem_hadar>, ["~> 0.1.8"])
|
30
30
|
s.add_dependency(%q<test-unit>, ["~> 2.3"])
|
31
31
|
s.add_dependency(%q<utils>, [">= 0"])
|
32
32
|
end
|
33
33
|
else
|
34
|
-
s.add_dependency(%q<gem_hadar>, ["~> 0.1.
|
34
|
+
s.add_dependency(%q<gem_hadar>, ["~> 0.1.8"])
|
35
35
|
s.add_dependency(%q<test-unit>, ["~> 2.3"])
|
36
36
|
s.add_dependency(%q<utils>, [">= 0"])
|
37
37
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tins
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-06-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: gem_hadar
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.1.
|
21
|
+
version: 0.1.8
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.1.
|
29
|
+
version: 0.1.8
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: test-unit
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -65,154 +65,80 @@ executables: []
|
|
65
65
|
extensions: []
|
66
66
|
extra_rdoc_files:
|
67
67
|
- README.rdoc
|
68
|
-
-
|
69
|
-
|
70
|
-
-
|
71
|
-
|
72
|
-
-
|
73
|
-
|
74
|
-
-
|
75
|
-
|
76
|
-
-
|
77
|
-
|
78
|
-
-
|
79
|
-
|
80
|
-
-
|
81
|
-
|
82
|
-
-
|
83
|
-
|
84
|
-
-
|
85
|
-
|
86
|
-
-
|
87
|
-
|
88
|
-
-
|
89
|
-
|
90
|
-
-
|
91
|
-
|
92
|
-
-
|
93
|
-
|
94
|
-
-
|
95
|
-
|
96
|
-
-
|
97
|
-
|
98
|
-
-
|
99
|
-
|
100
|
-
-
|
101
|
-
|
102
|
-
-
|
103
|
-
|
104
|
-
-
|
105
|
-
|
106
|
-
-
|
107
|
-
|
108
|
-
-
|
109
|
-
|
110
|
-
-
|
111
|
-
|
112
|
-
-
|
113
|
-
|
114
|
-
-
|
115
|
-
|
116
|
-
-
|
117
|
-
|
118
|
-
-
|
119
|
-
|
120
|
-
-
|
121
|
-
|
122
|
-
-
|
123
|
-
|
124
|
-
-
|
125
|
-
|
126
|
-
-
|
127
|
-
|
128
|
-
-
|
129
|
-
|
130
|
-
-
|
131
|
-
|
132
|
-
-
|
133
|
-
|
134
|
-
-
|
135
|
-
|
136
|
-
-
|
137
|
-
|
138
|
-
-
|
139
|
-
|
140
|
-
-
|
141
|
-
|
142
|
-
- !binary |-
|
143
|
-
bGliL3RpbnMveHQvd3JpdGUucmI=
|
144
|
-
- !binary |-
|
145
|
-
bGliL3RpbnMveHQvZXh0cmFjdF9sYXN0X2FyZ3VtZW50X29wdGlvbnMucmI=
|
146
|
-
- !binary |-
|
147
|
-
bGliL3RpbnMveHQvaXJiLnJi
|
148
|
-
- !binary |-
|
149
|
-
bGliL3RpbnMveHQvcm91bmQucmI=
|
150
|
-
- !binary |-
|
151
|
-
bGliL3RpbnMveHQvZGF0ZV9kdW1teS5yYg==
|
152
|
-
- !binary |-
|
153
|
-
bGliL3RpbnMveHQvc3RyaW5nX2NhbWVsaXplLnJi
|
154
|
-
- !binary |-
|
155
|
-
bGliL3RpbnMveHQvc2h1ZmZsZS5yYg==
|
156
|
-
- !binary |-
|
157
|
-
bGliL3RpbnMveHQvZGVlcF9kdXAucmI=
|
158
|
-
- !binary |-
|
159
|
-
bGliL3RpbnMveHQvc3ltYm9sX3RvX3Byb2MucmI=
|
160
|
-
- !binary |-
|
161
|
-
bGliL3RpbnMveHQvc3ViaGFzaC5yYg==
|
162
|
-
- !binary |-
|
163
|
-
bGliL3RpbnMveHQvYXR0ZW1wdC5yYg==
|
164
|
-
- !binary |-
|
165
|
-
bGliL3RpbnMveHQvbnVsbC5yYg==
|
166
|
-
- !binary |-
|
167
|
-
bGliL3RpbnMveHQvcmVxdWlyZV9tYXliZS5yYg==
|
168
|
-
- !binary |-
|
169
|
-
bGliL3RpbnMveHQvc2VjdXJlX3dyaXRlLnJi
|
170
|
-
- !binary |-
|
171
|
-
bGliL3RpbnMveHQvZmlsZV9iaW5hcnkucmI=
|
172
|
-
- !binary |-
|
173
|
-
bGliL3RpbnMveHQvc3RyaW5nX3ZlcnNpb24ucmI=
|
174
|
-
- !binary |-
|
175
|
-
bGliL3RpbnMveHQvcC5yYg==
|
176
|
-
- !binary |-
|
177
|
-
bGliL3RpbnMveHQvcGFydGlhbF9hcHBsaWNhdGlvbi5yYg==
|
178
|
-
- !binary |-
|
179
|
-
bGliL3RpbnMveHQvdGltZV9kdW1teS5yYg==
|
180
|
-
- !binary |-
|
181
|
-
bGliL3RpbnMveHQvc3RyaW5nLnJi
|
182
|
-
- !binary |-
|
183
|
-
bGliL3RpbnMveHQvZnVsbC5yYg==
|
184
|
-
- !binary |-
|
185
|
-
bGliL3RpbnMveHQvcmFuZ2VfcGx1cy5yYg==
|
186
|
-
- !binary |-
|
187
|
-
bGliL3RpbnMveHQvY291bnRfYnkucmI=
|
188
|
-
- !binary |-
|
189
|
-
bGliL3RpbnMveHQvYmxhbmsucmI=
|
190
|
-
- !binary |-
|
191
|
-
bGliL3RpbnMveHQvdW5pcV9ieS5yYg==
|
192
|
-
- !binary |-
|
193
|
-
bGliL3RpbnMveHQvaWZfcHJlZGljYXRlLnJi
|
194
|
-
- !binary |-
|
195
|
-
bGliL3RpbnMveHQvZGF0ZV90aW1lX2R1bW15LnJi
|
196
|
-
- !binary |-
|
197
|
-
bGliL3RpbnMvcC5yYg==
|
198
|
-
- !binary |-
|
199
|
-
bGliL3RpbnMvbWluaW1pemUucmI=
|
200
|
-
- !binary |-
|
201
|
-
bGliL3RpbnMvcGFydGlhbF9hcHBsaWNhdGlvbi5yYg==
|
202
|
-
- !binary |-
|
203
|
-
bGliL3RpbnMvdGltZV9kdW1teS5yYg==
|
204
|
-
- !binary |-
|
205
|
-
bGliL3RpbnMvcmFuZ2VfcGx1cy5yYg==
|
206
|
-
- !binary |-
|
207
|
-
bGliL3RpbnMvY291bnRfYnkucmI=
|
208
|
-
- !binary |-
|
209
|
-
bGliL3RpbnMvdW5pcV9ieS5yYg==
|
210
|
-
- !binary |-
|
211
|
-
bGliL3RpbnMvaWZfcHJlZGljYXRlLnJi
|
212
|
-
- !binary |-
|
213
|
-
bGliL3RpbnMvZGF0ZV90aW1lX2R1bW15LnJi
|
214
|
-
- !binary |-
|
215
|
-
bGliL3RpbnMucmI=
|
68
|
+
- lib/spruz.rb
|
69
|
+
- lib/tins/alias.rb
|
70
|
+
- lib/tins/ask_and_send.rb
|
71
|
+
- lib/tins/attempt.rb
|
72
|
+
- lib/tins/bijection.rb
|
73
|
+
- lib/tins/count_by.rb
|
74
|
+
- lib/tins/date_dummy.rb
|
75
|
+
- lib/tins/date_time_dummy.rb
|
76
|
+
- lib/tins/deep_dup.rb
|
77
|
+
- lib/tins/extract_last_argument_options.rb
|
78
|
+
- lib/tins/file_binary.rb
|
79
|
+
- lib/tins/find.rb
|
80
|
+
- lib/tins/generator.rb
|
81
|
+
- lib/tins/go.rb
|
82
|
+
- lib/tins/hash_symbolize_keys_recursive.rb
|
83
|
+
- lib/tins/hash_union.rb
|
84
|
+
- lib/tins/if_predicate.rb
|
85
|
+
- lib/tins/limited.rb
|
86
|
+
- lib/tins/lines_file.rb
|
87
|
+
- lib/tins/memoize.rb
|
88
|
+
- lib/tins/minimize.rb
|
89
|
+
- lib/tins/module_group.rb
|
90
|
+
- lib/tins/null.rb
|
91
|
+
- lib/tins/once.rb
|
92
|
+
- lib/tins/p.rb
|
93
|
+
- lib/tins/partial_application.rb
|
94
|
+
- lib/tins/range_plus.rb
|
95
|
+
- lib/tins/require_maybe.rb
|
96
|
+
- lib/tins/round.rb
|
97
|
+
- lib/tins/secure_write.rb
|
98
|
+
- lib/tins/shuffle.rb
|
99
|
+
- lib/tins/string_camelize.rb
|
100
|
+
- lib/tins/string_underscore.rb
|
101
|
+
- lib/tins/string_version.rb
|
102
|
+
- lib/tins/subhash.rb
|
103
|
+
- lib/tins/time_dummy.rb
|
104
|
+
- lib/tins/to_proc.rb
|
105
|
+
- lib/tins/uniq_by.rb
|
106
|
+
- lib/tins/version.rb
|
107
|
+
- lib/tins/write.rb
|
108
|
+
- lib/tins/xt/ask_and_send.rb
|
109
|
+
- lib/tins/xt/attempt.rb
|
110
|
+
- lib/tins/xt/blank.rb
|
111
|
+
- lib/tins/xt/count_by.rb
|
112
|
+
- lib/tins/xt/date_dummy.rb
|
113
|
+
- lib/tins/xt/date_time_dummy.rb
|
114
|
+
- lib/tins/xt/deep_dup.rb
|
115
|
+
- lib/tins/xt/extract_last_argument_options.rb
|
116
|
+
- lib/tins/xt/file_binary.rb
|
117
|
+
- lib/tins/xt/full.rb
|
118
|
+
- lib/tins/xt/hash_symbolize_keys_recursive.rb
|
119
|
+
- lib/tins/xt/hash_union.rb
|
120
|
+
- lib/tins/xt/if_predicate.rb
|
121
|
+
- lib/tins/xt/irb.rb
|
122
|
+
- lib/tins/xt/named.rb
|
123
|
+
- lib/tins/xt/null.rb
|
124
|
+
- lib/tins/xt/p.rb
|
125
|
+
- lib/tins/xt/partial_application.rb
|
126
|
+
- lib/tins/xt/range_plus.rb
|
127
|
+
- lib/tins/xt/require_maybe.rb
|
128
|
+
- lib/tins/xt/round.rb
|
129
|
+
- lib/tins/xt/secure_write.rb
|
130
|
+
- lib/tins/xt/shuffle.rb
|
131
|
+
- lib/tins/xt/string.rb
|
132
|
+
- lib/tins/xt/string_camelize.rb
|
133
|
+
- lib/tins/xt/string_underscore.rb
|
134
|
+
- lib/tins/xt/string_version.rb
|
135
|
+
- lib/tins/xt/subhash.rb
|
136
|
+
- lib/tins/xt/symbol_to_proc.rb
|
137
|
+
- lib/tins/xt/time_dummy.rb
|
138
|
+
- lib/tins/xt/uniq_by.rb
|
139
|
+
- lib/tins/xt/write.rb
|
140
|
+
- lib/tins/xt.rb
|
141
|
+
- lib/tins.rb
|
216
142
|
files:
|
217
143
|
- .gitignore
|
218
144
|
- .travis.yml
|
@@ -351,7 +277,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
351
277
|
version: '0'
|
352
278
|
segments:
|
353
279
|
- 0
|
354
|
-
hash:
|
280
|
+
hash: -2442091054952005424
|
355
281
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
356
282
|
none: false
|
357
283
|
requirements:
|
@@ -360,80 +286,44 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
360
286
|
version: '0'
|
361
287
|
requirements: []
|
362
288
|
rubyforge_project:
|
363
|
-
rubygems_version: 1.8.
|
289
|
+
rubygems_version: 1.8.24
|
364
290
|
signing_key:
|
365
291
|
specification_version: 3
|
366
292
|
summary: Useful stuff.
|
367
293
|
test_files:
|
368
|
-
-
|
369
|
-
|
370
|
-
-
|
371
|
-
|
372
|
-
-
|
373
|
-
|
374
|
-
-
|
375
|
-
|
376
|
-
-
|
377
|
-
|
378
|
-
-
|
379
|
-
|
380
|
-
-
|
381
|
-
|
382
|
-
-
|
383
|
-
|
384
|
-
-
|
385
|
-
|
386
|
-
-
|
387
|
-
|
388
|
-
-
|
389
|
-
|
390
|
-
-
|
391
|
-
|
392
|
-
-
|
393
|
-
|
394
|
-
-
|
395
|
-
|
396
|
-
-
|
397
|
-
|
398
|
-
-
|
399
|
-
|
400
|
-
-
|
401
|
-
|
402
|
-
-
|
403
|
-
|
404
|
-
- !binary |-
|
405
|
-
dGVzdHMvdW5pcV9ieV90ZXN0LnJi
|
406
|
-
- !binary |-
|
407
|
-
dGVzdHMvdGltZV9kdW1teV90ZXN0LnJi
|
408
|
-
- !binary |-
|
409
|
-
dGVzdHMvc3RyaW5nX2NhbWVsaXplX3Rlc3QucmI=
|
410
|
-
- !binary |-
|
411
|
-
dGVzdHMvbGluZXNfZmlsZV90ZXN0LnJi
|
412
|
-
- !binary |-
|
413
|
-
dGVzdHMvc3RyaW5nX3VuZGVyc2NvcmVfdGVzdC5yYg==
|
414
|
-
- !binary |-
|
415
|
-
dGVzdHMvZGF0ZV9kdW1teV90ZXN0LnJi
|
416
|
-
- !binary |-
|
417
|
-
dGVzdHMvaGFzaF9zeW1ib2xpemVfa2V5c19yZWN1cnNpdmVfdGVzdC5yYg==
|
418
|
-
- !binary |-
|
419
|
-
dGVzdHMvbmFtZWRfdGVzdC5yYg==
|
420
|
-
- !binary |-
|
421
|
-
dGVzdHMvaGFzaF91bmlvbl90ZXN0LnJi
|
422
|
-
- !binary |-
|
423
|
-
dGVzdHMvZ29fdGVzdC5yYg==
|
424
|
-
- !binary |-
|
425
|
-
dGVzdHMvc3ViaGFzaF90ZXN0LnJi
|
426
|
-
- !binary |-
|
427
|
-
dGVzdHMvcGFydGlhbF9hcHBsaWNhdGlvbl90ZXN0LnJi
|
428
|
-
- !binary |-
|
429
|
-
dGVzdHMvbWluaW1pemVfdGVzdC5yYg==
|
430
|
-
- !binary |-
|
431
|
-
dGVzdHMvcm91bmRfdGVzdC5yYg==
|
432
|
-
- !binary |-
|
433
|
-
dGVzdHMvdGVzdF9oZWxwZXIucmI=
|
434
|
-
- !binary |-
|
435
|
-
dGVzdHMvc2h1ZmZsZV90ZXN0LnJi
|
436
|
-
- !binary |-
|
437
|
-
dGVzdHMvYXNrX2FuZF9zZW5kX3Rlc3QucmI=
|
438
|
-
- !binary |-
|
439
|
-
dGVzdHMvbW9kdWxlX2dyb3VwX3Rlc3QucmI=
|
294
|
+
- tests/ask_and_send_test.rb
|
295
|
+
- tests/bijection_test.rb
|
296
|
+
- tests/blank_full_test.rb
|
297
|
+
- tests/count_by_test.rb
|
298
|
+
- tests/date_dummy_test.rb
|
299
|
+
- tests/date_time_dummy_test.rb
|
300
|
+
- tests/deep_dup_test.rb
|
301
|
+
- tests/extract_last_argument_options_test.rb
|
302
|
+
- tests/file_binary_test.rb
|
303
|
+
- tests/find_test.rb
|
304
|
+
- tests/generator_test.rb
|
305
|
+
- tests/go_test.rb
|
306
|
+
- tests/hash_symbolize_keys_recursive_test.rb
|
307
|
+
- tests/hash_union_test.rb
|
308
|
+
- tests/if_predicate_test.rb
|
309
|
+
- tests/limited_test.rb
|
310
|
+
- tests/lines_file_test.rb
|
311
|
+
- tests/memoize_test.rb
|
312
|
+
- tests/minimize_test.rb
|
313
|
+
- tests/module_group_test.rb
|
314
|
+
- tests/named_test.rb
|
315
|
+
- tests/null_test.rb
|
316
|
+
- tests/partial_application_test.rb
|
317
|
+
- tests/range_plus_test.rb
|
318
|
+
- tests/require_maybe_test.rb
|
319
|
+
- tests/round_test.rb
|
320
|
+
- tests/secure_write_test.rb
|
321
|
+
- tests/shuffle_test.rb
|
322
|
+
- tests/string_camelize_test.rb
|
323
|
+
- tests/string_underscore_test.rb
|
324
|
+
- tests/string_version_test.rb
|
325
|
+
- tests/subhash_test.rb
|
326
|
+
- tests/test_helper.rb
|
327
|
+
- tests/time_dummy_test.rb
|
328
|
+
- tests/try_test.rb
|
329
|
+
- tests/uniq_by_test.rb
|