rundeck-ruby icon indicating copy to clipboard operation
rundeck-ruby copied to clipboard

Site link seems broken

Open snebel29 opened this issue 9 years ago • 9 comments

Hi, The link to http://blessing.io/rundeck-ruby/ seems broken

snebel29 avatar Apr 11 '16 17:04 snebel29

almost 1 year, still down? No update since 2 years? Bad signs :(

MichaelSp avatar Feb 06 '17 08:02 MichaelSp

This projects is dead :-)

snebel29 avatar Feb 09 '17 11:02 snebel29

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 avatar Feb 09 '17 12:02 dblessing

@dblessing if you give documentation files, i will move it to wiki section and can update this

haseebeqx avatar Jul 04 '17 11:07 haseebeqx

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

cixelsyd avatar Jul 26 '17 23:07 cixelsyd

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

cixelsyd avatar Jul 27 '17 00:07 cixelsyd

Why not fork it, and keep it updated?

FilBot3 avatar Jan 05 '18 22:01 FilBot3

the orginal author offered to give maintainers access to the repo, to me that sounds better

I’m not using/working with rundck anymore ;-)

snebel29 avatar Jan 06 '18 06:01 snebel29

@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)

cixelsyd avatar Mar 01 '18 19:03 cixelsyd