nano-max-rb 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.
- checksums.yaml +7 -0
- data/nano-max-rb.gemspec +11 -0
- data/sinatra-4.2.1/AUTHORS.md +87 -0
- data/sinatra-4.2.1/CHANGELOG.md +1848 -0
- data/sinatra-4.2.1/CONTRIBUTING.md +100 -0
- data/sinatra-4.2.1/Gemfile +66 -0
- data/sinatra-4.2.1/LICENSE +26 -0
- data/sinatra-4.2.1/MAINTENANCE.md +29 -0
- data/sinatra-4.2.1/README.md +2952 -0
- data/sinatra-4.2.1/Rakefile +228 -0
- data/sinatra-4.2.1/SECURITY.md +35 -0
- data/sinatra-4.2.1/VERSION +1 -0
- data/sinatra-4.2.1/examples/chat.rb +75 -0
- data/sinatra-4.2.1/examples/lifecycle_events.rb +20 -0
- data/sinatra-4.2.1/examples/simple.rb +5 -0
- data/sinatra-4.2.1/examples/stream.ru +26 -0
- data/sinatra-4.2.1/lib/sinatra/base.rb +2173 -0
- data/sinatra-4.2.1/lib/sinatra/images/404.png +0 -0
- data/sinatra-4.2.1/lib/sinatra/images/500.png +0 -0
- data/sinatra-4.2.1/lib/sinatra/indifferent_hash.rb +208 -0
- data/sinatra-4.2.1/lib/sinatra/main.rb +56 -0
- data/sinatra-4.2.1/lib/sinatra/middleware/logger.rb +21 -0
- data/sinatra-4.2.1/lib/sinatra/show_exceptions.rb +364 -0
- data/sinatra-4.2.1/lib/sinatra/version.rb +5 -0
- data/sinatra-4.2.1/lib/sinatra.rb +5 -0
- data/sinatra-4.2.1/sinatra.gemspec +55 -0
- metadata +65 -0
|
@@ -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
|
metadata
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: nano-max-rb
|
|
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-06 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
|
+
- nano-max-rb.gemspec
|
|
20
|
+
- sinatra-4.2.1/AUTHORS.md
|
|
21
|
+
- sinatra-4.2.1/CHANGELOG.md
|
|
22
|
+
- sinatra-4.2.1/CONTRIBUTING.md
|
|
23
|
+
- sinatra-4.2.1/Gemfile
|
|
24
|
+
- sinatra-4.2.1/LICENSE
|
|
25
|
+
- sinatra-4.2.1/MAINTENANCE.md
|
|
26
|
+
- sinatra-4.2.1/README.md
|
|
27
|
+
- sinatra-4.2.1/Rakefile
|
|
28
|
+
- sinatra-4.2.1/SECURITY.md
|
|
29
|
+
- sinatra-4.2.1/VERSION
|
|
30
|
+
- sinatra-4.2.1/examples/chat.rb
|
|
31
|
+
- sinatra-4.2.1/examples/lifecycle_events.rb
|
|
32
|
+
- sinatra-4.2.1/examples/simple.rb
|
|
33
|
+
- sinatra-4.2.1/examples/stream.ru
|
|
34
|
+
- sinatra-4.2.1/lib/sinatra.rb
|
|
35
|
+
- sinatra-4.2.1/lib/sinatra/base.rb
|
|
36
|
+
- sinatra-4.2.1/lib/sinatra/images/404.png
|
|
37
|
+
- sinatra-4.2.1/lib/sinatra/images/500.png
|
|
38
|
+
- sinatra-4.2.1/lib/sinatra/indifferent_hash.rb
|
|
39
|
+
- sinatra-4.2.1/lib/sinatra/main.rb
|
|
40
|
+
- sinatra-4.2.1/lib/sinatra/middleware/logger.rb
|
|
41
|
+
- sinatra-4.2.1/lib/sinatra/show_exceptions.rb
|
|
42
|
+
- sinatra-4.2.1/lib/sinatra/version.rb
|
|
43
|
+
- sinatra-4.2.1/sinatra.gemspec
|
|
44
|
+
homepage: https://rubygems.org/profiles/Andrey78
|
|
45
|
+
licenses:
|
|
46
|
+
- MIT
|
|
47
|
+
metadata: {}
|
|
48
|
+
rdoc_options: []
|
|
49
|
+
require_paths:
|
|
50
|
+
- lib
|
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
52
|
+
requirements:
|
|
53
|
+
- - ">="
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: '0'
|
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '0'
|
|
61
|
+
requirements: []
|
|
62
|
+
rubygems_version: 3.6.2
|
|
63
|
+
specification_version: 4
|
|
64
|
+
summary: Research test
|
|
65
|
+
test_files: []
|