Skip to content

Commit faaac35

Browse files
committed
Adding version.rb file
1 parent 65e33c6 commit faaac35

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

enumerable-stats.gemspec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# frozen_string_literal: true
22

3+
require_relative "lib/enumerable_stats/version"
4+
35
Gem::Specification.new do |s|
46
s.name = "enumerable-stats"
5-
s.version = "1.3.0"
7+
s.version = EnumerableStats::VERSION
68
s.licenses = ["MIT"]
79
s.summary = "Statistical Methods for Enumerable Collections"
810
s.description = <<~DESC

lib/enumerable_stats/version.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# frozen_string_literal: true
2+
3+
module EnumerableStats
4+
VERSION = "1.3.0"
5+
end

0 commit comments

Comments
 (0)