raki 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 525786fbd7d2b61ce8eaf8f2f5f6ea070de9801521a353b71c62ffbcf0d3b2c6
4
- data.tar.gz: ce2226ef9894b6fff04ac74923ce26168f6674802a2ea83cedf93d8d6c6717e5
3
+ metadata.gz: ab3397c01504c3d1377e3677fd9ab6e96bd008483439b67d5aec2470d148d8a7
4
+ data.tar.gz: 1c9785b4be9430e556cc5493864c9e8147fa161122275a11c3f37805f335e12f
5
5
  SHA512:
6
- metadata.gz: 6905b821786588bc1215bf498e75b7421284d2862f35e4282ec994557c5029fd124a805909bcafe465a9335b28507832d28242dc3fa33c66d170fe51d568c96b
7
- data.tar.gz: 51b1595622b43efb6c7a220cc65032c39391ae361a9f76d454da5bd9de1ddd760180fbc804e1004366c8f74535bfb4ed8d99f505caf72848dde0608dc997b8b2
6
+ metadata.gz: be5079c7ae71b350f7e46190153bbe6b2f75c00d998dfa8ed87e80be9c28f908ea8da0aa161ee6ec1666ae0ba840ab3243d693c23aafe63e88fd4bae03a0d445
7
+ data.tar.gz: ffe994cb549ef1edc9456afa5e3017d886118a0a95bd90ff6db678a0a112c6902d8abd7009953a5bbb3585368ad2a95393fc114a948a822e5fb72790360d8b86
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Dittmar Krall - www.matique.com
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 all
13
+ 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 THE
21
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ # raki
2
+
3
+ Under heavy construction
@@ -1,14 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Raki is freely distributable under the terms of an MIT-style license.
4
- # See MIT-LICENSE or https://opensource.org/licenses/MIT.
5
-
6
- # The Raki main module, serving as a namespace for all core Raki
7
- # modules and classes.
8
- #
9
- # All modules meant for use in your application are <tt>autoload</tt>ed here,
10
- # so it should be enough just to <tt>require 'rack'</tt> in your code.
11
-
12
3
  module Raki
13
- VERSION = '0.0.2'
4
+ VERSION = '0.0.3' # 2020-07-14
5
+ # VERSION = '0.0.2'
14
6
  end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Raki is freely distributable under the terms of an MIT-style license.
4
+ # See MIT-LICENSE or https://opensource.org/licenses/MIT.
5
+
6
+ # The Raki main module, serving as a namespace for all core Raki
7
+ # modules and classes.
8
+ #
9
+ # All modules meant for use in your application are <tt>autoload</tt>ed here,
10
+ # so it should be enough just to <tt>require 'rack'</tt> in your code.
11
+
12
+ module Raki
13
+ VERSION = '0.0.2'
14
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
@@ -14,30 +14,30 @@ dependencies:
14
14
  name: rake
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '13'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: '13'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: '1'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
40
+ version: '1'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: minitest
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -52,46 +52,30 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '5.0'
55
- - !ruby/object:Gem::Dependency
56
- name: minitest-sprint
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: minitest-global_expectations
71
57
  requirement: !ruby/object:Gem::Requirement
72
58
  requirements:
73
- - - ">="
59
+ - - "~>"
74
60
  - !ruby/object:Gem::Version
75
- version: '0'
61
+ version: '1'
76
62
  type: :development
77
63
  prerelease: false
78
64
  version_requirements: !ruby/object:Gem::Requirement
79
65
  requirements:
80
- - - ">="
66
+ - - "~>"
81
67
  - !ruby/object:Gem::Version
82
- version: '0'
83
- description: |
84
- Raki provides a minimal, modular and adaptable interface for developing
85
- web applications in Ruby. By wrapping HTTP requests and responses in
86
- the simplest way possible, it unifies and distills the API for web
87
- servers, web frameworks, and software in between (the so-called
88
- middleware) into a single method call.
68
+ version: '1'
69
+ description: 'Raki is under construction
70
+
71
+ '
89
72
  email: dittmar.krall@matique.de
90
73
  executables: []
91
74
  extensions: []
92
75
  extra_rdoc_files: []
93
76
  files:
94
- - Rakefile
77
+ - LICENSE
78
+ - README.md
95
79
  - lib/raki.rb
96
80
  - lib/raki/block.rb
97
81
  - lib/raki/builder.rb
@@ -104,7 +88,7 @@ files:
104
88
  - lib/raki/require.rb
105
89
  - lib/raki/slice.rb
106
90
  - lib/raki/version.rb
107
- - raki.gemspec
91
+ - lib/raki/version.rb.bak
108
92
  homepage: https://matique.com
109
93
  licenses:
110
94
  - MIT
@@ -117,7 +101,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
117
101
  requirements:
118
102
  - - ">="
119
103
  - !ruby/object:Gem::Version
120
- version: 2.6.0
104
+ version: '2.6'
121
105
  required_rubygems_version: !ruby/object:Gem::Requirement
122
106
  requirements:
123
107
  - - ">="
data/Rakefile DELETED
@@ -1,20 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'bundler/gem_tasks'
4
- require 'rake/testtask'
5
-
6
- desc 'Run all the tests'
7
- task default: :test
8
-
9
- Rake::TestTask.new("test:regular") do |t|
10
- t.libs << "test"
11
- t.test_files = FileList["test/**/*_test.rb"]
12
- t.warning = false
13
- t.verbose = true
14
- end
15
-
16
- desc "Run all the fast + platform agnostic tests"
17
- task test: %w[test:regular]
18
-
19
- desc "Run all the tests we run on CI"
20
- task ci: :test
@@ -1,39 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative 'lib/raki/version'
4
-
5
- Gem::Specification.new do |s|
6
- s.name = "raki"
7
- s.version = Raki::VERSION
8
- s.platform = Gem::Platform::RUBY
9
- s.summary = "A modular hash interface."
10
- s.license = "MIT"
11
-
12
- s.description = <<~EOF
13
- Raki provides a minimal, modular and adaptable interface for developing
14
- web applications in Ruby. By wrapping HTTP requests and responses in
15
- the simplest way possible, it unifies and distills the API for web
16
- servers, web frameworks, and software in between (the so-called
17
- middleware) into a single method call.
18
- EOF
19
-
20
- s.files = Dir['{bin/*,contrib/*,example/*,lib/**/*}'] +
21
- %w(raki.gemspec Rakefile)
22
-
23
- s.bindir = 'bin'
24
- s.require_path = 'lib'
25
-
26
- s.author = 'Dittmar Krall'
27
- s.email = 'dittmar.krall@matique.de'
28
-
29
- s.homepage = 'https://matique.com'
30
-
31
- s.required_ruby_version = '>= 2.6.0'
32
-
33
- s.add_development_dependency 'rake'
34
- s.add_development_dependency 'bundler'
35
-
36
- s.add_development_dependency 'minitest', "~> 5.0"
37
- s.add_development_dependency 'minitest-sprint'
38
- s.add_development_dependency 'minitest-global_expectations'
39
- end