Skip to content

bavmind/ruby_now

Repository files navigation

RubyNow

RubyNow is a Ruby wrapper for interacting with the ServiceNow API. It simplifies the process of making GET, POST, and PATCH requests to ServiceNow instances, handling authentication and response parsing seamlessly. This gem is designed to be easy to use for Ruby developers looking to integrate ServiceNow functionalities into their applications.

Installation

Add this line to your application's Gemfile:

gem 'ruby_now'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install ruby_now

Usage

To start using the RubyNow, you need to require it in your Ruby application and configure it with your ServiceNow instance details.

Configuration

Initialize a client with your ServiceNow instance's host, user, and password:

require 'ruby_now'

client = RubyNow::Client.new('your-instance.service-now.com', 'username', 'password')

Making Requests

You can make GET, POST, and PATCH requests to your ServiceNow instance using the client.

GET Request

response = client.get('api/endpoint')

POST Request

response = client.post('api/endpoint', { key: 'value' })

PATCH Request

response = client.patch('api/endpoint', { key: 'new_value' })

Error Handling

Handle any potential errors during API calls:

begin
  response = client.get('api/endpoint')
rescue RestClient::ExceptionWithResponse => e
  puts "An error occurred: #{e.message}"
end

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/bavmind/ruby_now. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the RubyNow project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the code of conduct.