├── .gitignore ├── CONTRIBUTORS.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── capistrano-newrelic.gemspec └── lib ├── capistrano-newrelic.rb └── capistrano ├── newrelic.rb ├── newrelic └── version.rb └── tasks └── newrelic.rake /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/capistrano-newrelic/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/capistrano-newrelic/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/capistrano-newrelic/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/capistrano-newrelic/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/capistrano-newrelic/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /capistrano-newrelic.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/capistrano-newrelic/HEAD/capistrano-newrelic.gemspec -------------------------------------------------------------------------------- /lib/capistrano-newrelic.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/capistrano/newrelic.rb: -------------------------------------------------------------------------------- 1 | load File.expand_path("../tasks/newrelic.rake", __FILE__) 2 | -------------------------------------------------------------------------------- /lib/capistrano/newrelic/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/capistrano-newrelic/HEAD/lib/capistrano/newrelic/version.rb -------------------------------------------------------------------------------- /lib/capistrano/tasks/newrelic.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/capistrano-newrelic/HEAD/lib/capistrano/tasks/newrelic.rake --------------------------------------------------------------------------------