rosefinch 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e06d5f5632db6cc7475bef18665054cf223c853f9c0151acf780e89dabd4419
4
- data.tar.gz: '0389a271e9e362bb0c06a1044e5e49faa3bd214a824be343784e505bbbbaa208'
3
+ metadata.gz: fc758f0507ef9b72eec6262fb8bab39665b852ac1c171eac5e63a443f4170ad9
4
+ data.tar.gz: f7e8354bc258fdb3355567f6d8a279c6b1b30a6a841e33596c0b46323db39df4
5
5
  SHA512:
6
- metadata.gz: 55d1510d57ed911a872077294717466498dc8885836c70c51ce04b36efa11f5f8254223b6e7c7e453d3322fdb1aba1b844d896bc8ce5ed1902e299f4d97f80a9
7
- data.tar.gz: 6a933f8782c5e8ee88745dc4817653505fb0da37909bc15b59319ddb786b86dfc180c1f9e261337babeddca6fcb3a239243c44c21231c380516e0ea599a72968
6
+ metadata.gz: 16c854ce781f86133b9dac6d88c1107be81dc79a93058de10aa758d3248840c2b8f4db422d2c8ad7b3d9e959f3c895565211f24a2814392e1bf67d7bf4387d16
7
+ data.tar.gz: 8ef20b5cebabf19c36a49121f178e9859fb0c22b7ef13fc76824cb9ab57ee1fa3b631c54609ef24e29ff53245e139c476e882da879073a8e22fba9402ef2ff5d
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org' unless ENV['QUICK']
2
+ gemspec
3
+
4
+ gem 'rake'
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 _Mark24_
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,12 @@
1
+ require "rosefinch"
2
+
3
+ get "/" do
4
+ "Hello World!"
5
+ end
6
+
7
+ get "/welcome" do
8
+ "welcome rosefinch!"
9
+ end
10
+
11
+
12
+ RoseFinch::RunServer port:4567
File without changes
@@ -0,0 +1,20 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'rosefinch'
3
+ s.version = '0.0.2'
4
+ s.date = '2020-07-13'
5
+ s.summary = "Sinatra like framework"
6
+ s.description = "[Experimenting!] Classy Web framework like sinatra.Small, beautiful and easy to use."
7
+ s.authors = ["Mark24"]
8
+ s.email = "mark.zhangyoung@qq.com"
9
+ s.files = Dir["lib/**/*"]+Dir["examples/**/*"]+
10
+ [
11
+ "Gemfile",
12
+ "LICENSE",
13
+ "rosefinch.gemspec"
14
+ ]
15
+ s.metadata = { "source_code_uri" => "https://github.com/Mark24Code/rosefinch" }
16
+ s.homepage =
17
+ 'https://github.com/Mark24Code/rosefinch'
18
+ s.license = 'MIT'
19
+ end
20
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rosefinch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark24
@@ -10,14 +10,18 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2020-07-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Experimenting!] Web framework like sinatra.Small, beautiful and easy
14
- to use."
13
+ description: "[Experimenting!] Classy Web framework like sinatra.Small, beautiful
14
+ and easy to use."
15
15
  email: mark.zhangyoung@qq.com
16
16
  executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
- - lib/rosefinch/main.rb
20
+ - Gemfile
21
+ - LICENSE
22
+ - examples/app.rb
23
+ - lib/rosefinch.rb
24
+ - rosefinch.gemspec
21
25
  homepage: https://github.com/Mark24Code/rosefinch
22
26
  licenses:
23
27
  - MIT