We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a6eb007 + cb981fd commit ccb2218Copy full SHA for ccb2218
lib/linkedin_orbit.rb
@@ -1,6 +1,7 @@
1
# frozen_string_literal: true
2
3
require "zeitwerk"
4
+require_relative "linkedin_orbit/version"
5
6
module LinkedinOrbit
7
loader = Zeitwerk::Loader.new
lib/linkedin_orbit/interactions/comment.rb
@@ -25,6 +25,7 @@ def after_initialize!
25
request["Accept"] = "application/json"
26
request["Content-Type"] = "application/json"
27
request["Authorization"] = "Bearer #{@orbit_api_key}"
28
+ request["User-Agent"] = "community-ruby-linkedin-orbit/#{LinkedinOrbit::VERSION}"
29
30
request.body = construct_body.to_json
31
lib/linkedin_orbit/version.rb
@@ -1,5 +1,5 @@
- VERSION = "0.1.1"
+ VERSION = "0.1.2"
end
0 commit comments