feet 0.0.91 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 07d443fe7489fa46e75573a051cbaea50d5ed5fc4e48cfa37c5d3dc9722bc7c1
4
- data.tar.gz: af25d58693e016b1cde6ed04bc0dce7456c38713851a79b482f40f74fd78d18e
3
+ metadata.gz: 8b0fde6c92f9decd757c7fdac1f1f965a59b44cbfa6a8efd4b7d47a14ca85625
4
+ data.tar.gz: 16b239c756a4ab5a6a5fa6af1cdc0d09e3c49b13e5664e4c42a5158a24c6a598
5
5
  SHA512:
6
- metadata.gz: 22ec8f8cb0f7636e9382fa428c7df6a43f6e07f936309105e4a28b329d08c6bf66f9b952a9fc121c8422b8406fa521b88065cae5d2d113bbf8caea5f7cba7a2e
7
- data.tar.gz: fa8f9fe9fc8685542a2d1d8b42063cf76a0f38fd20b0bfd88cd76ce5ad4572ffc34f9162e830faa8aedc400dec9d5f37b48cdde906fa95c3885202e8eb0a3d23
6
+ metadata.gz: f0ed2348ae06629579979730f11833afa7ba1aee4f4e2683b800d71454559cd7634efda38b5a667738113bda9e69d2509819e09daeb7bc566bf12724414e8b0c
7
+ data.tar.gz: 8f1eeace202fc9999cd8dc5524bc901ede01dc5fe5c974644781fb6d150bb781fd2e3a4f3f143795fe5c163657a0f639d14a31f4971d670927f732bbbc04858f
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ feet-*.gem
11
+ test.db
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in feet.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,43 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ feet (0.1.1)
5
+ erubis
6
+ multi_json
7
+ rack (~> 2.2)
8
+ sqlite3
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ byebug (11.1.3)
14
+ coderay (1.1.3)
15
+ erubis (2.7.0)
16
+ method_source (1.0.0)
17
+ minitest (5.17.0)
18
+ multi_json (1.15.0)
19
+ pry (0.14.1)
20
+ coderay (~> 1.1)
21
+ method_source (~> 1.0)
22
+ pry-byebug (3.10.1)
23
+ byebug (~> 11.0)
24
+ pry (>= 0.13, < 0.15)
25
+ rack (2.2.5)
26
+ rack-test (2.0.2)
27
+ rack (>= 1.3)
28
+ rake (13.0.6)
29
+ sqlite3 (1.6.0-arm64-darwin)
30
+
31
+ PLATFORMS
32
+ arm64-darwin-21
33
+ arm64-darwin-22
34
+
35
+ DEPENDENCIES
36
+ feet!
37
+ minitest
38
+ pry-byebug
39
+ rack-test
40
+ rake (~> 13.0)
41
+
42
+ BUNDLED WITH
43
+ 2.3.17
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Darius Pirvulescu
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
13
+ all 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
21
+ THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rake/testtask'
5
+
6
+ Rake::TestTask.new do |t|
7
+ t.name = 'test'
8
+ t.libs << 'test'
9
+ t.test_files = Dir['test/*test*.rb']
10
+ t.verbose = true
11
+ end
data/feet.gemspec ADDED
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/feet/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'feet'
7
+ spec.version = Feet::VERSION
8
+ spec.authors = ['Darius Pirvulescu']
9
+ spec.email = ['organicdarius@gmail.com']
10
+
11
+ spec.summary = 'Hairy rails twin'
12
+ spec.description = 'A more down to earth, hairy rails twin'
13
+ spec.homepage = 'https://i.etsystatic.com/13348558/r/il/a29ab1/2918306283/il_570xN.2918306283_ojql.jpg'
14
+ spec.license = 'MIT'
15
+ spec.required_ruby_version = '>= 2.6.0'
16
+
17
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org/'
18
+
19
+ spec.metadata['homepage_uri'] = spec.homepage
20
+ spec.metadata['source_code_uri'] = 'https://github.com/DariusPirvulescu/feet'
21
+ spec.metadata['changelog_uri'] = 'https://github.com/DariusPirvulescu/feet/pulls?q=is%3Apr+is%3Aclosed'
22
+
23
+ # Specify which files should be added to the gem when it is released.
24
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
26
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
27
+ end
28
+ spec.bindir = 'exe'
29
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ['lib']
31
+
32
+ # Uncomment to register a new dependency of your gem
33
+ # spec.add_dependency 'example-gem', '~> 1.0'
34
+
35
+ spec.add_runtime_dependency 'erubis'
36
+ spec.add_runtime_dependency 'multi_json'
37
+ spec.add_runtime_dependency 'rack', '~>2.2'
38
+ spec.add_runtime_dependency 'sqlite3'
39
+
40
+ spec.add_development_dependency 'minitest'
41
+ spec.add_development_dependency 'pry-byebug'
42
+ spec.add_development_dependency 'rack-test'
43
+
44
+ # For more information and examples about making a new gem, check out our
45
+ # guide at: https://bundler.io/guides/creating_gem.html
46
+ end
data/lib/feet/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Feet
4
- VERSION = '0.0.91'
4
+ VERSION = '0.1.1'
5
5
  end
data/public/cover.png ADDED
Binary file
data/public/index.html ADDED
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Immanuel Kan</title>
8
+ </head>
9
+ <body>
10
+ <h1>Ruby on Feet</h1>
11
+ <h2>Welcome</h2>
12
+ </body>
13
+ </html>
data/sig/feet.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Feet
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: feet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.91
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Darius Pirvulescu
@@ -115,10 +115,16 @@ executables: []
115
115
  extensions: []
116
116
  extra_rdoc_files: []
117
117
  files:
118
+ - ".gitignore"
118
119
  - CHANGELOG.md
120
+ - Gemfile
121
+ - Gemfile.lock
122
+ - LICENSE.txt
119
123
  - README.md
124
+ - Rakefile
120
125
  - bin/console
121
126
  - bin/setup
127
+ - feet.gemspec
122
128
  - lib/feet.rb
123
129
  - lib/feet/array.rb
124
130
  - lib/feet/controller.rb
@@ -129,6 +135,9 @@ files:
129
135
  - lib/feet/utils.rb
130
136
  - lib/feet/version.rb
131
137
  - lib/feet/view.rb
138
+ - public/cover.png
139
+ - public/index.html
140
+ - sig/feet.rbs
132
141
  homepage: https://i.etsystatic.com/13348558/r/il/a29ab1/2918306283/il_570xN.2918306283_ojql.jpg
133
142
  licenses:
134
143
  - MIT