proxly 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 43d5f0b42ee8fc59cb01c6837d00fa4906e9a9b3e21e52c54aecb6f95d0b597c
4
+ data.tar.gz: 67c485e36e867a9c6d3b713191112bce499e74fa9f96ffa24dbc2301721b233f
5
+ SHA512:
6
+ metadata.gz: ae2b667b4603079ff72b861ede64d6e48b7bf33858b1adb22b514b55280444ccacf88e6c537f5af6e4f9ae4b7aa597cd92aaac768537e557115ac6cbcd325e62
7
+ data.tar.gz: 1614686610a48c828c623c554758cca2c0cf0d20ae2170be313c2451b3d5ee61641fe368a52999d15cb0cef5b4acef50d39c1920d0f4e11e7f25ce51863718cc
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2023 Mason Stallmo
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Proxly
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem "proxly"
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install proxly
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require "bundler/setup"
2
+
3
+ require "bundler/gem_tasks"
@@ -0,0 +1,4 @@
1
+ module Proxly
2
+ class Railtie < ::Rails::Railtie
3
+ end
4
+ end
@@ -0,0 +1,23 @@
1
+ module Proxly
2
+ class TagHelper
3
+ extend ActionView::Helpers::AssetTagHelper
4
+
5
+ def self.javascript_include_tag(*sources)
6
+ if Proxly.host
7
+ sources.last[:host] = Proxly.host
8
+ sources.last[:protocol] = Proxly.protocol
9
+ end
10
+
11
+ super(*sources)
12
+ end
13
+
14
+ def self.stylesheet_link_tag(*sources)
15
+ if Proxly.host
16
+ sources.last[:host] = Proxly.host
17
+ sources.last[:protocol] = Proxly.protocol
18
+ end
19
+
20
+ super(*sources)
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,3 @@
1
+ module Proxly
2
+ VERSION = "0.1.0"
3
+ end
data/lib/proxly.rb ADDED
@@ -0,0 +1,12 @@
1
+ require "proxly/version"
2
+ require "proxly/railtie"
3
+ require "proxly/tag_helper"
4
+
5
+ module Proxly
6
+ mattr_accessor :host
7
+ mattr_accessor :protocol, default: "https"
8
+
9
+ def self.setup
10
+ yield self
11
+ end
12
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :proxly do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,157 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: proxly
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Mason Stallmo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-03-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '7.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 7.0.4.3
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '7.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 7.0.4.3
33
+ - !ruby/object:Gem::Dependency
34
+ name: rspec-rails
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '6.0'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 6.0.1
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '6.0'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 6.0.1
53
+ - !ruby/object:Gem::Dependency
54
+ name: standard
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '1.25'
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 1.25.1
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '1.25'
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 1.25.1
73
+ - !ruby/object:Gem::Dependency
74
+ name: rubocop-rails
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '2.18'
80
+ type: :development
81
+ prerelease: false
82
+ version_requirements: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: '2.18'
87
+ - !ruby/object:Gem::Dependency
88
+ name: rubocop-rspec
89
+ requirement: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - "~>"
92
+ - !ruby/object:Gem::Version
93
+ version: '2.19'
94
+ type: :development
95
+ prerelease: false
96
+ version_requirements: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - "~>"
99
+ - !ruby/object:Gem::Version
100
+ version: '2.19'
101
+ - !ruby/object:Gem::Dependency
102
+ name: rubocop-config-prettier
103
+ requirement: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - "~>"
106
+ - !ruby/object:Gem::Version
107
+ version: 0.1.13
108
+ type: :development
109
+ prerelease: false
110
+ version_requirements: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - "~>"
113
+ - !ruby/object:Gem::Version
114
+ version: 0.1.13
115
+ description: Easily serve JS and CSS using javascript_link_tag and stylesheet_link_tag
116
+ over a ngrok proxy or Cloudflare tunnel
117
+ email:
118
+ - masonstallmo@hey.com
119
+ executables: []
120
+ extensions: []
121
+ extra_rdoc_files: []
122
+ files:
123
+ - MIT-LICENSE
124
+ - README.md
125
+ - Rakefile
126
+ - lib/proxly.rb
127
+ - lib/proxly/railtie.rb
128
+ - lib/proxly/tag_helper.rb
129
+ - lib/proxly/version.rb
130
+ - lib/tasks/proxly_tasks.rake
131
+ homepage: https://github.com/mstallmo/proxly
132
+ licenses:
133
+ - MIT
134
+ metadata:
135
+ homepage_uri: https://github.com/mstallmo/proxly
136
+ source_code_uri: https://github.com/mstallmo/proxly
137
+ changelog_uri: https://github.com/mstallmo/proxly/blob/main/CHANGELOG.md
138
+ post_install_message:
139
+ rdoc_options: []
140
+ require_paths:
141
+ - lib
142
+ required_ruby_version: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ version: '0'
147
+ required_rubygems_version: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - ">="
150
+ - !ruby/object:Gem::Version
151
+ version: '0'
152
+ requirements: []
153
+ rubygems_version: 3.3.3
154
+ signing_key:
155
+ specification_version: 4
156
+ summary: Serve your JS and CSS from a local server over a proxied connection
157
+ test_files: []