miti 0.0.1
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 +7 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +16 -0
- data/README.md +33 -0
- data/Rakefile +12 -0
- data/lib/miti/ad_to_bs.rb +92 -0
- data/lib/miti/bs_to_ad.rb +52 -0
- data/lib/miti/data/date_data.rb +139 -0
- data/lib/miti/nepali_date.rb +123 -0
- data/lib/miti/version.rb +5 -0
- data/lib/miti.rb +52 -0
- data/miti.gemspec +36 -0
- metadata +58 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f2f4c775b9f8c30928cebcae3433d1b058dfbcbc45b643b7b3a33bfb54eae823
|
4
|
+
data.tar.gz: '04585850914da921d0280dc52b30375081d90887985c3153bd852034beeb5817'
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4c90647e451ca928370a6c186dca95131535d024491e3febbdc54522fbadf1167f77b7c2507e7beed2a1a3fe3deda6daa19b438b45f6d069f7b68e10ac0e9871
|
7
|
+
data.tar.gz: 207832fd309cab8bb680f2c81e60c0d5f0521983eb043c62676eee8f2bd14464bc0a9d01837c148649417c617432b59ead08b816812bc3b0d82244a30fb3bc71
|
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in miti.gemspec
|
6
|
+
gemspec
|
7
|
+
|
8
|
+
gem "rake", "~> 13.0"
|
9
|
+
|
10
|
+
gem "rspec", "~> 3.0"
|
11
|
+
|
12
|
+
gem "rubocop", "~> 1.21"
|
13
|
+
|
14
|
+
gem "byebug"
|
15
|
+
|
16
|
+
gem "simplecov"
|
data/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# Miti
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/miti`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Install the gem and add to the application's Gemfile by executing:
|
10
|
+
|
11
|
+
$ bundle add miti
|
12
|
+
|
13
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
14
|
+
|
15
|
+
$ gem install miti
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
TODO: Write usage instructions here
|
20
|
+
|
21
|
+
## Development
|
22
|
+
|
23
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
24
|
+
|
25
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/miti. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/miti/blob/main/CODE_OF_CONDUCT.md).
|
30
|
+
|
31
|
+
## Code of Conduct
|
32
|
+
|
33
|
+
Everyone interacting in the Miti project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/miti/blob/main/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Miti
|
4
|
+
# class to handle the algorithm for converting AD to BS
|
5
|
+
class AdToBs
|
6
|
+
def initialize(english_date)
|
7
|
+
@english_date = english_date
|
8
|
+
@nepali_year = english_date.year + 56
|
9
|
+
end
|
10
|
+
|
11
|
+
def convert(to_h: false)
|
12
|
+
return NepaliDate.new(barsa: final_nepali_year_month_value[:year], mahina: mahina, gatey: gatey) unless to_h
|
13
|
+
|
14
|
+
{ barsa: final_nepali_year_month_value[:year], mahina: mahina, gatey: gatey }
|
15
|
+
end
|
16
|
+
|
17
|
+
def final_nepali_year_month_value
|
18
|
+
@final_nepali_year_month_value = if (nepali_nth_day - total_days_in_nepali_year).positive?
|
19
|
+
{ year: nepali_year + 1, month: english_date.month - 4 }
|
20
|
+
else
|
21
|
+
{ year: nepali_year, month: english_date.month + 8 }
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def mahina
|
26
|
+
days_passed = mahina_gatey[:days_passed_in_current_month]
|
27
|
+
current_month_max_day = mahina_gatey[:current_month_max_day]
|
28
|
+
probable_nepali_month = mahina_gatey[:probable_nepali_month]
|
29
|
+
return probable_nepali_month += 1 if days_passed.positive?
|
30
|
+
|
31
|
+
probable_nepali_month += 1 unless current_month_max_day.zero? || days_passed <= current_month_max_day
|
32
|
+
probable_nepali_month
|
33
|
+
end
|
34
|
+
|
35
|
+
def gatey
|
36
|
+
days_passed = mahina_gatey[:days_passed_in_current_month]
|
37
|
+
current_month_max_day = mahina_gatey[:current_month_max_day]
|
38
|
+
days_passed -= current_month_max_day if days_passed.positive? && days_passed > current_month_max_day
|
39
|
+
return days_passed if days_passed.positive?
|
40
|
+
|
41
|
+
return current_month_max_day - days_passed.abs if days_passed.negative?
|
42
|
+
|
43
|
+
current_month_max_day if days_passed.zero?
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
attr_reader :english_date, :nepali_year
|
49
|
+
|
50
|
+
def mahina_gatey
|
51
|
+
@mahina_gatey ||= begin
|
52
|
+
probable_nepali_month = final_nepali_year_month_value[:month]
|
53
|
+
month_max_days_upto_current = year_data[final_nepali_year_month_value[:year]].first(probable_nepali_month)
|
54
|
+
{ probable_nepali_month: probable_nepali_month,
|
55
|
+
days_passed_in_current_month: remaining_days_in_nepali_year - month_max_days_upto_current.sum,
|
56
|
+
current_month_max_day: month_max_days_upto_current[probable_nepali_month - 1] || 0 }
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def remaining_days_in_nepali_year
|
61
|
+
remaining_days = nepali_nth_day % total_days_in_nepali_year
|
62
|
+
if remaining_days.zero?
|
63
|
+
total_days_in_nepali_year
|
64
|
+
else
|
65
|
+
remaining_days
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def total_days_in_nepali_year
|
70
|
+
@total_days_in_nepali_year ||= year_data[nepali_year].sum
|
71
|
+
end
|
72
|
+
|
73
|
+
def nepali_nth_day
|
74
|
+
@nepali_nth_day = english_date.yday + nepali_nth_day_for_english_new_year - 1
|
75
|
+
end
|
76
|
+
|
77
|
+
def nepali_nth_day_for_english_new_year
|
78
|
+
return 264 if year_after_leap_year?
|
79
|
+
|
80
|
+
263
|
81
|
+
end
|
82
|
+
|
83
|
+
def year_after_leap_year?
|
84
|
+
year_before = english_date.year - 1
|
85
|
+
(year_before % 400).zero? || (year_before % 100 != 0 && (year_before % 4).zero?)
|
86
|
+
end
|
87
|
+
|
88
|
+
def year_data
|
89
|
+
@year_data = Miti::Data::DateData.year_month_days_hash
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "date"
|
4
|
+
|
5
|
+
module Miti
|
6
|
+
# class to handle the algorithm for converting AD to BS
|
7
|
+
class BsToAd
|
8
|
+
##
|
9
|
+
# Creating an object of BsToAd requires a Miti::NepaliDate object
|
10
|
+
#
|
11
|
+
# params Miti::NepaliDate
|
12
|
+
def initialize(nepali_date)
|
13
|
+
@barsa = nepali_date.barsa
|
14
|
+
@mahina = nepali_date.mahina
|
15
|
+
@gatey = nepali_date.gatey
|
16
|
+
end
|
17
|
+
|
18
|
+
def convert
|
19
|
+
english_date
|
20
|
+
end
|
21
|
+
|
22
|
+
private
|
23
|
+
|
24
|
+
attr_reader :barsa, :mahina, :gatey
|
25
|
+
|
26
|
+
##
|
27
|
+
# Iterates through range of dates close to probable english date and checks to get exact english_date
|
28
|
+
# Incase the date is not found, error is raised.
|
29
|
+
# For fixing the issue, the value for range in date_range method should be increased.
|
30
|
+
#
|
31
|
+
# returns Date
|
32
|
+
def english_date
|
33
|
+
date_range.each do |date|
|
34
|
+
return date if Miti::AdToBs.new(date).convert(to_h: true) ==
|
35
|
+
{ barsa: barsa, mahina: mahina, gatey: gatey }
|
36
|
+
end
|
37
|
+
raise "Failed to convert."
|
38
|
+
end
|
39
|
+
|
40
|
+
##
|
41
|
+
# Since the obtained date is not exact, range of date (default 17) are returned containing the date.
|
42
|
+
# The average gap between nepali year and english date is 20,711 days considering the numericality of months.
|
43
|
+
# This method creates new english date with year/month/day value equal to Nepali date and subtracts by 20,711
|
44
|
+
# and returns the range of date around it.
|
45
|
+
#
|
46
|
+
# return []<Date>
|
47
|
+
def date_range(range = 8)
|
48
|
+
probable_english_date = Date.new(barsa, mahina, gatey) - 20_711
|
49
|
+
probable_english_date.prev_day(range)..probable_english_date.next_day(range)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,139 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Miti
|
4
|
+
module Data
|
5
|
+
# class to return nepali date data
|
6
|
+
class DateData
|
7
|
+
def self.year_month_days_hash
|
8
|
+
{
|
9
|
+
1975 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
10
|
+
1976 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
11
|
+
1977 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
12
|
+
1978 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
13
|
+
1979 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
14
|
+
1980 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
15
|
+
1981 => [31, 31, 31, 32, 31, 31, 29, 30, 30, 29, 30, 30],
|
16
|
+
1982 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
17
|
+
1983 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
18
|
+
1984 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
19
|
+
1985 => [31, 31, 31, 32, 31, 31, 29, 30, 30, 29, 30, 30],
|
20
|
+
1986 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
21
|
+
1987 => [31, 32, 31, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
22
|
+
1988 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
23
|
+
1989 => [31, 31, 31, 32, 31, 31, 29, 30, 30, 29, 30, 30],
|
24
|
+
1990 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
25
|
+
1991 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 30],
|
26
|
+
1992 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
27
|
+
1993 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
28
|
+
1994 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
29
|
+
1995 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 30],
|
30
|
+
1996 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
31
|
+
1997 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
32
|
+
1998 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
33
|
+
1999 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
34
|
+
2000 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
35
|
+
2001 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
36
|
+
2002 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
37
|
+
2003 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
38
|
+
2004 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
39
|
+
2005 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
40
|
+
2006 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
41
|
+
2007 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
42
|
+
2008 => [31, 31, 31, 32, 31, 31, 29, 30, 30, 29, 29, 31],
|
43
|
+
2009 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
44
|
+
2010 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
45
|
+
2011 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
46
|
+
2012 => [31, 31, 31, 32, 31, 31, 29, 30, 30, 29, 30, 30],
|
47
|
+
2013 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
48
|
+
2014 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
49
|
+
2015 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
50
|
+
2016 => [31, 31, 31, 32, 31, 31, 29, 30, 30, 29, 30, 30],
|
51
|
+
2017 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
52
|
+
2018 => [31, 32, 31, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
53
|
+
2019 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
54
|
+
2020 => [31, 31, 31, 32, 31, 31, 30, 29, 30, 29, 30, 30],
|
55
|
+
2021 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
56
|
+
2022 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 30],
|
57
|
+
2023 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
58
|
+
2024 => [31, 31, 31, 32, 31, 31, 30, 29, 30, 29, 30, 30],
|
59
|
+
2025 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
60
|
+
2026 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
61
|
+
2027 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
62
|
+
2028 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
63
|
+
2029 => [31, 31, 32, 31, 32, 30, 30, 29, 30, 29, 30, 30],
|
64
|
+
2030 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
65
|
+
2031 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
66
|
+
2032 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
67
|
+
2033 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
68
|
+
2034 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
69
|
+
2035 => [30, 32, 31, 32, 31, 31, 29, 30, 30, 29, 29, 31],
|
70
|
+
2036 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
71
|
+
2037 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
72
|
+
2038 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
73
|
+
2039 => [31, 31, 31, 32, 31, 31, 29, 30, 30, 29, 30, 30],
|
74
|
+
2040 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
75
|
+
2041 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
76
|
+
2042 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
77
|
+
2043 => [31, 31, 31, 32, 31, 31, 29, 30, 30, 29, 30, 30],
|
78
|
+
2044 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
79
|
+
2045 => [31, 32, 31, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
80
|
+
2046 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
81
|
+
2047 => [31, 31, 31, 32, 31, 31, 30, 29, 30, 29, 30, 30],
|
82
|
+
2048 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
83
|
+
2049 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 30],
|
84
|
+
2050 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
85
|
+
2051 => [31, 31, 31, 32, 31, 31, 30, 29, 30, 29, 30, 30],
|
86
|
+
2052 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
87
|
+
2053 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 30],
|
88
|
+
2054 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
89
|
+
2055 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
90
|
+
2056 => [31, 31, 32, 31, 32, 30, 30, 29, 30, 29, 30, 30],
|
91
|
+
2057 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
92
|
+
2058 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
93
|
+
2059 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
94
|
+
2060 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
95
|
+
2061 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
96
|
+
2062 => [30, 32, 31, 32, 31, 31, 29, 30, 29, 30, 29, 31],
|
97
|
+
2063 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
98
|
+
2064 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
99
|
+
2065 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
100
|
+
2066 => [31, 31, 31, 32, 31, 31, 29, 30, 30, 29, 29, 31],
|
101
|
+
2067 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
102
|
+
2068 => [31, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
103
|
+
2069 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
104
|
+
2070 => [31, 31, 31, 32, 31, 31, 29, 30, 30, 29, 30, 30],
|
105
|
+
2071 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
106
|
+
2072 => [31, 32, 31, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
107
|
+
2073 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 31],
|
108
|
+
2074 => [31, 31, 31, 32, 31, 31, 30, 29, 30, 29, 30, 30],
|
109
|
+
2075 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
110
|
+
2076 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 30],
|
111
|
+
2077 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 30, 29, 31],
|
112
|
+
2078 => [31, 31, 31, 32, 31, 31, 30, 29, 30, 29, 30, 30],
|
113
|
+
2079 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 29, 30, 30],
|
114
|
+
2080 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 29, 30, 30],
|
115
|
+
2081 => [31, 31, 32, 32, 31, 30, 30, 30, 29, 30, 30, 30],
|
116
|
+
2082 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 30, 30],
|
117
|
+
2083 => [31, 31, 32, 31, 31, 30, 30, 30, 29, 30, 30, 30],
|
118
|
+
2084 => [31, 31, 32, 31, 31, 30, 30, 30, 29, 30, 30, 30],
|
119
|
+
2085 => [31, 32, 31, 32, 30, 31, 30, 30, 29, 30, 30, 30],
|
120
|
+
2086 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 30, 30],
|
121
|
+
2087 => [31, 31, 32, 31, 31, 31, 30, 30, 29, 30, 30, 30],
|
122
|
+
2088 => [30, 31, 32, 32, 30, 31, 30, 30, 29, 30, 30, 30],
|
123
|
+
2089 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 30, 30],
|
124
|
+
2090 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 30, 30],
|
125
|
+
2091 => [31, 31, 32, 31, 31, 31, 30, 30, 29, 30, 30, 30],
|
126
|
+
2092 => [30, 31, 32, 32, 31, 30, 30, 30, 29, 30, 30, 30],
|
127
|
+
2093 => [30, 32, 31, 32, 31, 30, 30, 30, 29, 30, 30, 30],
|
128
|
+
2094 => [31, 31, 32, 31, 31, 30, 30, 30, 29, 30, 30, 30],
|
129
|
+
2095 => [31, 31, 32, 31, 31, 31, 30, 29, 30, 30, 30, 30],
|
130
|
+
2096 => [30, 31, 32, 32, 31, 30, 30, 29, 30, 29, 30, 30],
|
131
|
+
2097 => [31, 32, 31, 32, 31, 30, 30, 30, 29, 30, 30, 30],
|
132
|
+
2098 => [31, 31, 32, 31, 31, 31, 29, 30, 29, 30, 29, 31],
|
133
|
+
2099 => [31, 31, 32, 31, 31, 31, 30, 29, 29, 30, 30, 30],
|
134
|
+
2100 => [31, 32, 31, 32, 30, 31, 30, 29, 30, 29, 30, 30]
|
135
|
+
}
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
@@ -0,0 +1,123 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "data/date_data"
|
4
|
+
|
5
|
+
module Miti
|
6
|
+
# Class for nepali date
|
7
|
+
class NepaliDate
|
8
|
+
attr_reader :barsa, :mahina, :gatey
|
9
|
+
|
10
|
+
##
|
11
|
+
# require barsa, mahina and gatey as attributes
|
12
|
+
def initialize(barsa:, mahina:, gatey:)
|
13
|
+
@barsa = barsa
|
14
|
+
@mahina = mahina
|
15
|
+
@gatey = gatey
|
16
|
+
end
|
17
|
+
|
18
|
+
##
|
19
|
+
# Get equivalent tarik(AD) for NepaliDate
|
20
|
+
#
|
21
|
+
# return Date
|
22
|
+
def tarik
|
23
|
+
@tarik ||= BsToAd.new(self).convert
|
24
|
+
end
|
25
|
+
|
26
|
+
##
|
27
|
+
# Get weekday for a nepali date.
|
28
|
+
#
|
29
|
+
# returns Integer(0-6) that represents weekdays starting from 0.
|
30
|
+
def bar
|
31
|
+
@bar ||= tarik&.wday
|
32
|
+
end
|
33
|
+
|
34
|
+
##
|
35
|
+
# returns details of nepali date in a ruby Hash
|
36
|
+
#
|
37
|
+
# returns Hash
|
38
|
+
def to_h
|
39
|
+
{ barsa: barsa, mahina: mahina, gatey: gatey, bar: bar, tarik: tarik }
|
40
|
+
end
|
41
|
+
|
42
|
+
##
|
43
|
+
# Returns Nepali Date in string format(yyyy/mm/dd).
|
44
|
+
#
|
45
|
+
# params separator(- by default)
|
46
|
+
#
|
47
|
+
# returns String
|
48
|
+
def to_s(seperator = "-")
|
49
|
+
return unless [" ", "/", "-"].include?(seperator)
|
50
|
+
|
51
|
+
[barsa, mahina, gatey].reduce("") do |final_date, date_element|
|
52
|
+
"#{final_date}#{final_date.blank? ? "" : seperator}#{date_element < 10 ? 0 : ""}#{date_element}"
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
##
|
57
|
+
# Descriptive output for current date
|
58
|
+
# When nepali flag is true, month is returned in nepali font and week day in Nepali
|
59
|
+
#
|
60
|
+
# returns String
|
61
|
+
def descriptive(nepali: false)
|
62
|
+
month_index = mahina - 1
|
63
|
+
if nepali
|
64
|
+
month = NepaliDate.months[month_index]
|
65
|
+
week_day = "#{NepaliDate.week_days_in_english[bar]}(#{NepaliDate.week_days[bar]})}"
|
66
|
+
else
|
67
|
+
month = NepaliDate.months_in_english[month_index]
|
68
|
+
week_day = tarik.strftime("%A")
|
69
|
+
end
|
70
|
+
|
71
|
+
"#{month} #{gatey}, #{barsa} #{week_day}"
|
72
|
+
end
|
73
|
+
|
74
|
+
def yday
|
75
|
+
days_before_month = Miti::Data::DateData.year_month_days_hash[barsa].first(mahina - 1).sum
|
76
|
+
days_before_month + gatey
|
77
|
+
end
|
78
|
+
|
79
|
+
class << self
|
80
|
+
def week_days
|
81
|
+
%w[आइतबार सोमबार मंगलबार बुधबार बिहिबार शुक्रबार शनिबार]
|
82
|
+
end
|
83
|
+
|
84
|
+
def months
|
85
|
+
%w[वैशाख ज्येष्ठ आषाढ़ श्रावण भाद्र आश्विन कार्तिक मंसिर पौष माघ फाल्गुण चैत्र]
|
86
|
+
end
|
87
|
+
|
88
|
+
def months_in_english
|
89
|
+
%w[Baishakh Jestha Ashadh Shrawan Bhadra Asoj Kartik Mangsir Poush Magh Falgun Chaitra]
|
90
|
+
end
|
91
|
+
|
92
|
+
def week_days_in_english
|
93
|
+
%w[Aitabar Somabar Mangalbar Budhabar Bihibar Sukrabar Sanibar]
|
94
|
+
end
|
95
|
+
|
96
|
+
##
|
97
|
+
# This method parses date in yyyy/mm/dd to NepaliDate object
|
98
|
+
#
|
99
|
+
# returns Miti::NepaliDate
|
100
|
+
def parse(date_string)
|
101
|
+
regex = %r{\A\d{4}[-/\s]\d{1,2}[-/\s]\d{1,2}\z}
|
102
|
+
raise "Invalid Date Format" unless regex.match(date_string)
|
103
|
+
|
104
|
+
delimiters = ["-", " ", "/"]
|
105
|
+
barsa, mahina, gatey = date_string.split(Regexp.union(delimiters))
|
106
|
+
validate_parsed_date(barsa.to_i, mahina.to_i, gatey.to_i)
|
107
|
+
NepaliDate.new(barsa: barsa.to_i, mahina: mahina.to_i, gatey: gatey.to_i)
|
108
|
+
end
|
109
|
+
|
110
|
+
private
|
111
|
+
|
112
|
+
def validate_parsed_date(barsa, mahina, gatey)
|
113
|
+
raise "Mahina can't be greater than 12" if mahina > 12
|
114
|
+
|
115
|
+
max_day_of_month = Miti::Data::DateData.year_month_days_hash[barsa][mahina - 1]
|
116
|
+
|
117
|
+
return unless max_day_of_month < gatey
|
118
|
+
|
119
|
+
raise "Invalid date. The supplied gatey value exceeds the max available gatey for the mahina."
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
data/lib/miti/version.rb
ADDED
data/lib/miti.rb
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "date"
|
4
|
+
require_relative "miti/ad_to_bs"
|
5
|
+
require_relative "miti/bs_to_ad"
|
6
|
+
require_relative "miti/nepali_date"
|
7
|
+
|
8
|
+
# Base module for the gem
|
9
|
+
module Miti
|
10
|
+
class Error < StandardError; end
|
11
|
+
|
12
|
+
class << self
|
13
|
+
def to_bs(english_date)
|
14
|
+
date = parse_english_date(english_date)
|
15
|
+
Miti::AdToBs.new(date).convert
|
16
|
+
rescue Date::Error
|
17
|
+
"Invalid Date"
|
18
|
+
end
|
19
|
+
|
20
|
+
def to_ad(nepali_date)
|
21
|
+
date = parse_nepali_date(nepali_date)
|
22
|
+
Miti::BsToAd.new(date).convert
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
def parse_english_date(english_date)
|
28
|
+
klass = english_date.class.to_s
|
29
|
+
|
30
|
+
if %w[Time DateTime].include?(klass)
|
31
|
+
english_date.to_date
|
32
|
+
elsif klass == "String"
|
33
|
+
Date.parse(english_date)
|
34
|
+
else
|
35
|
+
english_date
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def parse_nepali_date(nepali_date)
|
40
|
+
klass = nepali_date.class.to_s
|
41
|
+
|
42
|
+
case klass
|
43
|
+
when "String"
|
44
|
+
Miti::NepaliDate.parse(nepali_date)
|
45
|
+
when klass == "Miti::NepaliDate"
|
46
|
+
nepali_date
|
47
|
+
else
|
48
|
+
raise "Invalid date format."
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
data/miti.gemspec
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/miti/version"
|
4
|
+
Gem::Specification.new do |spec|
|
5
|
+
spec.name = "miti"
|
6
|
+
spec.version = Miti::VERSION
|
7
|
+
spec.authors = %w[xkshitizx sanzaymdr]
|
8
|
+
spec.email = %w[kshitizlama03@gmail.com sanzaymanandhar99@gmail.com]
|
9
|
+
|
10
|
+
spec.summary = "Date converter BS to AD and vice-versa."
|
11
|
+
spec.description = "You can get current date by simply typing miti. It also converts date in AD to Nepali Date(BS)."
|
12
|
+
# spec.homepage = "TODO: Put your gem's website or public repo URL here."
|
13
|
+
spec.required_ruby_version = ">= 2.6.0"
|
14
|
+
|
15
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
|
16
|
+
|
17
|
+
# spec.metadata["homepage_uri"] = spec.homepage
|
18
|
+
# spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
|
19
|
+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
20
|
+
spec.metadata = { "rubygems_mfa_required" => "true" }
|
21
|
+
# Specify which files should be added to the gem when it is released.
|
22
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
23
|
+
spec.files = Dir["README.md", "LICENSE",
|
24
|
+
"CHANGELOG.md", "lib/**/*.rb",
|
25
|
+
"lib/**/*.rake",
|
26
|
+
"miti.gemspec", ".github/*.md",
|
27
|
+
"Gemfile", "Rakefile"]
|
28
|
+
spec.bindir = "exe"
|
29
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
30
|
+
spec.require_paths = ["lib"]
|
31
|
+
spec.license = "MIT"
|
32
|
+
|
33
|
+
# Uncomment to register a new dependency of your gem
|
34
|
+
# For more information and examples about making a new gem, check out our
|
35
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
36
|
+
end
|
metadata
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: miti
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- xkshitizx
|
8
|
+
- sanzaymdr
|
9
|
+
autorequire:
|
10
|
+
bindir: exe
|
11
|
+
cert_chain: []
|
12
|
+
date: 2022-09-26 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: You can get current date by simply typing miti. It also converts date
|
15
|
+
in AD to Nepali Date(BS).
|
16
|
+
email:
|
17
|
+
- kshitizlama03@gmail.com
|
18
|
+
- sanzaymanandhar99@gmail.com
|
19
|
+
executables: []
|
20
|
+
extensions: []
|
21
|
+
extra_rdoc_files: []
|
22
|
+
files:
|
23
|
+
- CHANGELOG.md
|
24
|
+
- Gemfile
|
25
|
+
- README.md
|
26
|
+
- Rakefile
|
27
|
+
- lib/miti.rb
|
28
|
+
- lib/miti/ad_to_bs.rb
|
29
|
+
- lib/miti/bs_to_ad.rb
|
30
|
+
- lib/miti/data/date_data.rb
|
31
|
+
- lib/miti/nepali_date.rb
|
32
|
+
- lib/miti/version.rb
|
33
|
+
- miti.gemspec
|
34
|
+
homepage:
|
35
|
+
licenses:
|
36
|
+
- MIT
|
37
|
+
metadata:
|
38
|
+
rubygems_mfa_required: 'true'
|
39
|
+
post_install_message:
|
40
|
+
rdoc_options: []
|
41
|
+
require_paths:
|
42
|
+
- lib
|
43
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.6.0
|
48
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
requirements: []
|
54
|
+
rubygems_version: 3.3.22
|
55
|
+
signing_key:
|
56
|
+
specification_version: 4
|
57
|
+
summary: Date converter BS to AD and vice-versa.
|
58
|
+
test_files: []
|