├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── capistrano-logrotate.gemspec ├── lib ├── capistrano-logrotate.rb └── capistrano │ ├── logrotate.rb │ ├── logrotate │ └── version.rb │ ├── tasks │ └── logrotate.rake │ └── templates │ └── logrotate.erb └── test ├── capistrano └── logrotate_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/bin/setup -------------------------------------------------------------------------------- /capistrano-logrotate.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/capistrano-logrotate.gemspec -------------------------------------------------------------------------------- /lib/capistrano-logrotate.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/capistrano/logrotate.rb: -------------------------------------------------------------------------------- 1 | load File.expand_path('../tasks/logrotate.rake', __FILE__) 2 | -------------------------------------------------------------------------------- /lib/capistrano/logrotate/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/lib/capistrano/logrotate/version.rb -------------------------------------------------------------------------------- /lib/capistrano/tasks/logrotate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/lib/capistrano/tasks/logrotate.rake -------------------------------------------------------------------------------- /lib/capistrano/templates/logrotate.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/lib/capistrano/templates/logrotate.erb -------------------------------------------------------------------------------- /test/capistrano/logrotate_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/test/capistrano/logrotate_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linjunpop/capistrano-logrotate/HEAD/test/test_helper.rb --------------------------------------------------------------------------------