business-period 0.0.2.5 → 0.0.2.7

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
- SHA1:
3
- metadata.gz: 667f4e19a6046a517c34f9535a19ec09f2b9924a
4
- data.tar.gz: a9aef440d7dd39567f0122fa25193241edb8dc3f
2
+ SHA256:
3
+ metadata.gz: 232d34f77110cb8df33b2e3f93c5d51aa4f1854e3c6fc0fac3d34ae5efa11167
4
+ data.tar.gz: ca2568f161efa0ff1355dc4754b71ef4a7f33296def5a8a6e3e7f4462979c0a1
5
5
  SHA512:
6
- metadata.gz: aee8c92a935a7871cfcfcdf0b63157b30915e36fb68244e8c12ae68bdb6cddf295fbf550bee30b0d39408f81625b2cb44b58a6bb70c72a262246201ade9065dc
7
- data.tar.gz: 14f92ba5b6190dbcfb0f4e742e472fbc9c2b0aaead1c78bb06cdf564a4c9590df95b94190f8d110b1663a3b587e81c38a3fa9a87920c2404ad13ecabd6fbc4c7
6
+ metadata.gz: 82ffc10305cb732323feebe2b674647cf4973545bb8b6c6715fc1007c0cf287e63bef42de80c84337dabc2074e6255be0213ff64d62be9ce54c0a47b33bec83c
7
+ data.tar.gz: f7ec3d292e46d7d07b02e4c7c4923a0fa3d3cb7656ce8e26dbce8d13d5a65abad0839036272de1582e47d5bbd46a55428326935e524943a6e5217e9d09c50c78
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.4.1
1
+ 2.5.1
data/build.sh CHANGED
@@ -1 +1,6 @@
1
+ rm *.gem
2
+ gem uninstall business-period
3
+
1
4
  gem build business-period.gemspec
5
+ gem install business-period-0.0.2.7.gem
6
+ bundle info business-period
@@ -2,7 +2,6 @@
2
2
 
3
3
  lib = File.expand_path('lib', __dir__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
-
6
5
  require 'business_period/version'
7
6
 
8
7
  Gem::Specification.new do |spec|
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'yaml'
4
+
5
+ require 'business_period/configuration'
6
+ require 'business_period/version'
7
+ require 'business_period/base'
8
+ require 'business_period/days'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BusinessPeriod
4
- VERSION = '0.0.2.5'
4
+ VERSION = '0.0.2.7'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: business-period
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2.5
4
+ version: 0.0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - matas
@@ -44,7 +44,7 @@ files:
44
44
  - build.sh
45
45
  - business-period.gemspec
46
46
  - config/holidays/lt.yml
47
- - lib/business_period.rb
47
+ - lib/business-period.rb
48
48
  - lib/business_period/base.rb
49
49
  - lib/business_period/configuration.rb
50
50
  - lib/business_period/days.rb
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  version: '0'
70
70
  requirements: []
71
71
  rubyforge_project:
72
- rubygems_version: 2.6.12
72
+ rubygems_version: 2.7.7
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: "\U0001F4C5 calculate business period"
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'yaml'
4
-
5
- require 'business_period/configuration'
6
- require 'business_period/version'
7
- require 'business_period/base'
8
- require 'business_period/days'
9
-
10
- #module BusinessPeriod
11
- #attr_accessor :configuration
12
-
13
- #def self.configuration
14
- #@configuration ||= Configuration.new
15
- #end
16
-
17
- #def self.configure
18
- #yield configuration
19
- #end
20
-
21
- #class Configuration
22
- #attr_accessor :locale, :work_days
23
- #end
24
- #end