├── .DS_Store ├── .travis ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── README ├── Rakefile ├── bin └── syslog-shipper ├── features └── client.feature ├── lib ├── syslog_shipper.rb └── syslog_shipper │ ├── client.rb │ └── tls_wrapper.rb ├── spec ├── client_spec.rb └── spec_helper.rb ├── syslog-shipper.gemspec └── test_certs ├── ca.crt ├── server.crt ├── server.csr └── server.key /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/.DS_Store -------------------------------------------------------------------------------- /.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/.travis -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/README -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/syslog-shipper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/bin/syslog-shipper -------------------------------------------------------------------------------- /features/client.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/features/client.feature -------------------------------------------------------------------------------- /lib/syslog_shipper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/lib/syslog_shipper.rb -------------------------------------------------------------------------------- /lib/syslog_shipper/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/lib/syslog_shipper/client.rb -------------------------------------------------------------------------------- /lib/syslog_shipper/tls_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/lib/syslog_shipper/tls_wrapper.rb -------------------------------------------------------------------------------- /spec/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/spec/client_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'syslog_shipper' -------------------------------------------------------------------------------- /syslog-shipper.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/syslog-shipper.gemspec -------------------------------------------------------------------------------- /test_certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/test_certs/ca.crt -------------------------------------------------------------------------------- /test_certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/test_certs/server.crt -------------------------------------------------------------------------------- /test_certs/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/test_certs/server.csr -------------------------------------------------------------------------------- /test_certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordansissel/syslog-shipper/HEAD/test_certs/server.key --------------------------------------------------------------------------------