├── .fixtures.yml ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Modulefile ├── README.md ├── Rakefile ├── lib └── puppet │ └── reports │ └── irc.rb ├── manifests ├── init.pp └── params.pp ├── spec ├── classes │ └── irc_spec.rb └── spec_helper.rb └── templates └── irc.yaml.erb /.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/.fixtures.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | pkg/* 3 | .ruby-* 4 | spec/fixtures 5 | *.swp 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/LICENSE -------------------------------------------------------------------------------- /Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/Modulefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/puppet/reports/irc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/lib/puppet/reports/irc.rb -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /spec/classes/irc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/spec/classes/irc_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/irc.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-irc/HEAD/templates/irc.yaml.erb --------------------------------------------------------------------------------