├── .gitignore ├── CHANGELOG ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README-old.rdoc ├── README.md ├── Rakefile ├── VERSION ├── lib ├── active_resource_associations.rb ├── new_relic_api.rb └── newrelic_api.rb ├── newrelic_api.gemspec └── test ├── integration └── newrelic_api_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README-old.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/README-old.rdoc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.2.4 -------------------------------------------------------------------------------- /lib/active_resource_associations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/lib/active_resource_associations.rb -------------------------------------------------------------------------------- /lib/new_relic_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/lib/new_relic_api.rb -------------------------------------------------------------------------------- /lib/newrelic_api.rb: -------------------------------------------------------------------------------- 1 | require 'new_relic_api' -------------------------------------------------------------------------------- /newrelic_api.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/newrelic_api.gemspec -------------------------------------------------------------------------------- /test/integration/newrelic_api_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/test/integration/newrelic_api_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic_api/HEAD/test/test_helper.rb --------------------------------------------------------------------------------