monthstamp 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a52160b74b7b7f8997c5114a2ff5ef79a7f397c3
4
+ data.tar.gz: ef5551640a95a2782642bd0715d651a29d1892c1
5
+ SHA512:
6
+ metadata.gz: dce299ee384c1dc7c57bdc7cdb7ffa8a18e4ff7b560e22f15448881d2b1e5f349b04895fc599e3fd883cc9309d4c978ad7ce629a842bc4d6103275bf3069fe24
7
+ data.tar.gz: b0f6de4ec9ad2516e403280472c8fc1def5ce15ebd66004d12bc877b82e1c804b21b2061a4ac7a16b3804b5c5b3a6f23f5471288b37c8f63c8f65912bcea4104
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.2
5
+ before_install: gem install bundler -v 1.16.0
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at scott.ellard@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in monthstamp.gemspec
6
+ gemspec
@@ -0,0 +1,39 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ monthstamp (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.3)
10
+ rake (10.5.0)
11
+ rspec (3.7.0)
12
+ rspec-core (~> 3.7.0)
13
+ rspec-expectations (~> 3.7.0)
14
+ rspec-mocks (~> 3.7.0)
15
+ rspec-core (3.7.1)
16
+ rspec-support (~> 3.7.0)
17
+ rspec-expectations (3.7.0)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.7.0)
20
+ rspec-its (1.3.0)
21
+ rspec-core (>= 3.0.0)
22
+ rspec-expectations (>= 3.0.0)
23
+ rspec-mocks (3.7.0)
24
+ diff-lcs (>= 1.2.0, < 2.0)
25
+ rspec-support (~> 3.7.0)
26
+ rspec-support (3.7.1)
27
+
28
+ PLATFORMS
29
+ ruby
30
+
31
+ DEPENDENCIES
32
+ bundler (~> 1.16)
33
+ monthstamp!
34
+ rake (~> 10.0)
35
+ rspec (~> 3.0)
36
+ rspec-its
37
+
38
+ BUNDLED WITH
39
+ 1.16.0
@@ -0,0 +1,39 @@
1
+ # Monthstamp
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/monthstamp`. 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
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'monthstamp'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install monthstamp
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ 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.
30
+
31
+ 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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/stellard/monthstamp. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## Code of Conduct
38
+
39
+ Everyone interacting in the Monthstamp project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/stellard/monthstamp/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "monthstamp"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,20 @@
1
+ require "monthstamp/version"
2
+ require "monthstamp/month"
3
+
4
+ module Monthstamp
5
+ def monthstamp
6
+ (self.year - 1970) * 12 + self.month - 1
7
+ end
8
+ alias :month_id :monthstamp
9
+
10
+ def to_month
11
+ Month.at(monthstamp)
12
+ end
13
+
14
+ end
15
+
16
+ require 'date'
17
+ require 'time'
18
+
19
+ Date.send(:include, Monthstamp)
20
+ Time.send(:include, Monthstamp)
@@ -0,0 +1,189 @@
1
+ class Month
2
+
3
+ MONTHNAMES ||= ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"].freeze
4
+ MONTHDOWNCASENAMES ||= MONTHNAMES.map(&:downcase).freeze
5
+ MONTHMAP ||= Hash[*MONTHDOWNCASENAMES.each_with_index.map{|monthname,index| [monthname, index + 1]}.flatten].freeze
6
+
7
+ include Monthstamp
8
+
9
+ attr_accessor :year, :month
10
+
11
+ class InvalidMonth < RuntimeError
12
+ end
13
+ class InvalidYear < RuntimeError
14
+ end
15
+
16
+
17
+ def initialize month, year
18
+ self.month = month
19
+ self.year = year
20
+ end
21
+
22
+ class << self
23
+ def at(monthstamp)
24
+ monthstamp = Integer(monthstamp)
25
+ year = (monthstamp / 12) + 1970
26
+ month = monthstamp % 12 + 1
27
+ new(month, year)
28
+ end
29
+ alias :find :at
30
+
31
+ def parse(string)
32
+ dt = DateTime.parse(string)
33
+ new(dt.month,dt.year)
34
+ end
35
+
36
+ def dump(month)
37
+ month.monthstamp
38
+ end
39
+
40
+ def load(monthstamp)
41
+ at(monthstamp)
42
+ end
43
+
44
+ def now
45
+ at(Date.today.monthstamp)
46
+ end
47
+
48
+ end
49
+
50
+ def == other
51
+ other && other.month == self.month && other.year == self.year
52
+ end
53
+ alias :eql? :==
54
+
55
+ def hash
56
+ monthstamp.hash
57
+ end
58
+
59
+ def <=> other
60
+ monthstamp <=> other.monthstamp
61
+ end
62
+
63
+ def name
64
+ month_name + " " + year.to_s
65
+ end
66
+
67
+ def month_name
68
+ MONTHNAMES[month - 1]
69
+ end
70
+
71
+ def short_name year_first_month_only = false
72
+ if year_first_month_only
73
+ if number == 1
74
+ short_month_name + " " + year.to_s
75
+ else
76
+ short_month_name
77
+ end
78
+ else
79
+ short_month_name + " " + year.to_s
80
+ end
81
+ end
82
+
83
+ def short_month_name
84
+ month_name[0..2]
85
+ end
86
+
87
+ def to_param
88
+ id.to_s
89
+ end
90
+
91
+ def inspect
92
+ short_name(false)
93
+ end
94
+
95
+ def month
96
+ number
97
+ end
98
+
99
+ def number
100
+ @month.to_i
101
+ end
102
+
103
+ def year
104
+ @year.to_i
105
+ end
106
+
107
+ def id
108
+ monthstamp
109
+ end
110
+
111
+ def month= m
112
+ @month =
113
+ if m.is_a? Integer
114
+ m
115
+ elsif m =~ /\d+/
116
+ m.to_i
117
+ elsif m.respond_to?(:downcase)
118
+ i = MONTHDOWNCASENAMES.index(m.downcase)
119
+ i.nil? ? nil : i + 1
120
+ end.tap { |x|
121
+ raise InvalidMonth, "Invalid month #{x.inspect}" unless x && x <= 12 && x >= 1
122
+ }
123
+ end
124
+
125
+ def year= y
126
+ @year = y.to_i.tap{|x| raise InvalidYear, "Cant handle years before 1970! year:#{x}" unless x >= 1970 }
127
+ end
128
+
129
+ def strftime *args
130
+ date_object.strftime(*args)
131
+ end
132
+
133
+ def last_year
134
+ Month.at(monthstamp - 12)
135
+ end
136
+
137
+ def next_year
138
+ Month.at(monthstamp + 12)
139
+ end
140
+
141
+ def last_month
142
+ Month.at(monthstamp - 1)
143
+ end
144
+
145
+ def next_month
146
+ Month.at(monthstamp + 1)
147
+ end
148
+ alias :succ :next_month
149
+
150
+ def first_day
151
+ date_object.beginning_of_month
152
+ end
153
+
154
+ def last_day
155
+ date_object.end_of_month
156
+ end
157
+
158
+ def dates
159
+ (first_day..last_day)
160
+ end
161
+
162
+ def < other
163
+ self.monthstamp < other.monthstamp
164
+ end
165
+
166
+ def start_date
167
+ Date.new(year,month,1)
168
+ end
169
+
170
+ def > other
171
+ self.monthstamp > other.monthstamp
172
+ end
173
+
174
+ def number_of_days
175
+ Time.days_in_month(month, year)
176
+ end
177
+
178
+ def to_s
179
+ "#{month}-#{year}"
180
+ end
181
+
182
+ private
183
+
184
+ def date_object
185
+ Date.new(year, month)
186
+ end
187
+
188
+ end
189
+
@@ -0,0 +1,3 @@
1
+ module Monthstamp
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,35 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "monthstamp/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "monthstamp"
8
+ spec.version = Monthstamp::VERSION
9
+ spec.authors = ["stellard"]
10
+ spec.email = ["scott.ellard@gmail.com"]
11
+
12
+ spec.summary = %q{Extend Date and Time to handle months. Includes Month object}
13
+ spec.description = %q{Gem for handling months as a monthstamp}
14
+ spec.homepage = "https://github.com/stellard/monthstamp"
15
+
16
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
18
+ #if spec.respond_to?(:metadata)
19
+ #spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
20
+ #else
21
+ #raise "RubyGems 2.0 or newer is required to protect against " \
22
+ #"public gem pushes."
23
+ #end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
26
+ f.match(%r{^(test|spec|features)/})
27
+ end
28
+ spec.bindir = "exe"
29
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ["lib"]
31
+
32
+ spec.add_development_dependency "bundler", "~> 1.16"
33
+ spec.add_development_dependency "rake", "~> 10.0"
34
+ spec.add_development_dependency "rspec", "~> 3.0"
35
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: monthstamp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - stellard
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-09-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: Gem for handling months as a monthstamp
56
+ email:
57
+ - scott.ellard@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - Gemfile.lock
68
+ - README.md
69
+ - Rakefile
70
+ - bin/console
71
+ - bin/setup
72
+ - lib/monthstamp.rb
73
+ - lib/monthstamp/month.rb
74
+ - lib/monthstamp/version.rb
75
+ - monthstamp.gemspec
76
+ homepage: https://github.com/stellard/monthstamp
77
+ licenses: []
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.6.13
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: Extend Date and Time to handle months. Includes Month object
99
+ test_files: []