iori 0.1.1 → 0.1.2

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: 03324535e66b4d9c1c9b82d60c97f3325e25a8b333bd8f74ec7212d4adc5f173
4
- data.tar.gz: ec88fe75389345dd8eb45ac09617bfc4dd86910d9e98d1d0bf885d6c4c5695aa
3
+ metadata.gz: 95da1942e70554c1065aeafdd38313365a170533f67be8e7dd6068f481013d4d
4
+ data.tar.gz: 557fc3c25dd6f18bfc34a1b247cb63ca4d93581739741ef0897adc1b414f02e8
5
5
  SHA512:
6
- metadata.gz: '009a7de08589b591cb1b26dbf2796a4cde63a0ab0c93acafa40edc6ba7f1ec89da67a1aaf209d61375a4e8957358f6bf8734e4bad30b1c43cd7b679a659c2314'
7
- data.tar.gz: 3016c3b33052f46447b697587054dafb8eab1189356cb780abd28c386528021bff19f4da2501445686c27520a8915a2f804fdb7dbab1650698fab4796347c42f
6
+ metadata.gz: '08ce09344397c7948adf891773cde597ac03058e337462c89b209c737b8ede4f2d42fe9f203bb5da00df65573d1fe560daa6e7d17cb9e5b633b001843137a348'
7
+ data.tar.gz: 37cc5e0d29685fee3faf7ae5a2dacae5b95dd47691450acd3a593ea715d716fb7561cde35961e998275bf8c3d7a5648256845fb450e4cfdf30645c9a0f1f0681
@@ -0,0 +1,39 @@
1
+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2
+ // https://github.com/microsoft/vscode-dev-containers/tree/v0.231.3/containers/docker-existing-docker-compose
3
+ // If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
4
+ {
5
+ "name": "Existing Docker Compose (Extend)",
6
+
7
+ // Update the 'dockerComposeFile' list if you have more compose files or use different names.
8
+ // The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
9
+ "dockerComposeFile": ["../compose.yaml", "docker-compose.yml"],
10
+
11
+ // The 'service' property is the name of the service for the container that VS Code should
12
+ // use. Update this value and .devcontainer/docker-compose.yml to the real service name.
13
+ "service": "ruby",
14
+
15
+ // The optional 'workspaceFolder' property is the path VS Code should open by default when
16
+ // connected. This is typically a file mount in .devcontainer/docker-compose.yml
17
+ "workspaceFolder": "/workspace",
18
+
19
+ // Set *default* container specific settings.json values on container create.
20
+ "settings": {},
21
+
22
+ // Add the IDs of extensions you want installed when the container is created.
23
+ "extensions": ["soutaro.steep-vscode"]
24
+
25
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
26
+ // "forwardPorts": [],
27
+
28
+ // Uncomment the next line if you want start specific services in your Docker Compose config.
29
+ // "runServices": [],
30
+
31
+ // Uncomment the next line if you want to keep your containers running after VS Code shuts down.
32
+ // "shutdownAction": "none",
33
+
34
+ // Uncomment the next line to run commands after the container is created - for example installing curl.
35
+ // "postCreateCommand": "apt-get update && apt-get install -y curl",
36
+
37
+ // Uncomment to connect as a non-root user if you've added one. See https://aka.ms/vscode-remote/containers/non-root.
38
+ // "remoteUser": "vscode"
39
+ }
@@ -0,0 +1,38 @@
1
+ version: '3.8'
2
+ services:
3
+ # Update this to the name of the service you want to work with in your docker-compose.yml file
4
+ ruby:
5
+ # If you want add a non-root user to your Dockerfile, you can use the "remoteUser"
6
+ # property in devcontainer.json to cause VS Code its sub-processes (terminals, tasks,
7
+ # debugging) to execute as the user. Uncomment the next line if you want the entire
8
+ # container to run as this user instead. Note that, on Linux, you may need to
9
+ # ensure the UID and GID of the container user you create matches your local user.
10
+ # See https://aka.ms/vscode-remote/containers/non-root for details.
11
+ #
12
+ # user: vscode
13
+
14
+ # Uncomment if you want to override the service's Dockerfile to one in the .devcontainer
15
+ # folder. Note that the path of the Dockerfile and context is relative to the *primary*
16
+ # docker-compose.yml file (the first in the devcontainer.json "dockerComposeFile"
17
+ # array). The sample below assumes your primary file is in the root of your project.
18
+ #
19
+ # build:
20
+ # context: .
21
+ # dockerfile: .devcontainer/Dockerfile
22
+
23
+ volumes:
24
+ # Update this to wherever you want VS Code to mount the folder of your project
25
+ - .:/workspace:cached
26
+
27
+ # Uncomment the next line to use Docker from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker-compose for details.
28
+ # - /var/run/docker.sock:/var/run/docker.sock
29
+
30
+ # Uncomment the next four lines if you will use a ptrace-based debugger like C++, Go, and Rust.
31
+ # cap_add:
32
+ # - SYS_PTRACE
33
+ # security_opt:
34
+ # - seccomp:unconfined
35
+
36
+ # Overrides default command so things don't shut down after the process ends.
37
+ command: /bin/sh -c "while sleep 1000; do :; done"
38
+
data/.gitignore CHANGED
@@ -11,3 +11,5 @@
11
11
  .rspec_status
