rundeck-ruby
rundeck-ruby copied to clipboard
Site link seems broken
Hi, The link to http://blessing.io/rundeck-ruby/ seems broken
almost 1 year, still down? No update since 2 years? Bad signs :(
This projects is dead :-)
Yes, I don't use Rundeck anymore. If anyone is interested in taking maintainership, let me know. On Thu, Feb 9, 2017 at 5:49 AM Sven Nebel [email protected] wrote:
This projects is dead :-)
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/dblessing/rundeck-ruby/issues/38#issuecomment-278620293, or mute the thread https://github.com/notifications/unsubscribe-auth/ACSKlOt4_o0A9YC2Vo8K4psJMf4HXvqhks5rav0xgaJpZM4IEoNi .
@dblessing if you give documentation files, i will move it to wiki section and can update this
Although I completely respect your choice to discontinue updates and support of this gem, I would be thrilled if you took just a few more minutes to put usage examples online somewhere (looks like they had been up on blessing.io but the links are 404 now). Thank you for your contributions to the community! All the best. -steve
OK, so I stopped being lazy and started reading the code. For those who might find this later on and want just a tad bit of help getting started with this gem (which works nicely, I might add), please see below:
#!/usr/bin/env ruby
require 'rundeck'
options = { :endpoint => 'https://rundeck-server-name-here.com:443', :api_token => 'api-key-string-here' }
rd = Rundeck::Client.new(options)
# i have a self-signed cert, so lets not complain
ssl_verify = {:verify => false}
projects = rd.projects(ssl_verify)
puts projects.to_hash
project = rd.project('project-name-here', ssl_verify)
puts project.to_hash
jobs = rd.jobs('project-name-here', ssl_verify)
jobs.to_hash.each do |job|
puts job
end
Why not fork it, and keep it updated?
the orginal author offered to give maintainers access to the repo, to me that sounds better
I’m not using/working with rundck anymore ;-)
@clayvan the parameter that is being passed is actually :verify (ssl_verify was my name of the variable), and is due to the fact that this rundeck gem uses httparty as its underlying framework. The httparty docs refer to the parameter here:
https://github.com/jnunemaker/httparty/tree/master/docs
On Thu, Mar 1, 2018 at 11:04 AM, clayvan [email protected] wrote:
@cixelsyd https://github.com/cixelsyd What made you pass in ssl_verify as an option? I don't see that as a parameter in the docs. http://rundeck.org/docs/api/
I'm working on a PR to uplift this gem to API v18 currently.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/dblessing/rundeck-ruby/issues/38#issuecomment-369640057, or mute the thread https://github.com/notifications/unsubscribe-auth/AAn9ZIpFcfxJdnY_TjlArdgje8NLwQx9ks5taBwmgaJpZM4IEoNi .
-- http://linkedin.com/in/cixelsydego
(508) 372-0005 (cell)