prospectus_repotimer 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.circle-ruby +3 -0
- data/.gitignore +5 -0
- data/.prospectus +25 -0
- data/.rspec +2 -0
- data/.rubocop.yml +2 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +32 -0
- data/Rakefile +14 -0
- data/circle.yml +6 -0
- data/lib/prospectus_repotimer.rb +47 -0
- data/prospectus_repotimer.gemspec +23 -0
- data/spec/prospectus_repotimer_spec.rb +1 -0
- data/spec/spec_helper.rb +11 -0
- metadata +143 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c2a13df882cb3285bd056344f42c0b686bfe7c8f
|
4
|
+
data.tar.gz: 6e90749b21c4de0a16e921acc30e2ca2060e3cb9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d6b3e71c6977840a64d17e37bd906878879ff866681fa84485ca66e24277a9ac562554f76f0dc0a438188d3a787d9eef6784e5337e6ed25bb04586f719078fbf
|
7
|
+
data.tar.gz: d469b748eb6dbfe905ed8060034d41ec9220932dcefc459efca7a827936ecbe7e393370b09df8e9fd2585ac8e58154f99ac4d9a1ff451391c7388704dfbf767f
|
data/.circle-ruby
ADDED
data/.gitignore
ADDED
data/.prospectus
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
Prospectus.extra_dep('file', 'prospectus_circleci')
|
2
|
+
|
3
|
+
my_slug = 'akerl/prospectus_repotimer'
|
4
|
+
|
5
|
+
item do
|
6
|
+
noop
|
7
|
+
|
8
|
+
deps do
|
9
|
+
item do
|
10
|
+
name 'gems'
|
11
|
+
|
12
|
+
expected do
|
13
|
+
static
|
14
|
+
set 'green'
|
15
|
+
end
|
16
|
+
|
17
|
+
actual do
|
18
|
+
gemnasium
|
19
|
+
slug my_slug
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
extend ProspectusCircleci::Build.new(my_slug)
|
25
|
+
end
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Les Aker
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
22
|
+
|
data/README.md
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
prospectus_repotimer
|
2
|
+
=========
|
3
|
+
|
4
|
+
[![Gem Version](https://img.shields.io/gem/v/prospectus_repotimer.svg)](https://rubygems.org/gems/prospectus_repotimer)
|
5
|
+
[![Dependency Status](https://img.shields.io/gemnasium/akerl/prospectus_repotimer.svg)](https://gemnasium.com/akerl/prospectus_repotimer)
|
6
|
+
[![Build Status](https://img.shields.io/circleci/project/akerl/prospectus_repotimer.svg)](https://circleci.com/gh/akerl/prospectus_repotimer)
|
7
|
+
[![Coverage Status](https://img.shields.io/codecov/c/github/akerl/prospectus_repotimer.svg)](https://codecov.io/github/akerl/prospectus_repotimer)
|
8
|
+
[![Code Quality](https://img.shields.io/codacy/c5623564a4034ece993510d28edb19de.svg)](https://www.codacy.com/app/akerl/prospectus_repotimer)
|
9
|
+
[![MIT Licensed](https://img.shields.io/badge/license-MIT-green.svg)](https://tldrlegal.com/license/mit-license)
|
10
|
+
|
11
|
+
[Prospectus](https://github.com/akerl/prospectus) helpers for checking for repo staleness
|
12
|
+
|
13
|
+
## Usage
|
14
|
+
|
15
|
+
Add the following 2 lines to the .prospectus:
|
16
|
+
|
17
|
+
```
|
18
|
+
## Add this at the top
|
19
|
+
Prospectus.extra_dep('file', 'prospectus_repotimer')
|
20
|
+
|
21
|
+
## Add this inside your item that has a build
|
22
|
+
extend ProspectusRepotimer.build(days_ago)
|
23
|
+
```
|
24
|
+
|
25
|
+
## Installation
|
26
|
+
|
27
|
+
gem install prospectus_repotimer
|
28
|
+
|
29
|
+
## License
|
30
|
+
|
31
|
+
prospectus_repotimer is released under the MIT License. See the bundled LICENSE file for details.
|
32
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
2
|
+
require 'rspec/core/rake_task'
|
3
|
+
require 'rubocop/rake_task'
|
4
|
+
|
5
|
+
desc 'Run tests'
|
6
|
+
RSpec::Core::RakeTask.new(:spec)
|
7
|
+
|
8
|
+
desc 'Run Rubocop on the gem'
|
9
|
+
RuboCop::RakeTask.new(:rubocop) do |task|
|
10
|
+
task.patterns = ['lib/**/*.rb', 'spec/**/*.rb']
|
11
|
+
task.fail_on_error = true
|
12
|
+
end
|
13
|
+
|
14
|
+
task default: [:spec, :rubocop, :build, :install]
|
data/circle.yml
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
require 'date'
|
2
|
+
|
3
|
+
module ProspectusRepotimer
|
4
|
+
##
|
5
|
+
# Helper for automatically adding timer check
|
6
|
+
class Timer < Module
|
7
|
+
def initialize(days_ago)
|
8
|
+
@days_ago = days_ago || raise('No age specified')
|
9
|
+
end
|
10
|
+
|
11
|
+
def extended(other) # rubocop:disable Metrics/MethodLength
|
12
|
+
actual_val, expected_val = parse_status
|
13
|
+
|
14
|
+
other.deps do
|
15
|
+
item do
|
16
|
+
name 'timer'
|
17
|
+
|
18
|
+
expected do
|
19
|
+
static
|
20
|
+
set expected_val
|
21
|
+
end
|
22
|
+
|
23
|
+
actual do
|
24
|
+
static
|
25
|
+
set actual_val
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def parse_status
|
32
|
+
[last_commit_days_ago, days_ago_array]
|
33
|
+
end
|
34
|
+
|
35
|
+
def last_commit_days_ago
|
36
|
+
@last_commit_days_ago ||= (Date.today - last_commit).to_i
|
37
|
+
end
|
38
|
+
|
39
|
+
def last_commit
|
40
|
+
@last_commit ||= Date.parse(`git show --format=%cI -s`)
|
41
|
+
end
|
42
|
+
|
43
|
+
def days_ago_array
|
44
|
+
@days_ago.downto(0).to_a
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'prospectus_repotimer'
|
3
|
+
s.version = '0.0.1'
|
4
|
+
s.date = Time.now.strftime('%Y-%m-%d')
|
5
|
+
|
6
|
+
s.summary = 'Prospectus helpers for checking repo staleness'
|
7
|
+
s.description = "Prospectus helpers for checking repo staleness"
|
8
|
+
s.authors = ['Les Aker']
|
9
|
+
s.email = 'me@lesaker.org'
|
10
|
+
s.homepage = 'https://github.com/amylum/prospectus_repotimer'
|
11
|
+
s.license = 'MIT'
|
12
|
+
|
13
|
+
s.files = `git ls-files`.split
|
14
|
+
s.test_files = `git ls-files spec/*`.split
|
15
|
+
|
16
|
+
s.add_dependency 'prospectus', '~> 0.5.0'
|
17
|
+
|
18
|
+
s.add_development_dependency 'rubocop', '~> 0.49.0'
|
19
|
+
s.add_development_dependency 'rake', '~> 12.0.0'
|
20
|
+
s.add_development_dependency 'codecov', '~> 0.1.1'
|
21
|
+
s.add_development_dependency 'rspec', '~> 3.6.0'
|
22
|
+
s.add_development_dependency 'fuubar', '~> 2.2.0'
|
23
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'spec_helper'
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,143 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: prospectus_repotimer
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Les Aker
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-08-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: prospectus
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.5.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.5.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rubocop
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.49.0
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.49.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 12.0.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 12.0.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: codecov
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.1.1
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.1.1
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 3.6.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 3.6.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: fuubar
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 2.2.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 2.2.0
|
97
|
+
description: Prospectus helpers for checking repo staleness
|
98
|
+
email: me@lesaker.org
|
99
|
+
executables: []
|
100
|
+
extensions: []
|
101
|
+
extra_rdoc_files: []
|
102
|
+
files:
|
103
|
+
- ".circle-ruby"
|
104
|
+
- ".gitignore"
|
105
|
+
- ".prospectus"
|
106
|
+
- ".rspec"
|
107
|
+
- ".rubocop.yml"
|
108
|
+
- Gemfile
|
109
|
+
- LICENSE
|
110
|
+
- README.md
|
111
|
+
- Rakefile
|
112
|
+
- circle.yml
|
113
|
+
- lib/prospectus_repotimer.rb
|
114
|
+
- prospectus_repotimer.gemspec
|
115
|
+
- spec/prospectus_repotimer_spec.rb
|
116
|
+
- spec/spec_helper.rb
|
117
|
+
homepage: https://github.com/amylum/prospectus_repotimer
|
118
|
+
licenses:
|
119
|
+
- MIT
|
120
|
+
metadata: {}
|
121
|
+
post_install_message:
|
122
|
+
rdoc_options: []
|
123
|
+
require_paths:
|
124
|
+
- lib
|
125
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - ">="
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '0'
|
130
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '0'
|
135
|
+
requirements: []
|
136
|
+
rubyforge_project:
|
137
|
+
rubygems_version: 2.6.11
|
138
|
+
signing_key:
|
139
|
+
specification_version: 4
|
140
|
+
summary: Prospectus helpers for checking repo staleness
|
141
|
+
test_files:
|
142
|
+
- spec/prospectus_repotimer_spec.rb
|
143
|
+
- spec/spec_helper.rb
|