12
12
 
13
13
  /Gemfile.lock
14
+
15
+ /compose.override.yaml
data/Gemfile CHANGED
@@ -14,3 +14,5 @@ gem 'rubocop', '~> 1.7'
14
14
  gem 'rubocop-rake', '~> 0.6.0'
15
15
 
16
16
  gem 'rubocop-rspec', '~> 2.9'
17
+
18
+ gem "steep", "~> 0.52.0"
data/Steepfile ADDED
@@ -0,0 +1,5 @@
1
+ target :lib do
2
+ signature "sig"
3
+
4
+ check "lib"
5
+ end
@@ -3,10 +3,8 @@ services:
3
3
  image: ruby
4
4
  volumes:
5
5
  - .:/workspace
6
- - gem-credentials-data:/root/.local/share/gem
7
6
  - gem-data:/usr/local/bundle
8
7
  working_dir: /workspace
9
8
 
10
9
  volumes:
11
- gem-credentials-data:
12
10
  gem-data:
data/lib/iori/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Iori
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
@@ -0,0 +1,7 @@
1
+ # TypeProf 0.21.2
2
+
3
+ # Classes
4
+ module Iori
5
+ class Railtie < Rails::Railtie
6
+ end
7
+ end
@@ -0,0 +1,6 @@
1
+ # TypeProf 0.21.2
2
+
3
+ # Classes
4
+ module Iori
5
+ VERSION: String
6
+ end
data/sig/patch.rbs ADDED
@@ -0,0 +1,7 @@
1
+ module Rails
2
+ def self.env: -> untyped
3
+
4
+ class Railtie
5
+ def self.config: -> untyped
6
+ end
7
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iori
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - MoguraStore
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-30 00:00:00.000000000 Z
11
+ date: 2022-04-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Configure rails config easily.
14
14
  email:
@@ -17,6 +17,8 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - ".devcontainer/devcontainer.json"
21
+ - ".devcontainer/docker-compose.yml"
20
22
  - ".gitignore"
21
23
  - ".rspec"
22
24
  - ".rubocop.yml"
@@ -24,13 +26,17 @@ files:
24
26
  - LICENSE.txt
25
27
  - README.md
26
28
  - Rakefile
29
+ - Steepfile
27
30
  - bin/console
28
31
  - bin/setup
29
- - compose.yml
32
+ - compose.yaml
30
33
  - iori.gemspec
31
34
  - lib/iori.rb
32
35
  - lib/iori/railtie.rb
33
36
  - lib/iori/version.rb
37
+ - sig/iori/railtie.rbs
38
+ - sig/iori/version.rbs
39
+ - sig/patch.rbs
34
40
  homepage: https://github.com/mogurastore/iori
35
41
  licenses:
36
42
  - MIT
@@ -53,7 +59,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
59
  - !ruby/object:Gem::Version
54
60
  version: '0'
55
61
  requirements: []
56
- rubygems_version: 3.2.22
62
+ rubygems_version: 3.3.7
57
63
  signing_key:
58
64
  specification_version: 4
59
65
  summary: Configure rails config easily.