-
Notifications
You must be signed in to change notification settings - Fork 2
/
cutting_edge.gemspec
92 lines (85 loc) · 2.93 KB
/
cutting_edge.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.rubygems_version = '1.3.5'
s.required_ruby_version = '>= 2.4'
s.name = 'cutting_edge'
s.version = '0.3'
s.date = '2022-10-15'
s.license = 'GPL-3.0-only'
s.summary = 'Self-hosted dependency monitoring, including shiny badges.'
s.description = 'Self-hosted dependency monitoring, including shiny badges.'
s.authors = ['Dawa Ometto', 'Bart Kamphorst']
s.email = '[email protected]'
s.homepage = 'http://github.com/repotag/cutting_edge'
s.require_paths = %w[lib]
s.executables = ['cutting_edge']
s.add_dependency 'gemnasium-parser', '~> 0.1.9'
s.add_dependency 'hashdiff', '~> 1.0'
s.add_dependency 'http', '~> 5.0'
s.add_dependency 'sucker_punch', '~> 3.0'
s.add_dependency 'sinatra', '~> 3.0'
s.add_dependency 'moneta', '~> 1.2'
s.add_dependency 'rufus-scheduler', '~> 3.6'
s.add_dependency 'sinatra-logger', '~> 0.3'
s.add_dependency 'toml-rb', '~> 2.0'
s.add_dependency 'mail', '~> 2.7'
# = MANIFEST =
s.files = %w[
Dockerfile
Gemfile
HISTORY.md
LATEST_CHANGES.md
LICENSE
Procfile
README.md
Rakefile
bin/cutting_edge
config.rb
cutting_edge.gemspec
docker-compose.yml
docker-run.sh
heroku.config.rb
lib/cutting_edge.rb
lib/cutting_edge/app.rb
lib/cutting_edge/langs.rb
lib/cutting_edge/langs/python.rb
lib/cutting_edge/langs/ruby.rb
lib/cutting_edge/langs/rust.rb
lib/cutting_edge/public/images/error.svg
lib/cutting_edge/public/images/languages/python.svg
lib/cutting_edge/public/images/languages/ruby.svg
lib/cutting_edge/public/images/languages/rust.svg
lib/cutting_edge/public/images/ok.svg
lib/cutting_edge/public/javascript/clipboard.min.js
lib/cutting_edge/public/javascript/cuttingedge.js
lib/cutting_edge/public/stylesheets/primer.css
lib/cutting_edge/repo.rb
lib/cutting_edge/templates/_footer.html.erb
lib/cutting_edge/templates/_header.html.erb
lib/cutting_edge/templates/_overview.html.erb
lib/cutting_edge/templates/badge.svg.erb
lib/cutting_edge/templates/index.html.erb
lib/cutting_edge/templates/info.html.erb
lib/cutting_edge/templates/mail.html.erb
lib/cutting_edge/versions.rb
lib/cutting_edge/workers/badge.rb
lib/cutting_edge/workers/dependency.rb
lib/cutting_edge/workers/helpers.rb
lib/cutting_edge/workers/mail.rb
projects.yml
spec/app_spec.rb
spec/badge_worker_spec.rb
spec/dependency_worker_spec.rb
spec/email_worker_spec.rb
spec/fixtures.rb
spec/fixtures/projects.yml
spec/langs/python_spec.rb
spec/langs/ruby_spec.rb
spec/langs/rust_spec.rb
spec/repo_spec.rb
spec/spec_helper.rb
spec/worker_helper_spec.rb
]
# = MANIFEST =
end