Skip to content

Commit

Permalink
Merge pull request #5 from orbit-love/update-gem
Browse files Browse the repository at this point in the history
Update orbit_activities gem dependency
  • Loading branch information
hummusonrails authored May 24, 2021
2 parents 6e31ffd + e520958 commit 3fd3ef7
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
PATH
remote: .
specs:
pipedrive_orbit (0.0.2)
pipedrive_orbit (0.0.3)
activesupport (~> 6.1)
dotenv (~> 2.7)
http (~> 4.4)
json (~> 2.5)
orbit_activities (~> 0.0.2)
orbit_activities (~> 0.1)
thor (~> 1.1)
zeitwerk (~> 2.4)

Expand All @@ -30,7 +30,7 @@ GEM
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
dotenv (2.7.6)
ffi (1.15.0)
ffi (1.15.1)
ffi-compiler (1.0.1)
ffi (>= 1.0.0)
rake
Expand All @@ -49,7 +49,7 @@ GEM
concurrent-ruby (~> 1.0)
json (2.5.1)
minitest (5.14.4)
orbit_activities (0.0.2)
orbit_activities (0.1.0)
http (~> 4.4)
json (~> 2.5)
rake (~> 13.0)
Expand Down
1 change: 1 addition & 0 deletions lib/pipedrive_orbit/interactions/activity.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def after_initialize!
api_key: @orbit_api_key,
workspace_id: @orbit_workspace,
user_agent: "community-ruby-pipedrive-orbit/#{PipedriveOrbit::VERSION}",
action: "new_activity",
body: construct_body.to_json
)
end
Expand Down
1 change: 1 addition & 0 deletions lib/pipedrive_orbit/interactions/note.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def after_initialize!
api_key: @orbit_api_key,
workspace_id: @orbit_workspace,
user_agent: "community-ruby-pipedrive-orbit/#{PipedriveOrbit::VERSION}",
action: "new_activity",
body: construct_body.to_json
)
end
Expand Down
1 change: 1 addition & 0 deletions lib/pipedrive_orbit/interactions/person_note.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def after_initialize!
api_key: @orbit_api_key,
workspace_id: @orbit_workspace,
user_agent: "community-ruby-pipedrive-orbit/#{PipedriveOrbit::VERSION}",
action: "new_activity",
body: construct_body.to_json
)
end
Expand Down
2 changes: 1 addition & 1 deletion lib/pipedrive_orbit/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal = true

module PipedriveOrbit
VERSION = "0.0.3"
VERSION = "0.0.4"
end
2 changes: 1 addition & 1 deletion pipedrive_orbit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "zeitwerk", "~> 2.4"
spec.add_dependency "thor", "~> 1.1"
spec.add_dependency "dotenv", "~> 2.7"
spec.add_dependency "orbit_activities", "~> 0.0.2"
spec.add_dependency "orbit_activities", "~> 0.1"
spec.add_development_dependency "rspec", "~> 3.4"
spec.add_development_dependency "webmock", "~> 3.12"
end

0 comments on commit 3fd3ef7

Please sign in to comment.