Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-08-07 | Keep config as Oxidized::Config instead of hash | Saku Ytti | |
The model will look like this: cmd 'show ip cef' do |out| out.type = 'poop' out end cmd 'show process cpu' do |out| out.type = 'poop' out end cmd 'show memory statistics' do |out| out.type = 'poop' out end I think it's cleaner. | |||
2014-07-21 | make convenience methods usable | Saku Ytti | |
2014-04-16 | remove web API | Saku Ytti | |
It is now separately in oxidized-web package | |||
2014-04-15 | Use String subclass in model#cmd | Saku Ytti | |
Will allow convenience methods such as cmd :all do |cfg| cfg.pop.shift end instead of: cmd :all do |cfg| cfg.each_line.to_a[1..-2].join end And what ever convenience configs we come up with |