overtime-queries 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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/bin/out_of_hours +12 -0
- data/lib/overtime/out_of_hours_presenter.rb +38 -0
- data/lib/overtime/out_of_hours_query.rb +32 -0
- data/lib/overtime/version.rb +3 -0
- data/lib/overtime.rb +3 -0
- data/overtime.gemspec +21 -0
- metadata +73 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Robbie Clutton
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Overtime
|
2
|
+
|
3
|
+
Run time based queries over a git repository.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'overtime'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install overtime
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/out_of_hours
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
module Overtime
|
2
|
+
class OutOfHoursPresenter
|
3
|
+
|
4
|
+
def initialize(commit, start, finish)
|
5
|
+
@commit = commit
|
6
|
+
@start = start
|
7
|
+
@finish = finish
|
8
|
+
end
|
9
|
+
|
10
|
+
def to_s
|
11
|
+
if weekend?
|
12
|
+
"This commit -#{@commit.id_abbrev}- by #{@commit.author} took place at the weekend"
|
13
|
+
elsif before_start?
|
14
|
+
"This commit -#{@commit.id_abbrev}- by #{@commit.author} took place before 9am at #{@commit.authored_date}"
|
15
|
+
elsif after_finish?
|
16
|
+
"This commit -#{@commit.id_abbrev}- by #{@commit.author} took place after 6pm at #{@commit.authored_date}"
|
17
|
+
else
|
18
|
+
"This commit -#{@commit.id_abbrev}- is OK at #{@commit.authored_date}"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
private
|
23
|
+
|
24
|
+
def weekend?
|
25
|
+
day = @commit.authored_date.wday
|
26
|
+
day == 0 || day == 6
|
27
|
+
end
|
28
|
+
|
29
|
+
def before_start?
|
30
|
+
@commit.authored_date.hour < @start
|
31
|
+
end
|
32
|
+
|
33
|
+
def after_finish?
|
34
|
+
@commit.authored_date.hour > @finish
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'grit'
|
2
|
+
|
3
|
+
module Overtime
|
4
|
+
class OutOfHoursQuery
|
5
|
+
|
6
|
+
def initialize(repo, options = {})
|
7
|
+
@repo = repo
|
8
|
+
@branch = options.fetch(:branch, 'master')
|
9
|
+
@count = options.fetch(:count, @repo.commit_count)
|
10
|
+
@start = options.fetch(:start, 9)
|
11
|
+
@end = options.fetch(:end, 18)
|
12
|
+
end
|
13
|
+
|
14
|
+
def run
|
15
|
+
@repo.commits(@branch, @count).select do |commit|
|
16
|
+
out_of_hours?(commit)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def present
|
21
|
+
run.map { |commit| OutOfHoursPresenter.new(commit, @start, @end) }
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
def out_of_hours?(commit)
|
26
|
+
commit.authored_date.wday > 5 ||
|
27
|
+
commit.authored_date.hour < @start ||
|
28
|
+
commit.authored_date.hour > @end
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
data/lib/overtime.rb
ADDED
data/overtime.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'overtime/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "overtime-queries"
|
8
|
+
gem.version = Overtime::VERSION
|
9
|
+
gem.authors = ["Robbie Clutton"]
|
10
|
+
gem.email = ["robert.clutton@gmail.com"]
|
11
|
+
gem.description = %q{Run time based queries over a git repository}
|
12
|
+
gem.summary = %q{Run time based queries over a git repository}
|
13
|
+
gem.homepage = "http://github.com/robb1e/overtime"
|
14
|
+
|
15
|
+
gem.add_dependency "grit"
|
16
|
+
|
17
|
+
gem.files = `git ls-files`.split($/)
|
18
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
19
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
20
|
+
gem.require_paths = ["lib"]
|
21
|
+
end
|
metadata
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: overtime-queries
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Robbie Clutton
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-11-18 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: grit
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: Run time based queries over a git repository
|
31
|
+
email:
|
32
|
+
- robert.clutton@gmail.com
|
33
|
+
executables:
|
34
|
+
- out_of_hours
|
35
|
+
extensions: []
|
36
|
+
extra_rdoc_files: []
|
37
|
+
files:
|
38
|
+
- .gitignore
|
39
|
+
- Gemfile
|
40
|
+
- LICENSE.txt
|
41
|
+
- README.md
|
42
|
+
- Rakefile
|
43
|
+
- bin/out_of_hours
|
44
|
+
- lib/overtime.rb
|
45
|
+
- lib/overtime/out_of_hours_presenter.rb
|
46
|
+
- lib/overtime/out_of_hours_query.rb
|
47
|
+
- lib/overtime/version.rb
|
48
|
+
- overtime.gemspec
|
49
|
+
homepage: http://github.com/robb1e/overtime
|
50
|
+
licenses: []
|
51
|
+
post_install_message:
|
52
|
+
rdoc_options: []
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ! '>='
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
requirements: []
|
68
|
+
rubyforge_project:
|
69
|
+
rubygems_version: 1.8.24
|
70
|
+
signing_key:
|
71
|
+
specification_version: 3
|
72
|
+
summary: Run time based queries over a git repository
|
73
|
+
test_files: []
|