ndr_support 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +14 -0
  3. data/.rubocop.yml +27 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +22 -0
  6. data/CODE_OF_CONDUCT.md +13 -0
  7. data/Gemfile +4 -0
  8. data/Guardfile +16 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +91 -0
  11. data/Rakefile +12 -0
  12. data/code_safety.yml +258 -0
  13. data/gemfiles/Gemfile.rails32 +6 -0
  14. data/gemfiles/Gemfile.rails32.lock +108 -0
  15. data/gemfiles/Gemfile.rails41 +6 -0
  16. data/gemfiles/Gemfile.rails41.lock +111 -0
  17. data/gemfiles/Gemfile.rails42 +6 -0
  18. data/gemfiles/Gemfile.rails42.lock +111 -0
  19. data/lib/ndr_support.rb +21 -0
  20. data/lib/ndr_support/array.rb +52 -0
  21. data/lib/ndr_support/concerns/working_days.rb +94 -0
  22. data/lib/ndr_support/date_and_time_extensions.rb +103 -0
  23. data/lib/ndr_support/daterange.rb +196 -0
  24. data/lib/ndr_support/fixnum/calculations.rb +15 -0
  25. data/lib/ndr_support/fixnum/julian_date_conversions.rb +14 -0
  26. data/lib/ndr_support/hash.rb +52 -0
  27. data/lib/ndr_support/integer.rb +12 -0
  28. data/lib/ndr_support/nil.rb +38 -0
  29. data/lib/ndr_support/ourdate.rb +97 -0
  30. data/lib/ndr_support/ourtime.rb +51 -0
  31. data/lib/ndr_support/regexp_range.rb +65 -0
  32. data/lib/ndr_support/safe_file.rb +185 -0
  33. data/lib/ndr_support/safe_path.rb +268 -0
  34. data/lib/ndr_support/string/cleaning.rb +136 -0
  35. data/lib/ndr_support/string/conversions.rb +137 -0
  36. data/lib/ndr_support/tasks.rb +1 -0
  37. data/lib/ndr_support/time/conversions.rb +13 -0
  38. data/lib/ndr_support/utf8_encoding.rb +72 -0
  39. data/lib/ndr_support/utf8_encoding/control_characters.rb +53 -0
  40. data/lib/ndr_support/utf8_encoding/force_binary.rb +44 -0
  41. data/lib/ndr_support/utf8_encoding/object_support.rb +31 -0
  42. data/lib/ndr_support/version.rb +5 -0
  43. data/lib/ndr_support/yaml/serialization_migration.rb +65 -0
  44. data/lib/tasks/audit_code.rake +423 -0
  45. data/ndr_support.gemspec +39 -0
  46. data/test/array_test.rb +20 -0
  47. data/test/concerns/working_days_test.rb +122 -0
  48. data/test/daterange_test.rb +194 -0
  49. data/test/fixnum/calculations_test.rb +28 -0
  50. data/test/hash_test.rb +84 -0
  51. data/test/integer_test.rb +14 -0
  52. data/test/nil_test.rb +40 -0
  53. data/test/ourdate_test.rb +27 -0
  54. data/test/ourtime_test.rb +27 -0
  55. data/test/regexp_range_test.rb +135 -0
  56. data/test/resources/filesystem_paths.yml +37 -0
  57. data/test/safe_file_test.rb +597 -0
  58. data/test/safe_path_test.rb +168 -0
  59. data/test/string/cleaning_test.rb +176 -0
  60. data/test/string/conversions_test.rb +353 -0
  61. data/test/test_helper.rb +41 -0
  62. data/test/time/conversions_test.rb +15 -0
  63. data/test/utf8_encoding/control_characters_test.rb +84 -0
  64. data/test/utf8_encoding/force_binary_test.rb +64 -0
  65. data/test/utf8_encoding_test.rb +170 -0
  66. data/test/yaml/serialization_test.rb +145 -0
  67. metadata +295 -0
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZDJkMjRhNmU0MmVhN2RmZTllMjVhY2FhYmQxMjA3M2YxZjI0OTJmOA==
5
+ data.tar.gz: !binary |-
6
+ YTc0ODliMTUwMjk2MzE0N2NlZTdjNjM4NjIzNjFmZjYyYzdmMmEyMQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MjIxYWZhZDNiNDU2NzQxZTI5N2NhODhkMGI1ZTA3ZjZiNDk1ODNmMmRjZDc0
10
+ NTkwODEzMDhmNzA3NmY0Mjk2ODIyNGEwNDk1NTdkODI4ZjU0NDZlMzE2ZTc0
11
+ Y2EyMmIwMzVhYTc0OWQyNjAxN2JjMzA4M2JjNmVhMzY3YmE4NDk=
12
+ data.tar.gz: !binary |-
13
+ MDUyZDU3NTE0ZWEzMmViMDkxZjM2Zjk0MjdiMWM2ZTNhMDA2YmFkNWI0ZmFm
14
+ ZWQ1NmMxMWFjYzVjZjc4MTQyOTUxOGZiOTkyN2RlYzMzZjE0ZGJkZDkzYWMy
15
+ YTlhYjczZDg0YmEyOThlNDA4NDEyODFjZjMzNDgyNmJjYzA4ZDY=
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/.rubocop.yml ADDED
@@ -0,0 +1,27 @@
1
+ # By default, would enforce { key: value } rather than { :key => value }.
2
+ AllCops:
3
+ RunRailsCops: true
4
+
5
+ # Multi-line method chaining should be done with trailing dots.
6
+ Style/DotPosition:
7
+ EnforcedStyle: trailing
8
+
9
+ HashSyntax:
10
+ EnforcedStyle: hash_rockets
11
+ SupportedStyles:
12
+ - ruby19
13
+ - hash_rockets
14
+
15
+ # Would enforce "-> { }", which we cannot use yet.
16
+ Lambda:
17
+ Enabled: false
18
+
19
+ # ...
20
+ LineLength:
21
+ Max: 99
22
+
23
+ # Relax some of the cops for tests
24
+ Metrics/ClassLength: &exclude_tests
25
+ Exclude:
26
+ - test/**/*.rb
27
+ Metrics/MethodLength: *exclude_tests
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 1.9.3-p547
data/.travis.yml ADDED
@@ -0,0 +1,22 @@
1
+ language: ruby
2
+
3
+ rvm:
4
+ - 1.9.3
5
+ - 2.0.0
6
+ - 2.1
7
+ - 2.2
8
+
9
+ gemfile:
10
+ - gemfiles/Gemfile.rails32
11
+ - gemfiles/Gemfile.rails41
12
+ - gemfiles/Gemfile.rails42
13
+
14
+ sudo: false
15
+
16
+ cache: bundler
17
+
18
+ before_install: "rm ${BUNDLE_GEMFILE}.lock"
19
+
20
+ before_script: "bundle update"
21
+
22
+ script: "bundle exec rake test"
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ndr_support.gemspec
4
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,16 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ # directories %(app lib config test spec feature)
5
+ guard :rubocop, :all_on_start => false, :keep_failed => false do
6
+ watch(/.+\.(gemspec|rake|rb)$/)
7
+ watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
8
+ end
9
+
10
+ guard :minitest do
11
+ watch(%r{^test/.+_test\.rb$})
12
+ watch('test/test_helper.rb') { 'test' }
13
+
14
+ # Non-rails
15
+ watch(%r{^lib/ndr_support/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" }
16
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2011-2015 Public Health England
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,91 @@
1
+ # NdrSupport [![Build Status](https://travis-ci.org/PublicHealthEngland/ndr_support.svg?branch=master)](https://travis-ci.org/PublicHealthEngland/ndr_support)
2
+
3
+ This is the Public Health England (PHE) National Disease Registers (NDR) Support ruby gem, providing:
4
+
5
+ 1. core ruby class extensions;
6
+ 2. additional time, regular expression, file security and encoding classes; and
7
+ 3. rake tasks to manage code auditing of ruby based projects.
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'ndr_support', :git => 'https://github.com/PublicHealthEngland/ndr_support.git'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself by cloning the project, then executing:
22
+
23
+ $ gem install ndr_support.gem
24
+
25
+ ## Usage
26
+
27
+ ndr_support extends/overrides the following core classes/modules:
28
+
29
+ - Array
30
+ - Fixnum
31
+ - Hash
32
+ - Integer
33
+ - NilClass
34
+ - String
35
+ - Time
36
+
37
+ ndr_support adds the following classes:
38
+
39
+ - Daterange
40
+ - Ourdate
41
+ - Ourtime
42
+ - RegexpRange
43
+ - SafeFile
44
+ - SafePath
45
+ - UTF8Encoding
46
+
47
+ ### YAML Serialization Wrapper
48
+
49
+ ndr_support also provides a lightweight wrapper around YAML serialization to provide support for YAML engines and string encodings. This behavour is not enabled by default.
50
+
51
+ To enable this add the following line to your code:
52
+
53
+ ```ruby
54
+ include NdrSupport::YAML::SerializationMigration
55
+ ```
56
+
57
+ ### Code Auditing Rake Tasks
58
+
59
+ ndr_support also provides a mechanism to manage the state of routine code quality and security peer reviews. It should be used as part of wider quality and security policies.
60
+
61
+ It provides rake tasks to help manage the process of persisting the state of security reviews.
62
+
63
+ Once files have been reviewed as secure, the revision number for that file is stored in code_safety.yml. If used within a Rails app, this file is stored in the config/ folder, otherwise it is kept in the project's root folder.
64
+
65
+ Note: This feature works with svn and git repositories and svn, git-svn and git working copies.
66
+
67
+ To add code auditing to your project add this line to your application's Rakefile:
68
+
69
+ ```ruby
70
+ require 'ndr_support/tasks'
71
+ ```
72
+
73
+ For more details of the tasks available, execute:
74
+
75
+ $ rake -T audit
76
+
77
+ ## Contributing
78
+
79
+ 1. Fork it ( https://github.com/PublicHealthEngland/ndr_support/fork )
80
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
81
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
82
+ 4. Push to the branch (`git push origin my-new-feature`)
83
+ 5. Create a new Pull Request
84
+
85
+ Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
86
+
87
+ ## Test Data
88
+
89
+ All test data in this repository is fictitious. Any resemblance to real persons, living or dead, is purely coincidental.
90
+
91
+ Note: Real codes exist in the tests, postcodes for example, but bear no relation to real patient data. Please ensure that you *always* only ever commit dummy data when contributing to this project.
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake/testtask'
3
+ require 'ndr_support/tasks'
4
+
5
+ Rake::TestTask.new do |t|
6
+ t.libs << 'test'
7
+ t.pattern = 'test/**/*_test.rb'
8
+ t.verbose = true
9
+ end
10
+
11
+ desc 'Run tests'
12
+ task :default => :test
data/code_safety.yml ADDED
@@ -0,0 +1,258 @@
1
+ ---
2
+ file safety:
3
+ .gitignore:
4
+ comments:
5
+ reviewed_by: timgentry
6
+ safe_revision: 2590c1c28a8ca9cfb20ad3fe3ee65a12190a5810
7
+ .rubocop.yml:
8
+ comments:
9
+ reviewed_by: timgentry
10
+ safe_revision: 506a317e59d0ccb5b32d813b74d822f35a55cea9
11
+ .ruby-version:
12
+ comments:
13
+ reviewed_by: timgentry
14
+ safe_revision: 6a7c3764e5315981070eba27b9f0be9d9182476c
15
+ .travis.yml:
16
+ comments:
17
+ reviewed_by: timgentry
18
+ safe_revision: d82f4f2fc0d720607ca5c25f068370757d3466e5
19
+ CODE_OF_CONDUCT.md:
20
+ comments:
21
+ reviewed_by: timgentry
22
+ safe_revision: c752769b91c0e782be0acf44e56bbc066a275365
23
+ Gemfile:
24
+ comments:
25
+ reviewed_by: timgentry
26
+ safe_revision: 6a7c3764e5315981070eba27b9f0be9d9182476c
27
+ Guardfile:
28
+ comments:
29
+ reviewed_by: timgentry
30
+ safe_revision: 506a317e59d0ccb5b32d813b74d822f35a55cea9
31
+ LICENSE.txt:
32
+ comments:
33
+ reviewed_by: timgentry
34
+ safe_revision: c752769b91c0e782be0acf44e56bbc066a275365
35
+ README.md:
36
+ comments:
37
+ reviewed_by: brian.shand
38
+ safe_revision: 63cff701a1740a3bfa04330c21f1262dd49a7c31
39
+ Rakefile:
40
+ comments:
41
+ reviewed_by: timgentry
42
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
43
+ gemfiles/Gemfile.rails32:
44
+ comments:
45
+ reviewed_by: pauleves
46
+ safe_revision: f76ad0fe72d42b1ff37553c8194935a8b93a6848
47
+ gemfiles/Gemfile.rails32.lock:
48
+ comments:
49
+ reviewed_by: pauleves
50
+ safe_revision: 0455a5dd9685aff2e3ce56963932b132067afc71
51
+ gemfiles/Gemfile.rails41:
52
+ comments:
53
+ reviewed_by: pauleves
54
+ safe_revision: f76ad0fe72d42b1ff37553c8194935a8b93a6848
55
+ gemfiles/Gemfile.rails41.lock:
56
+ comments:
57
+ reviewed_by: pauleves
58
+ safe_revision: 0455a5dd9685aff2e3ce56963932b132067afc71
59
+ gemfiles/Gemfile.rails42:
60
+ comments:
61
+ reviewed_by: pauleves
62
+ safe_revision: f76ad0fe72d42b1ff37553c8194935a8b93a6848
63
+ gemfiles/Gemfile.rails42.lock:
64
+ comments:
65
+ reviewed_by: pauleves
66
+ safe_revision: 0455a5dd9685aff2e3ce56963932b132067afc71
67
+ lib/ndr_support.rb:
68
+ comments:
69
+ reviewed_by: pauleves
70
+ safe_revision: 92652deb1e16e6023408633648bd955d7936dbf4
71
+ lib/ndr_support/array.rb:
72
+ comments:
73
+ reviewed_by: pauleves
74
+ safe_revision: 4a4ed24d2cfe7e1736baadf4cf6e0fece6823be1
75
+ lib/ndr_support/concerns/working_days.rb:
76
+ comments:
77
+ reviewed_by: pauleves
78
+ safe_revision: 5f9c98dcad6f6889d2431eb98cf07b1f5c3e57be
79
+ lib/ndr_support/date_and_time_extensions.rb:
80
+ comments:
81
+ reviewed_by: pauleves
82
+ safe_revision: 29595e6431587ff9b7db6e3ad3abbb3577bff99c
83
+ lib/ndr_support/daterange.rb:
84
+ comments:
85
+ reviewed_by: pauleves
86
+ safe_revision: 506a317e59d0ccb5b32d813b74d822f35a55cea9
87
+ lib/ndr_support/fixnum/calculations.rb:
88
+ comments:
89
+ reviewed_by: pauleves
90
+ safe_revision: f7dbfe2acd1b067858867d58c77e49b03ea78a1d
91
+ lib/ndr_support/fixnum/julian_date_conversions.rb:
92
+ comments:
93
+ reviewed_by: pauleves
94
+ safe_revision: 51b80457875c3916be6c8d6f5dab026143033d53
95
+ lib/ndr_support/hash.rb:
96
+ comments:
97
+ reviewed_by: pauleves
98
+ safe_revision: 506a317e59d0ccb5b32d813b74d822f35a55cea9
99
+ lib/ndr_support/integer.rb:
100
+ comments:
101
+ reviewed_by: pauleves
102
+ safe_revision: 4a4ed24d2cfe7e1736baadf4cf6e0fece6823be1
103
+ lib/ndr_support/nil.rb:
104
+ comments:
105
+ reviewed_by: pauleves
106
+ safe_revision: 4a4ed24d2cfe7e1736baadf4cf6e0fece6823be1
107
+ lib/ndr_support/ourdate.rb:
108
+ comments:
109
+ reviewed_by: pauleves
110
+ safe_revision: a18fb5c6c360806a177a9c5584458586e90b3530
111
+ lib/ndr_support/ourtime.rb:
112
+ comments:
113
+ reviewed_by: pauleves
114
+ safe_revision: 4a4ed24d2cfe7e1736baadf4cf6e0fece6823be1
115
+ lib/ndr_support/regexp_range.rb:
116
+ comments:
117
+ reviewed_by: pauleves
118
+ safe_revision: f9341d1c7f797f9fe81af937c383d41c23872b2f
119
+ lib/ndr_support/safe_file.rb:
120
+ comments:
121
+ reviewed_by: pauleves
122
+ safe_revision: 506a317e59d0ccb5b32d813b74d822f35a55cea9
123
+ lib/ndr_support/safe_path.rb:
124
+ comments:
125
+ reviewed_by: pauleves
126
+ safe_revision: 506a317e59d0ccb5b32d813b74d822f35a55cea9
127
+ lib/ndr_support/string/cleaning.rb:
128
+ comments:
129
+ reviewed_by: timgentry
130
+ safe_revision: ba7da080c89d26d2f1472588250d7b705048aeb1
131
+ lib/ndr_support/string/conversions.rb:
132
+ comments:
133
+ reviewed_by: timgentry
134
+ safe_revision: 506a317e59d0ccb5b32d813b74d822f35a55cea9
135
+ lib/ndr_support/tasks.rb:
136
+ comments:
137
+ reviewed_by: timgentry
138
+ safe_revision: 62337584a32e5c30c2e9af7cd998a9df684885cc
139
+ lib/ndr_support/time/conversions.rb:
140
+ comments:
141
+ reviewed_by: timgentry
142
+ safe_revision: 92652deb1e16e6023408633648bd955d7936dbf4
143
+ lib/ndr_support/utf8_encoding.rb:
144
+ comments:
145
+ reviewed_by: timgentry
146
+ safe_revision: 29595e6431587ff9b7db6e3ad3abbb3577bff99c
147
+ lib/ndr_support/utf8_encoding/control_characters.rb:
148
+ comments:
149
+ reviewed_by: timgentry
150
+ safe_revision: d210b982841611381a0df02d8f2db9c13e41e42f
151
+ lib/ndr_support/utf8_encoding/force_binary.rb:
152
+ comments:
153
+ reviewed_by: timgentry
154
+ safe_revision: 29595e6431587ff9b7db6e3ad3abbb3577bff99c
155
+ lib/ndr_support/utf8_encoding/object_support.rb:
156
+ comments:
157
+ reviewed_by: timgentry
158
+ safe_revision: f7adf44fc2772e1926df37abfd9041d41c303328
159
+ lib/ndr_support/version.rb:
160
+ comments:
161
+ reviewed_by: timgentry
162
+ safe_revision: 4bb6a2dc2e82d1e2188047c24f098c7811a98edb
163
+ lib/ndr_support/yaml/serialization_migration.rb:
164
+ comments:
165
+ reviewed_by: timgentry
166
+ safe_revision: 29595e6431587ff9b7db6e3ad3abbb3577bff99c
167
+ lib/tasks/audit_code.rake:
168
+ comments:
169
+ reviewed_by: timgentry
170
+ safe_revision: 2665e780ba942e7f0d92f6fd8d0b979e327d1edb
171
+ ndr_support.gemspec:
172
+ comments:
173
+ reviewed_by: timgentry
174
+ safe_revision: 1e99e60a1ed93c293ba57ab0f90535c3b3ff8469
175
+ test/array_test.rb:
176
+ comments:
177
+ reviewed_by: timgentry
178
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
179
+ test/concerns/working_days_test.rb:
180
+ comments:
181
+ reviewed_by: timgentry
182
+ safe_revision: 506a317e59d0ccb5b32d813b74d822f35a55cea9
183
+ test/daterange_test.rb:
184
+ comments:
185
+ reviewed_by: timgentry
186
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
187
+ test/fixnum/calculations_test.rb:
188
+ comments:
189
+ reviewed_by: timgentry
190
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
191
+ test/hash_test.rb:
192
+ comments:
193
+ reviewed_by: timgentry
194
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
195
+ test/integer_test.rb:
196
+ comments:
197
+ reviewed_by: timgentry
198
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
199
+ test/nil_test.rb:
200
+ comments:
201
+ reviewed_by: timgentry
202
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
203
+ test/ourdate_test.rb:
204
+ comments:
205
+ reviewed_by: timgentry
206
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
207
+ test/ourtime_test.rb:
208
+ comments:
209
+ reviewed_by: timgentry
210
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
211
+ test/regexp_range_test.rb:
212
+ comments:
213
+ reviewed_by: timgentry
214
+ safe_revision: 29595e6431587ff9b7db6e3ad3abbb3577bff99c
215
+ test/resources/filesystem_paths.yml:
216
+ comments:
217
+ reviewed_by: timgentry
218
+ safe_revision: 81061f85ccdf8933adc7f104d7eeaef1e2d71e26
219
+ test/safe_file_test.rb:
220
+ comments:
221
+ reviewed_by: timgentry
222
+ safe_revision: 506a317e59d0ccb5b32d813b74d822f35a55cea9
223
+ test/safe_path_test.rb:
224
+ comments:
225
+ reviewed_by: timgentry
226
+ safe_revision: b562d0c15ff1b1d565522a47e6bae47ea09706f0
227
+ test/string/cleaning_test.rb:
228
+ comments:
229
+ reviewed_by: timgentry
230
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
231
+ test/string/conversions_test.rb:
232
+ comments:
233
+ reviewed_by: timgentry
234
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
235
+ test/test_helper.rb:
236
+ comments:
237
+ reviewed_by: timgentry
238
+ safe_revision: 506a317e59d0ccb5b32d813b74d822f35a55cea9
239
+ test/time/conversions_test.rb:
240
+ comments:
241
+ reviewed_by: timgentry
242
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
243
+ test/utf8_encoding/control_characters_test.rb:
244
+ comments:
245
+ reviewed_by: timgentry
246
+ safe_revision: d210b982841611381a0df02d8f2db9c13e41e42f
247
+ test/utf8_encoding/force_binary_test.rb:
248
+ comments:
249
+ reviewed_by: timgentry
250
+ safe_revision: 29595e6431587ff9b7db6e3ad3abbb3577bff99c
251
+ test/utf8_encoding_test.rb:
252
+ comments:
253
+ reviewed_by: timgentry
254
+ safe_revision: 2a5d30674dc9dde336e1dbbbf3c8a98905647432
255
+ test/yaml/serialization_test.rb:
256
+ comments:
257
+ reviewed_by: timgentry
258
+ safe_revision: 862d95310b59b38d3dad1b906253981049a854bd