dev_orbit 0.1.2 → 0.1.3

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: '07219661dd60fcc93ef1d66943b44c927b7ee25c126dcdf8cabc64d463ea5331'
4
- data.tar.gz: 45171eb10c22b690802bf6497fcf9db18165b506a7767451b0a89705a6b421db
3
+ metadata.gz: 1cf2cb11061773667c041e7d8110d0d80526f40fdb7451d6ae2d05a8b526a530
4
+ data.tar.gz: 2d8744c9b9649c84891f0e44b10c78e3476b5bc92085574918bf923dc7430c39
5
5
  SHA512:
6
- metadata.gz: 01d5109a441e6c85244f5dfbcefc4010d29380b21924f84cab2f70b30389e638cbd2f6a081697a6adfe06a48476a190f24a93e49b6c4536057f74b7cb99547aa
7
- data.tar.gz: 120224d240169f093e7f3152db9ba9673b7290bb44944f00e59c5c7f8cd6aadfbff2acef3aa5fabeadde05e89ccc557c84ce436b46f0aba32cf7504143840125
6
+ metadata.gz: a320ab09b535655f3f6fca9a54e59d35405f749b33fb483f926321f1493b6f9b845a62afc621f683bba7709b1fa681d6350f01d814ab6d8f968271d8967ef6a6
7
+ data.tar.gz: 24c6cde04ef951e77be279d890a98794fb16a735a2920338f8425192af3a47f07a4de58b8cf6da2237fec7ff2c5bcdc2e95469e6318e0265cddf42be99233b03
data/.gitignore CHANGED
@@ -6,4 +6,5 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
- .byebug_history
9
+ .byebug_history
10
+ .env
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dev_orbit (0.1.0)
4
+ dev_orbit (0.1.2)
5
5
  actionview (~> 6.1)
6
6
  activesupport (~> 6.1)
7
7
  http (~> 4.4)
@@ -61,10 +61,6 @@ GEM
61
61
  minitest (5.14.4)
62
62
  nokogiri (1.11.3-arm64-darwin)
63
63
  racc (~> 1.4)
64
- nokogiri (1.11.3-x86_64-darwin)
65
- racc (~> 1.4)
66
- nokogiri (1.11.2-x86_64-linux)
67
- racc (~> 1.4)
68
64
  parallel (1.20.1)
69
65
  parser (3.0.0.0)
70
66
  ast (~> 2.4.1)
data/lib/dev_orbit.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "zeitwerk"
4
+ require_relative "dev_orbit/version"
4
5
 
5
6
  module DevOrbit
6
7
  loader = Zeitwerk::Loader.new
@@ -30,6 +30,7 @@ module DevOrbit
30
30
  req["Accept"] = "application/json"
31
31
  req["Content-Type"] = "application/json"
32
32
  req["Authorization"] = "Bearer #{@api_key}"
33
+ req["User-Agent"] = "community-ruby-dev-orbit/#{DevOrbit::VERSION}"
33
34
 
34
35
  req.body = construct_body
35
36
 
@@ -28,6 +28,7 @@ module DevOrbit
28
28
  req["Accept"] = "application/json"
29
29
  req["Content-Type"] = "application/json"
30
30
  req["Authorization"] = "Bearer #{@api_key}"
31
+ req["User-Agent"] = "community-ruby-dev-orbit/#{DevOrbit::VERSION}"
31
32
 
32
33
  req.body = construct_body
33
34
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DevOrbit
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev_orbit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Orbit DevRel