more_math 1.1.0 → 1.2.0

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: 0dea8884eed0b41c32c4d614efe6df1fc4144f688dd239a0b472175de3ee02e7
4
- data.tar.gz: aa8251a1e275bce04d1ab85df84fd13b0ed726efd29818181493d8f27df71bf1
3
+ metadata.gz: bb1b7eaf071255d2a996c85a1f46394a21e30178a74940d8b88f7c538dac094b
4
+ data.tar.gz: d6f4f436f85fd44dd57751190d1ba85f458b07eecc07a3fa78c7f1de69c3b160
5
5
  SHA512:
6
- metadata.gz: 1ba55a79ef2c6da6fc6019aa0431dd26592cae8c3792817f9de17a519395ba15ed897578a087a631effb52ce31355e94ff522157a93f254c963a49172438c54a
7
- data.tar.gz: 37ebdb02b57fd9905cfd67d9e3713e970af944c5d3c35d345fd0b73d6229457fd2389a45bcc5cb4abf87bb5eda109b4d417ca6e3a11f45bf09c42252f59c79a4
6
+ metadata.gz: 104e595a14fbb58f014ea5cd944552c8b85401c0d3bc2243489457cfbf3d5227104f7da6f1a891b21a551e7e11f830d100b2172593ba2932675a30f0dfb20200
7
+ data.tar.gz: 44320e2edaa82a99f5629562130a807ccc4e3499cba750f8d564da8515aabcec363e182d76bbe86c0af7e8d587691703e87a1d0743016c3d6fbf4ccb2d00f934
data/CHANGES.md ADDED
@@ -0,0 +1,174 @@
1
+ # Changes
2
+
3
+ ## 2024-09-30 v1.2.0
4
+
5
+ #### Significant Changes
6
+
7
+ * Bumped version to **1.2.0**
8
+ + Updated `VERSION` in `lib/more_math/version.rb`
9
+ + Updated gemspec version and date
10
+ + Bumped `gem_hadar` development dependency to **1.18.0**
11
+ * Update Ruby version check in `.all_images.yml`
12
+ + Added `--full-index` to `bundle` command
13
+ * Add UTF-8 support to histogram display
14
+ + Added `utf8?` method to Histogram class
15
+ + Modified `output_row` method to use UTF-8 bars with braille when possible
16
+ + Added tests for UTF-8 histogram display with and without counts
17
+
18
+ ## 2024-08-28 v1.1.0
19
+
20
+ * **Added** `interquartile_range` method to `MoreMath::Sequence`
21
+ + Significant changes:
22
+ - Added `interquartile_range` method to `MoreMath::Sequence`
23
+ - Updated test cases for `sequence_test.rb`
24
+ * **Updated** all_images.yml to include Ruby **3.3**
25
+
26
+ ## 2024-07-03 v1.0.2
27
+
28
+ * Use github as homepage for rubygems
29
+ * Only test newer ruby versions
30
+ * Fine tune width settings a bit, and raise error when invalid arguments are provided:
31
+ + Method: `code`**width_settings**
32
+ + Variable: `code`**github_url**
33
+
34
+ ## 2023-05-29 v1.0.1
35
+
36
+ * **Fine-tuned** the width settings:
37
+ + Raised an error when invalid arguments were provided
38
+ * Significant changes:
39
+ * Raised error when `stupid` arguments are given to width settings
40
+ * Updated width settings (no specific details available)
41
+
42
+ ## 2023-05-26 v1.0.0
43
+
44
+ ### Changes in **v1.2**
45
+
46
+ * Use correct version
47
+ * Revert changes made earlier
48
+ * Remove codeclimate support
49
+ * Add display of counts on right hand side of histogram (twice)
50
+ * Use debug now, also all_images
51
+ * Cleanup some old files
52
+ * Create codeql-analysis.yml
53
+ * Use all_images instead of travis
54
+ * Be compatible to older rubies
55
+ * Adds predicate to check if ContinuedFraction is `#simple?` and add the standard […;…,…] notation for these.
56
+ + Adds ContinuedFraction#reciprocal method.
57
+ + Use keyword arguments for ContinuedFraction approximations instead of positional arguments.
58
+ * Add exp log functions as well
59
+ * Add erfc unless mixed in from Math already
60
+ * Convert number to float b4 calculation
61
+ * Compute Z-score sequence from a sequence
62
+ * New gemspec created
63
+ * Test refinement
64
+
65
+ ## 2019-06-13 v0.4.0
66
+
67
+ * **Added** `r2` measure to `linear_regression`
68
+ * **Updated** testing to include Ruby **2.4.1**
69
+
70
+ ## 2017-07-04 v0.3.3
71
+
72
+ * Added **1.0** version of the gem with a new feature:
73
+ + Added `code`LICENSE = "MIT"` to Gemfile
74
+ + Updated `code`gemspec.rb` with `code`SPDX-License-Identifier: MIT`
75
+ * No significant changes in this commit
76
+
77
+ ## 2017-03-09 v0.3.2
78
+
79
+ * **Don't shadow if we don't have to**
80
+ * Bump version to **1.0**
81
+ * Fix some warnings
82
+ * Add specs for std dev percentage methods
83
+ * Abstract result into a bin structure
84
+ * Require ruby version >= 2
85
+ * Refactor MoreMath::Histogram using `mize`
86
+ * Don't shadow and conserve memory
87
+
88
+ ## 2016-10-20 v0.3.1
89
+
90
+ * **Corrected method name**
91
+ + Changed `code`**_method_name_** to `code`**_correct_method_name_**
92
+
93
+ ## 2016-10-20 v0.3.0
94
+
95
+ * **Significant Changes**
96
+ + Bump version to **1.0** (commit)
97
+ + Implement n-element moving average for Sequence in `Sequence` class
98
+ + Add functions to compute entropy of texts in `EntropyCalculator` class
99
+ + Refactor some methods in `continued_fraction.rb`
100
+ + Ignore `.DS_Store` files
101
+ * Other changes:
102
+ + Test ruby **2.3.1**
103
+ + Add codeclimate configuration files
104
+ + Add code climate coverage token
105
+
106
+ ## 2015-05-21 v0.2.1
107
+
108
+ * **Upgrade to newer versions of gem infrastructure**
109
+ * **Depend on test-unit gem explicitely**
110
+ * **Updates dependencies**
111
+ * **More rubies**
112
+ * **Test newer rubies**
113
+ * **Add rake development dependency**
114
+ * **Avoid annoying rubygems warning**
115
+
116
+ ## 2012-11-01 v0.1.0
117
+
118
+ #### New Features
119
+
120
+ * Added Permutation features:
121
+ + `identity`: Returns a permutation that leaves all elements unchanged.
122
+ + `power`: Raises a permutation to a given power.
123
+ + `from_mapping`: Creates a permutation from a given mapping.
124
+ Contributed by Pramukta Kumar <prak@mac.com>.
125
+
126
+ #### Configuration Changes
127
+
128
+ * Ignore `.AppleDouble` files.
129
+ * Configure Travis CI for continuous integration.
130
+ * Added `utils` as a development dependency.
131
+
132
+ ## 2011-12-25 v0.0.4
133
+
134
+ * **Changes for Ruby 1.9.3 and 1.8**
135
+ + Added support for `ruby 1.9.3` as a test target
136
+ + Implemented `to_int` method for symbols in Ruby 1.8
137
+ * Renamed test files
138
+
139
+ ## 2011-10-28 v0.0.3
140
+
141
+ * **Changes in version **bold**0.2.3**bold**:*
142
+ + Added permutation class to more_math
143
+ + Started power set implementation
144
+ + Shared code between subset and permutation
145
+ + Fixed small subset issues
146
+ + Merged branch 'power_set' into power_set
147
+ + Resolved conflicts in lib/more_math.rb, lib/more_math/ranking_common.rb, lib/more_math/subset.rb, and more_math.gemspec
148
+
149
+ ## 2011-09-26 v0.0.2
150
+
151
+ * **Depend on tins library**
152
+ + Added dependency on `tins` library.
153
+
154
+ ## 2011-07-17 v0.0.1
155
+
156
+ * Added Travis configuration
157
+ * Use `gem_hadar` for building and Rakefile
158
+ * Corrected `to_sn` method
159
+ * Added more methods to object, fixed coerce method, and added string numeral
160
+ * Fixed Ruby 1.9 problems
161
+ * Renamed string number functions
162
+ * Reorganized code
163
+ * Added string numeration functions and logb, log_ceil, log_floor functions
164
+ * Used spruz/memoize functionality
165
+
166
+ ### Conflicts Resolved
167
+
168
+ * `.gitignore`
169
+ * `Rakefile`
170
+ * `more_math.gemspec`
171
+
172
+ ## 2010-11-01 v0.0.0
173
+
174
+ * Start
@@ -50,10 +50,26 @@ module MoreMath
50
50
 
51
51
  private
52
52
 
53
+ def utf8_bar(bar_width)
54
+ fract = bar_width - bar_width.floor
55
+ bar = ?⣿ * bar_width.floor
56
+ fract > 0.5 and bar << ?⡇
57
+ bar
58
+ end
59
+
60
+ def ascii_bar(bar_width)
61
+ bar = ?* * bar_width
62
+ end
63
+
64
+ def utf8?
65
+ ENV['LANG'] =~ /utf-8\z/i
66
+ end
67
+
53
68
  def output_row(row, width)
54
69
  left, right, count = row
55
70
  if @with_counts
56
- left_width = width - (counts.map { |x| x.to_s.size }.max + 1)
71
+ c = utf8? ? 2 : 1
72
+ left_width = width - (counts.map { |x| x.to_s.size }.max + c)
57
73
  else
58
74
  left_width = width
59
75
  end
@@ -61,8 +77,8 @@ module MoreMath
61
77
  left_width = width
62
78
  end
63
79
  factor = left_width.to_f / max_count
64
- bar_width = (count * factor).round
65
- bar = ?* * bar_width
80
+ bar_width = (count * factor)
81
+ bar = utf8? ? utf8_bar(bar_width) : ascii_bar(bar_width)
66
82
  if @with_counts
67
83
  bar += count.to_s.rjust(width - bar_width)
68
84
  end
@@ -1,6 +1,6 @@
1
1
  module MoreMath
2
2
  # MoreMath version
3
- VERSION = '1.1.0'
3
+ VERSION = '1.2.0'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
data/more_math.gemspec CHANGED
@@ -1,29 +1,29 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: more_math 1.1.0 ruby lib
2
+ # stub: more_math 1.2.0 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "more_math".freeze
6
- s.version = "1.1.0".freeze
6
+ s.version = "1.2.0".freeze
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
10
10
  s.authors = ["Florian Frank".freeze]
11
- s.date = "2024-08-27"
11
+ s.date = "2024-09-30"
12
12
  s.description = "Library that provides more mathematical functions/algorithms than standard Ruby.".freeze
13
13
  s.email = "flori@ping.de".freeze
14
14
  s.extra_rdoc_files = ["README.md".freeze, "lib/more_math.rb".freeze, "lib/more_math/cantor_pairing_function.rb".freeze, "lib/more_math/constants/functions_constants.rb".freeze, "lib/more_math/continued_fraction.rb".freeze, "lib/more_math/distributions.rb".freeze, "lib/more_math/entropy.rb".freeze, "lib/more_math/exceptions.rb".freeze, "lib/more_math/functions.rb".freeze, "lib/more_math/histogram.rb".freeze, "lib/more_math/linear_regression.rb".freeze, "lib/more_math/newton_bisection.rb".freeze, "lib/more_math/numberify_string_function.rb".freeze, "lib/more_math/permutation.rb".freeze, "lib/more_math/ranking_common.rb".freeze, "lib/more_math/sequence.rb".freeze, "lib/more_math/sequence/moving_average.rb".freeze, "lib/more_math/sequence/refinement.rb".freeze, "lib/more_math/string_numeral.rb".freeze, "lib/more_math/subset.rb".freeze, "lib/more_math/version.rb".freeze]
15
- s.files = ["CHANGES".freeze, "Gemfile".freeze, "LICENSE".freeze, "README.md".freeze, "Rakefile".freeze, "lib/more_math.rb".freeze, "lib/more_math/cantor_pairing_function.rb".freeze, "lib/more_math/constants/functions_constants.rb".freeze, "lib/more_math/continued_fraction.rb".freeze, "lib/more_math/distributions.rb".freeze, "lib/more_math/entropy.rb".freeze, "lib/more_math/exceptions.rb".freeze, "lib/more_math/functions.rb".freeze, "lib/more_math/histogram.rb".freeze, "lib/more_math/linear_regression.rb".freeze, "lib/more_math/newton_bisection.rb".freeze, "lib/more_math/numberify_string_function.rb".freeze, "lib/more_math/permutation.rb".freeze, "lib/more_math/ranking_common.rb".freeze, "lib/more_math/sequence.rb".freeze, "lib/more_math/sequence/moving_average.rb".freeze, "lib/more_math/sequence/refinement.rb".freeze, "lib/more_math/string_numeral.rb".freeze, "lib/more_math/subset.rb".freeze, "lib/more_math/version.rb".freeze, "more_math.gemspec".freeze, "tests/cantor_pairing_function_test.rb".freeze, "tests/continued_fraction_test.rb".freeze, "tests/distribution_test.rb".freeze, "tests/entropy_test.rb".freeze, "tests/functions_test.rb".freeze, "tests/histogram_test.rb".freeze, "tests/newton_bisection_test.rb".freeze, "tests/numberify_string_function_test.rb".freeze, "tests/permutation_test.rb".freeze, "tests/sequence/refinement_test.rb".freeze, "tests/sequence_moving_average_test.rb".freeze, "tests/sequence_test.rb".freeze, "tests/string_numeral_test.rb".freeze, "tests/subset_test.rb".freeze, "tests/test_helper.rb".freeze]
15
+ s.files = ["CHANGES.md".freeze, "Gemfile".freeze, "LICENSE".freeze, "README.md".freeze, "Rakefile".freeze, "lib/more_math.rb".freeze, "lib/more_math/cantor_pairing_function.rb".freeze, "lib/more_math/constants/functions_constants.rb".freeze, "lib/more_math/continued_fraction.rb".freeze, "lib/more_math/distributions.rb".freeze, "lib/more_math/entropy.rb".freeze, "lib/more_math/exceptions.rb".freeze, "lib/more_math/functions.rb".freeze, "lib/more_math/histogram.rb".freeze, "lib/more_math/linear_regression.rb".freeze, "lib/more_math/newton_bisection.rb".freeze, "lib/more_math/numberify_string_function.rb".freeze, "lib/more_math/permutation.rb".freeze, "lib/more_math/ranking_common.rb".freeze, "lib/more_math/sequence.rb".freeze, "lib/more_math/sequence/moving_average.rb".freeze, "lib/more_math/sequence/refinement.rb".freeze, "lib/more_math/string_numeral.rb".freeze, "lib/more_math/subset.rb".freeze, "lib/more_math/version.rb".freeze, "more_math.gemspec".freeze, "tests/cantor_pairing_function_test.rb".freeze, "tests/continued_fraction_test.rb".freeze, "tests/distribution_test.rb".freeze, "tests/entropy_test.rb".freeze, "tests/functions_test.rb".freeze, "tests/histogram_test.rb".freeze, "tests/newton_bisection_test.rb".freeze, "tests/numberify_string_function_test.rb".freeze, "tests/permutation_test.rb".freeze, "tests/sequence/refinement_test.rb".freeze, "tests/sequence_moving_average_test.rb".freeze, "tests/sequence_test.rb".freeze, "tests/string_numeral_test.rb".freeze, "tests/subset_test.rb".freeze, "tests/test_helper.rb".freeze]
16
16
  s.homepage = "https://github.com/flori/more_math".freeze
17
17
  s.licenses = ["MIT".freeze]
18
18
  s.rdoc_options = ["--title".freeze, "MoreMath -- More Math in Ruby".freeze, "--main".freeze, "README.md".freeze]
19
19
  s.required_ruby_version = Gem::Requirement.new(">= 2.0".freeze)
20
- s.rubygems_version = "3.5.16".freeze
20
+ s.rubygems_version = "3.5.18".freeze
21
21
  s.summary = "Library that provides more mathematics.".freeze
22
22
  s.test_files = ["tests/cantor_pairing_function_test.rb".freeze, "tests/continued_fraction_test.rb".freeze, "tests/distribution_test.rb".freeze, "tests/entropy_test.rb".freeze, "tests/functions_test.rb".freeze, "tests/histogram_test.rb".freeze, "tests/newton_bisection_test.rb".freeze, "tests/numberify_string_function_test.rb".freeze, "tests/permutation_test.rb".freeze, "tests/sequence/refinement_test.rb".freeze, "tests/sequence_moving_average_test.rb".freeze, "tests/sequence_test.rb".freeze, "tests/string_numeral_test.rb".freeze, "tests/subset_test.rb".freeze, "tests/test_helper.rb".freeze]
23
23
 
24
24
  s.specification_version = 4
25
25
 
26
- s.add_development_dependency(%q<gem_hadar>.freeze, ["~> 1.17.0".freeze])
26
+ s.add_development_dependency(%q<gem_hadar>.freeze, ["~> 1.18.0".freeze])
27
27
  s.add_development_dependency(%q<rake>.freeze, [">= 0".freeze])
28
28
  s.add_development_dependency(%q<simplecov>.freeze, [">= 0".freeze])
29
29
  s.add_development_dependency(%q<test-unit>.freeze, [">= 0".freeze])
@@ -17,6 +17,9 @@ class HistogramTest < Test::Unit::TestCase
17
17
  def test_histogram_display
18
18
  sequence = Sequence.new [ 1, 2, 3, 0, 2 ]
19
19
  histogram = Histogram.new sequence, 3
20
+ def histogram.utf8?
21
+ false
22
+ end
20
23
  assert_equal [[2.0, 3.0, 1], [1.0, 2.0, 2], [0.0, 1.0, 2]],
21
24
  histogram.instance_eval { rows }
22
25
  output = StringIO.new
@@ -32,6 +35,9 @@ class HistogramTest < Test::Unit::TestCase
32
35
  def test_histogram_display_with_counts
33
36
  sequence = Sequence.new [ 1, 2, 3, 0, 2 ]
34
37
  histogram = Histogram.new sequence, with_counts: true, bins: 3
38
+ def histogram.utf8?
39
+ false
40
+ end
35
41
  assert_equal [[2.0, 3.0, 1], [1.0, 2.0, 2], [0.0, 1.0, 2]],
36
42
  histogram.instance_eval { rows }
37
43
  output = StringIO.new
@@ -43,4 +49,38 @@ class HistogramTest < Test::Unit::TestCase
43
49
  max_count=2
44
50
  end
45
51
  end
52
+
53
+ def test_histogram_display_utf8
54
+ srand 1337
55
+ sequence = Sequence.new 1000.times.map { rand(10) }
56
+ histogram = Histogram.new sequence, 3
57
+ def histogram.utf8?
58
+ true
59
+ end
60
+ output = StringIO.new
61
+ histogram.display output
62
+ assert_equal <<~end, output.string
63
+ 7.50000 -|⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
64
+ 4.50000 -|⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇
65
+ 1.50000 -|⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
66
+ max_count=420
67
+ end
68
+ end
69
+
70
+ def test_histogram_display_with_counts_utf8
71
+ srand 1337
72
+ sequence = Sequence.new 1000.times.map { rand(10) }
73
+ histogram = Histogram.new sequence, with_counts: true, bins: 3
74
+ def histogram.utf8?
75
+ true
76
+ end
77
+ output = StringIO.new
78
+ histogram.display output
79
+ assert_equal <<~end, output.string
80
+ 7.50000 -|⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇ 295
81
+ 4.50000 -|⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇ 285
82
+ 1.50000 -|⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿ 420
83
+ max_count=420
84
+ end
85
+ end
46
86
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: more_math
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-27 00:00:00.000000000 Z
11
+ date: 2024-09-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gem_hadar
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.17.0
19
+ version: 1.18.0
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.17.0
26
+ version: 1.18.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -150,7 +150,7 @@ extra_rdoc_files:
150
150
  - lib/more_math/subset.rb
151
151
  - lib/more_math/version.rb
152
152
  files:
153
- - CHANGES
153
+ - CHANGES.md
154
154
  - Gemfile
155
155
  - LICENSE
156
156
  - README.md
@@ -214,7 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
214
214
  - !ruby/object:Gem::Version
215
215
  version: '0'
216
216
  requirements: []
217
- rubygems_version: 3.5.16
217
+ rubygems_version: 3.5.18
218
218
  signing_key:
219
219
  specification_version: 4
220
220
  summary: Library that provides more mathematics.
data/CHANGES DELETED
@@ -1,16 +0,0 @@
1
- 2017-07-04 (0.3.3)
2
- * Add SPDX short identifier of license to gemspec file.
3
- 2012-10-31 (0.1.0)
4
- * Included the Permutation features identity, power, and from_mapping
5
- contributed by Pramukta Kumar <prak@mac.com>
6
- 2011-12-25 (0.0.4)
7
- * Support simplecov
8
- * Add more tests
9
- 2011-10-08 (0.0.3)
10
- * Add permutation and subset implementations
11
- 2011-09-26 (0.0.2)
12
- * Depend on tins library
13
- 2011-07-17 (0.0.1)
14
- * Use gem_hadar
15
- 2010-11-01 (0.0.0)
16
- * Initial Version