super-max-tool 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.
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ version = File.read(File.expand_path('VERSION', __dir__)).strip
4
+
5
+ Gem::Specification.new 'sinatra', version do |s|
6
+ s.description = 'Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort.'
7
+ s.summary = 'Classy web-development dressed in a DSL'
8
+ s.authors = ['Blake Mizerany', 'Ryan Tomayko', 'Simon Rozet', 'Konstantin Haase']
9
+ s.email = 'sinatrarb@googlegroups.com'
10
+ s.homepage = 'http://sinatrarb.com/'
11
+ s.license = 'MIT'
12
+ s.files = Dir['README*.md', 'lib/**/*', 'examples/*'] + [
13
+ '.yardopts',
14
+ 'AUTHORS.md',
15
+ 'CHANGELOG.md',
16
+ 'CONTRIBUTING.md',
17
+ 'Gemfile',
18
+ 'LICENSE',
19
+ 'MAINTENANCE.md',
20
+ 'Rakefile',
21
+ 'SECURITY.md',
22
+ 'sinatra.gemspec',
23
+ 'VERSION'
24
+ ]
25
+ s.extra_rdoc_files = %w[README.md LICENSE]
26
+ s.rdoc_options = %w[--line-numbers --title Sinatra --main README.rdoc --encoding=UTF-8]
27
+
28
+ unless s.respond_to?(:metadata)
29
+ raise <<-WARN
30
+ RubyGems 2.0 or newer is required to protect against public gem pushes. You can update your rubygems version by running:
31
+ gem install rubygems-update
32
+ update_rubygems:
33
+ gem update --system
34
+ WARN
35
+ end
36
+
37
+ s.metadata = {
38
+ 'source_code_uri' => 'https://github.com/sinatra/sinatra',
39
+ 'changelog_uri' => 'https://github.com/sinatra/sinatra/blob/main/CHANGELOG.md',
40
+ 'homepage_uri' => 'http://sinatrarb.com/',
41
+ 'bug_tracker_uri' => 'https://github.com/sinatra/sinatra/issues',
42
+ 'mailing_list_uri' => 'http://groups.google.com/group/sinatrarb',
43
+ 'documentation_uri' => 'https://www.rubydoc.info/gems/sinatra',
44
+ 'rubygems_mfa_required' => 'true',
45
+ }
46
+
47
+ s.required_ruby_version = '>= 2.7.8'
48
+
49
+ s.add_dependency 'logger', '>= 1.6.0'
50
+ s.add_dependency 'mustermann', '~> 3.0'
51
+ s.add_dependency 'rack', '>= 3.0.0', '< 4'
52
+ s.add_dependency 'rack-protection', version
53
+ s.add_dependency 'rack-session', '>= 2.0.0', '< 3'
54
+ s.add_dependency 'tilt', '~> 2.0'
55
+ end
@@ -0,0 +1,12 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "super-max-tool"
3
+ s.version = "0.0.1"
4
+ s.summary = "Research test"
5
+ s.description = "University research based on sinatra"
6
+ s.authors = ["Andrey78"]
7
+ s.email = ["cakoc614@gmail.com"]
8
+ s.files = Dir.glob("**/*").reject { |f| f.end_with?('.gem') }
9
+ s.homepage = "https://rubygems.org/profiles/Andrey78"
10
+ s.license = "MIT"
11
+ s.metadata = { "source_code_uri" => "https://github.com/Andrey78/super-max-tool" }
12
+ end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: super-max-tool
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Andrey78
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2026-07-05 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: University research based on sinatra
13
+ email:
14
+ - cakoc614@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - sinatra-4.2.1/AUTHORS.md
20
+ - sinatra-4.2.1/CHANGELOG.md
21
+ - sinatra-4.2.1/CONTRIBUTING.md
22
+ - sinatra-4.2.1/Gemfile
23
+ - sinatra-4.2.1/LICENSE
24
+ - sinatra-4.2.1/MAINTENANCE.md
25
+ - sinatra-4.2.1/README.md
26
+ - sinatra-4.2.1/Rakefile
27
+ - sinatra-4.2.1/SECURITY.md
28
+ - sinatra-4.2.1/VERSION
29
+ - sinatra-4.2.1/examples/chat.rb
30
+ - sinatra-4.2.1/examples/lifecycle_events.rb
31
+ - sinatra-4.2.1/examples/simple.rb
32
+ - sinatra-4.2.1/examples/stream.ru
33
+ - sinatra-4.2.1/lib/sinatra.rb
34
+ - sinatra-4.2.1/lib/sinatra/base.rb
35
+ - sinatra-4.2.1/lib/sinatra/images/404.png
36
+ - sinatra-4.2.1/lib/sinatra/images/500.png
37
+ - sinatra-4.2.1/lib/sinatra/indifferent_hash.rb
38
+ - sinatra-4.2.1/lib/sinatra/main.rb
39
+ - sinatra-4.2.1/lib/sinatra/middleware/logger.rb
40
+ - sinatra-4.2.1/lib/sinatra/show_exceptions.rb
41
+ - sinatra-4.2.1/lib/sinatra/version.rb
42
+ - sinatra-4.2.1/sinatra.gemspec
43
+ - super-max-tool.gemspec
44
+ homepage: https://rubygems.org/profiles/Andrey78
45
+ licenses:
46
+ - MIT
47
+ metadata:
48
+ source_code_uri: https://github.com/Andrey78/super-max-tool
49
+ rdoc_options: []
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ requirements: []
63
+ rubygems_version: 3.6.2
64
+ specification_version: 4
65
+ summary: Research test
66
+ test_files: []