├── .github └── workflows │ └── standardrb.yaml ├── .gitignore ├── .ruby-version ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── examples ├── find-users.rb └── shifts-with-incidents-and-log-entries.rb ├── lib ├── pager_duty-connection.rb ├── pager_duty.rb └── pager_duty │ ├── connection.rb │ └── connection │ └── version.rb └── pager_duty-connection.gemspec /.github/workflows/standardrb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/.github/workflows/standardrb.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /examples/find-users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/examples/find-users.rb -------------------------------------------------------------------------------- /examples/shifts-with-incidents-and-log-entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/examples/shifts-with-incidents-and-log-entries.rb -------------------------------------------------------------------------------- /lib/pager_duty-connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/lib/pager_duty-connection.rb -------------------------------------------------------------------------------- /lib/pager_duty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/lib/pager_duty.rb -------------------------------------------------------------------------------- /lib/pager_duty/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/lib/pager_duty/connection.rb -------------------------------------------------------------------------------- /lib/pager_duty/connection/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/lib/pager_duty/connection/version.rb -------------------------------------------------------------------------------- /pager_duty-connection.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/pager_duty-connection/HEAD/pager_duty-connection.gemspec --------------------------------------------------------------------------------