typhoon 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: d71c3317896f12ca61afe7fe6f9b04cb0a687dd9726f0317950a4715219080cd
4
- data.tar.gz: b228e11b5b4d3eb6b5d619b470f15baaabd2645f23ee95d894f8e26e43220427
3
+ metadata.gz: be88ca4a1ea05693fee0e91667279902ebc3d0534e7abbc6407a7e229c5d98b7
4
+ data.tar.gz: fef24634ae6ec846831e53eda7bf3e350082beee232f401d0b860f5f11e65ff6
5
5
  SHA512:
6
- metadata.gz: 6b6167dde99374d1d303af7085bb03f7ceace78b42a664ccd992fdd37e763b99c00f19c03122f968dd842acf0d4605043963f6f27b563300288fc3aaa975e625
7
- data.tar.gz: c3bfe35a2bee003c7f5305922f082f72e85f96ee7ac1eb9ee0d697f4131c59e572c95cbc8859da567e4eff8b3f646f699518d895387cadfbb20098f161a3e311
6
+ metadata.gz: 1d5e40baaab134e8a321b35f63c8e47974f42a83221eafb23ed89e63eda215202bf57a9fa235878f8789efdc79d4b395b2680ab3cd12cda58827a2d0bf7af0c1
7
+ data.tar.gz: 5e77baec09e5d2df37fbb874585d7f7bb698907395ebf5a445435f1d80fcd59a6eb58ce418f410e7e35c71925467ec946b8a0773574b807a7c552e927199babe
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Typhoon
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typhoon
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
  - Gary Tou
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2022-12-06 00:00:00.000000000 Z
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '7.0'
19
+ version: '6.0'
20
20
  type: :runtime
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: '7.0'
26
+ version: '6.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -75,7 +75,6 @@ files:
75
75
  - lib/typhoon/version.rb
76
76
  - sig/typhoon.rbs
77
77
  - terms.md
78
- - typhoon.gemspec
79
78
  homepage: https://github.com/garyhtou/typhoon
80
79
  licenses:
81
80
  - MIT
@@ -83,7 +82,7 @@ metadata:
83
82
  homepage_uri: https://github.com/garyhtou/typhoon
84
83
  source_code_uri: https://github.com/garyhtou/typhoon
85
84
  changelog_uri: https://github.com/garyhtou/typhoon
86
- post_install_message:
85
+ post_install_message:
87
86
  rdoc_options: []
88
87
  require_paths:
89
88
  - lib
@@ -99,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
98
  version: '0'
100
99
  requirements: []
101
100
  rubygems_version: 3.3.7
102
- signing_key:
101
+ signing_key:
103
102
  specification_version: 4
104
103
  summary: An inclement tunnel through the clouds
105
104
  test_files: []
data/typhoon.gemspec DELETED
@@ -1,40 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/typhoon/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "typhoon"
7
- spec.version = Typhoon::VERSION
8
- spec.authors = ["Gary Tou"]
9
- spec.email = ["gary@garytou.com"]
10
-
11
- spec.summary = "An inclement tunnel through the clouds"
12
- spec.description = "Expose your local development servers with the help of a typhoon (via cloudflared tunnels)"
13
- spec.homepage = "https://github.com/garyhtou/typhoon"
14
- spec.license = "MIT"
15
- spec.required_ruby_version = ">= 2.6.0"
16
-
17
- spec.metadata["homepage_uri"] = spec.homepage
18
- spec.metadata["source_code_uri"] = spec.homepage
19
- spec.metadata["changelog_uri"] = spec.homepage
20
-
21
- # Specify which files should be added to the gem when it is released.
22
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
- spec.files = Dir.chdir(__dir__) do
24
- `git ls-files -z`.split("\x0").reject do |f|
25
- (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
26
- end
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
- # Dependencies
33
- spec.add_runtime_dependency "activesupport", "~> 7.0"
34
-
35
- spec.add_development_dependency "rake", "~> 13.0"
36
- spec.add_development_dependency "rspec", "~> 3.0"
37
-
38
- # For more information and examples about making a new gem, check out our
39
- # guide at: https://bundler.io/guides/creating_gem.html
40
- end