heroku-api 0.1.8 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -21,6 +21,14 @@ task :cache, [:api_key] do |task, args|
21
21
  file.write(addons)
22
22
  end
23
23
 
24
+ app_name = "heroku-api-#{Time.now.to_i}"
25
+ app = heroku.post_app('name' => app_name)
26
+ features = Heroku::API::OkJson.encode(heroku.get_features(app_name).body)
27
+ File.open("#{File.dirname(__FILE__)}/lib/heroku/api/mock/cache/get_features.json", 'w') do |file|
28
+ file.write(features)
29
+ end
30
+ heroku.delete_app(app_name)
31
+
24
32
  user = heroku.get_user.body
25
33
  user["email"] = "user@example.com"
26
34
  user["id"] = "123456@users.heroku.com"
data/changelog.txt CHANGED
@@ -1,3 +1,9 @@
1
+ 0.2.0 05/23/2012
2
+ ================
3
+
4
+ fix mocks for stack requests
5
+ add features (labs) functionality
6
+
1
7
  0.1.8 05/21/2012
2
8
  ================
3
9
 
data/lib/heroku/api.rb CHANGED
@@ -1,8 +1,7 @@
1
1
  require "base64"
2
- require "cgi"
3
2
  require "excon"
4
3
  require "securerandom"
5
- require "stringio"
4
+ require "uri"
6
5
  require "zlib"
7
6
 
8
7
  __LIB_DIR__ = File.expand_path(File.join(File.dirname(__FILE__), ".."))
@@ -21,6 +20,7 @@ require "heroku/api/apps"
21
20
  require "heroku/api/collaborators"
22
21
  require "heroku/api/config_vars"
23
22
  require "heroku/api/domains"
23
+ require "heroku/api/features"
24
24
  require "heroku/api/keys"
25
25
  require "heroku/api/login"
26
26
  require "heroku/api/logs"
@@ -0,0 +1,45 @@
1
+ module Heroku
2
+ class API
3
+
4
+ # DELETE /features/:feature
5
+ def delete_feature(feature, app = nil)
6
+ request(
7
+ :expects => 200,
8
+ :method => :delete,
9
+ :path => "/features/#{feature}",
10
+ :query => { 'app' => app }
11
+ )
12
+ end
13
+
14
+ # GET /features
15
+ def get_features(app = nil)
16
+ request(
17
+ :expects => 200,
18
+ :method => :get,
19
+ :path => "/features",
20
+ :query => { 'app' => app }
21
+ )
22
+ end
23
+
24
+ # GET /features/:feature
25
+ def get_feature(feature, app = nil)
26
+ request(
27
+ :expects => 200,
28
+ :method => :get,
29
+ :path => "/features/#{feature}",
30
+ :query => { 'app' => app }
31
+ )
32
+ end
33
+
34
+ # POST /features/:feature
35
+ def post_feature(feature, app = nil)
36
+ request(
37
+ :expects => 200,
38
+ :method => :post,
39
+ :path => "/features/#{feature}",
40
+ :query => { 'app' => app }
41
+ )
42
+ end
43
+
44
+ end
45
+ end
@@ -3,6 +3,7 @@ require 'heroku/api/mock/apps'
3
3
  require 'heroku/api/mock/collaborators'
4
4
  require 'heroku/api/mock/config_vars'
5
5
  require 'heroku/api/mock/domains'
6
+ require 'heroku/api/mock/features'
6
7
  require 'heroku/api/mock/keys'
7
8
  require 'heroku/api/mock/login'
8
9
  require 'heroku/api/mock/logs'
@@ -25,6 +26,10 @@ module Heroku
25
26
  :collaborators => {},
26
27
  :config_vars => {},
27
28
  :domains => {},
29
+ :features => {
30
+ :app => Hash.new {|hash,key| hash[key] = []},
31
+ :user => []
32
+ },
28
33
  :keys => [],
29
34
  :maintenance_mode => [],
30
35
  :ps => {},
@@ -98,6 +103,14 @@ module Heroku
98
103
  mock_data[:collaborators][app].detect {|collaborator_data| collaborator_data['email'] == email}
99
104
  end
100
105
 
106
+ def self.get_mock_feature(mock_data, feature)
107
+ @features ||= begin
108
+ data = File.read("#{File.dirname(__FILE__)}/mock/cache/get_features.json")
109
+ Heroku::API::OkJson.decode(data)
110
+ end
111
+ @features.detect {|feature_data| feature_data['name'] == feature}
112
+ end
113
+
101
114
  def self.get_mock_key(mock_data, key)
102
115
  mock_data[:keys].detect {|key_data| %r{ #{Regexp.escape(key)}$}.match(key_data['contents'])}
103
116
  end
@@ -1 +1 @@
1
- [{"url":"https://addons.heroku.com/addons/websolr:palladium","price_cents":20000,"state":"public","beta":false,"price_unit":"month","name":"websolr:palladium","id":"https://addons.heroku.com/addons/websolr:palladium","description":"Websolr Palladium"},{"url":"https://addons.heroku.com/addons/treasure-data:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"treasure-data:test","id":"https://addons.heroku.com/addons/treasure-data:test","description":"Treasure Data Hadoop Test"},{"url":"https://addons.heroku.com/addons/dbinsights:standard","price_cents":4000,"state":"public","beta":false,"price_unit":"month","name":"dbinsights:standard","id":"https://addons.heroku.com/addons/dbinsights:standard","description":"DbInsights Standard"},{"state":"alpha","url":null,"group_description":"Crashnote","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"crashnote:test","description":"Crashnote Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/restful_metrics:medium","price_cents":7900,"state":"public","beta":false,"price_unit":"month","name":"restful_metrics:medium","id":"https://addons.heroku.com/addons/restful_metrics:medium","description":"RESTful Metrics Medium"},{"url":"https://addons.heroku.com/addons/sentry:enterprise","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"sentry:enterprise","id":"https://addons.heroku.com/addons/sentry:enterprise","description":"Sentry Enterprise"},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"cranium:zilla","description":"Cranium zilla","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/scheduler:standard","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"scheduler:standard","id":"https://addons.heroku.com/addons/scheduler:standard","description":"Heroku Scheduler Standard"},{"state":"alpha","url":null,"group_description":"Library","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"library:test","description":"Library Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bean","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"bean:test","description":"Bean Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Yobuko","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"yobuko:test","description":"Yobuko Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Staging","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogun-staging:ika","description":"Shogun-staging Ika","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/custom_domains:wildcard","price_cents":500,"state":"disabled","beta":false,"price_unit":"month","name":"custom_domains:wildcard","id":"https://addons.heroku.com/addons/custom_domains:wildcard","description":"Custom Domains Wildcard domains"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:kappa","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"heroku-postgresql:kappa","id":"https://addons.heroku.com/addons/heroku-postgresql:kappa","description":"Heroku Postgres Kappa"},{"url":"https://addons.heroku.com/addons/flying_sphinx:granite","price_cents":15000,"state":"public","beta":false,"price_unit":"month","name":"flying_sphinx:granite","id":"https://addons.heroku.com/addons/flying_sphinx:granite","description":"Flying Sphinx Granite"},{"state":"alpha","url":null,"group_description":"Librato Metrics","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"librato-metrics:test","description":"Librato-metrics Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/loggly:mole","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"loggly:mole","id":"https://addons.heroku.com/addons/loggly:mole","description":"Loggly Mole"},{"state":"disabled","url":null,"group_description":"Dyn","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"dyn:test","description":"DynECT Managed DNS Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"shogun-tmaher:zilla","description":"Shogun-tmaher Zilla","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/deployhooks:irc","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"deployhooks:irc","id":"https://addons.heroku.com/addons/deployhooks:irc","description":"Deploy Hooks IRC Hook"},{"state":"alpha","url":null,"group_description":"Jchaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"jchaddon:test","description":"Jchaddon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Dynonamics Staging","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"dynonamics-staging:test","description":"Dynonamics-staging Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Rabble","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"rabble:test","description":"Rabble Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/statsmix:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"statsmix:developer","id":"https://addons.heroku.com/addons/statsmix:developer","description":"StatsMix Developer"},{"url":"https://addons.heroku.com/addons/releases:advanced","price_cents":10000,"state":"disabled","beta":false,"price_unit":"month","name":"releases:advanced","id":"https://addons.heroku.com/addons/releases:advanced","description":"Release Management Advanced"},{"state":"public","url":null,"group_description":"Legacy Database","plan_description":"Zilla","attachable":false,"beta":false,"price":{"cents":160000,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"legacy-database:zilla","description":"Legacy Database Zilla","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/tddium:mega","price_cents":30000,"state":"public","beta":false,"price_unit":"month","name":"tddium:mega","id":"https://addons.heroku.com/addons/tddium:mega","description":"Tddium Mega"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Zilla Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla-postgis","name":"shogun-will:zilla-postgis","description":"Shogun-will Zilla Postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/dyn:lite50","price_cents":9500,"state":"public","beta":false,"price_unit":"month","name":"dyn:lite50","id":"https://addons.heroku.com/addons/dyn:lite50","description":"DynECT Managed DNS Lite 50"},{"state":"disabled","url":null,"group_description":"Blitz","plan_description":"500","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"500","name":"blitz:500","description":"Blitz 500","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogunhgimenez:ika","description":"Shogunhgimenez Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Tempo","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"tempo:test","description":"Tempo Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Pagelime","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"pagelime:test","description":"Pagelime Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Onesky","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"onesky:test","description":"OneSky Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cloudability","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cloudability:test","description":"Cloudability Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Neo4j Test","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"neo4j-test:test","description":"Neo4j-test Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongolab:large","price_cents":4000,"state":"public","beta":false,"price_unit":"month","name":"mongolab:large","id":"https://addons.heroku.com/addons/mongolab:large","description":"MongoLab Large"},{"url":"https://addons.heroku.com/addons/deployhooks:http","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"deployhooks:http","id":"https://addons.heroku.com/addons/deployhooks:http","description":"Deploy Hooks HTTP Post Hook"},{"url":"https://addons.heroku.com/addons/mailgun:hv","price_cents":19900,"state":"public","beta":false,"price_unit":"month","name":"mailgun:hv","id":"https://addons.heroku.com/addons/mailgun:hv","description":"Mailgun Pro High Volume"},{"state":"alpha","url":null,"group_description":"Canary Review","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"canary-review:test","description":"Canary-review Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Plus","attachable":false,"beta":false,"price":{"cents":5000,"unit":"month"},"terms_of_service":false,"slug":"plus","name":"indextank:plus","description":"IndexTank Search Plus","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/xeround:pro512","price_cents":9500,"state":"public","beta":false,"price_unit":"month","name":"xeround:pro512","id":"https://addons.heroku.com/addons/xeround:pro512","description":"Xeround the cloud database Pro 0.5GB"},{"state":"disabled","url":null,"group_description":"Flying Sphinx","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"flying_sphinx:test","description":"Flying Sphinx Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Mzaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mzaddon:test","description":"Mzaddon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Wrong","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"wrong:test","description":"Wrong Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/papertrail:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"papertrail:test","id":"https://addons.heroku.com/addons/papertrail:test","description":"Papertrail Test"},{"url":"https://addons.heroku.com/addons/cron:daily","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"cron:daily","id":"https://addons.heroku.com/addons/cron:daily","description":"Cron Daily Cron"},{"url":"https://addons.heroku.com/addons/zencoder:40k","price_cents":120000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:40k","id":"https://addons.heroku.com/addons/zencoder:40k","description":"Zencoder 40,000 Minutes"},{"state":"alpha","url":null,"group_description":"Ubalo Demo","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"ubalo-demo:test","description":"Ubalo-demo Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogunjdixon:ika","description":"Shogunjdixon Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Fdr","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-fdr:test","description":"Shogun-fdr Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongohq:rs_large","price_cents":30000,"state":"public","beta":false,"price_unit":"month","name":"mongohq:rs_large","id":"https://addons.heroku.com/addons/mongohq:rs_large","description":"MongoHQ Replica Set Large"},{"url":"https://addons.heroku.com/addons/memcache:10gb","price_cents":80000,"state":"public","beta":false,"price_unit":"month","name":"memcache:10gb","id":"https://addons.heroku.com/addons/memcache:10gb","description":"Memcache 10 GB"},{"url":"https://addons.heroku.com/addons/deployhooks:basecamp","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"deployhooks:basecamp","id":"https://addons.heroku.com/addons/deployhooks:basecamp","description":"Deploy Hooks Basecamp Hook"},{"url":"https://addons.heroku.com/addons/custom_domains:basic","price_cents":0,"state":"disabled","beta":false,"price_unit":"month","name":"custom_domains:basic","id":"https://addons.heroku.com/addons/custom_domains:basic","description":"Custom Domains Custom Domain"},{"state":"alpha","url":null,"group_description":"Uploadjuicer","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"uploadjuicer:test","description":"Uploadjuicer Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Sourceninja1","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"sourceninja1:test","description":"Sourceninja1 Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Staging","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-staging:test","description":"Shogun-staging Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Redistogo Old","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"redistogo-old:basic","description":"RedisToGo Basic","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_mq:titanium","price_cents":99900,"state":"public","beta":false,"price_unit":"month","name":"iron_mq:titanium","id":"https://addons.heroku.com/addons/iron_mq:titanium","description":"IronMQ Titanium"},{"state":"alpha","url":null,"group_description":"Appharbordonothingaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"appharbordonothingaddon:test","description":"Appharbordonothingaddon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Email","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"email","name":"deployhooks2:email","description":"Deployhooks2 eMail","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudmailin:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:developer","id":"https://addons.heroku.com/addons/cloudmailin:developer","description":"CloudMailIn Developer"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"shogun-will:baku","description":"Shogun-will Baku","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Mecha Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha-postgis","name":"shogun-tmaher:mecha-postgis","description":"Shogun-tmaher Mecha Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Postageapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"postageapp:test","description":"Postageapp Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Memcache","plan_description":"250mb","attachable":false,"beta":false,"price":{"cents":4000,"unit":"month"},"terms_of_service":false,"slug":"250mb","name":"memcache:250mb","description":"Memcache 250 MB","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Exceptionalnew","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"exceptionalnew:test","description":"Exceptionalnew Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/newrelic:standard","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"newrelic:standard","id":"https://addons.heroku.com/addons/newrelic:standard","description":"New Relic Standard"},{"url":"https://addons.heroku.com/addons/pandastream:solo","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"pandastream:solo","id":"https://addons.heroku.com/addons/pandastream:solo","description":"PandaStream Solo"},{"url":"https://addons.heroku.com/addons/deployhooks:email","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"deployhooks:email","id":"https://addons.heroku.com/addons/deployhooks:email","description":"Deploy Hooks Email Hook"},{"state":"alpha","url":null,"group_description":"Postgres","plan_description":"Basic","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"postgres:basic","description":"Postgres Basic","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Isabelle Test Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"isabelle_test_addon:test","description":"Isabelle_test_addon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Crond","plan_description":"Daily","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"daily","name":"crond:daily","description":"Crond Daily","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Simplegeo","plan_description":"Plus","attachable":false,"beta":false,"price":{"cents":4900,"unit":"month"},"terms_of_service":false,"slug":"plus","name":"simplegeo:plus","description":"SimpleGeo Plus","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Ronin Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-postgis","name":"shogun-will:ronin-postgis","description":"Shogun-will Ronin Postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:tryit","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"logentries:tryit","id":"https://addons.heroku.com/addons/logentries:tryit","description":"Logentries TryIt"},{"url":"https://addons.heroku.com/addons/amazon_rds","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"amazon_rds","id":"https://addons.heroku.com/addons/amazon_rds","description":"Amazon RDS Amazon RDS Integration"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-month","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pgbackups:auto-month","id":"https://addons.heroku.com/addons/pgbackups:auto-month","description":"PG Backups Auto - One Month Retention"},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Campfire","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"campfire","name":"deployhooks2:campfire","description":"Deployhooks2 Campfire","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/neo4j:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"neo4j:test","id":"https://addons.heroku.com/addons/neo4j:test","description":"Neo4j Test"},{"url":"https://addons.heroku.com/addons/statsmix:standard","price_cents":4900,"state":"public","beta":false,"price_unit":"month","name":"statsmix:standard","id":"https://addons.heroku.com/addons/statsmix:standard","description":"StatsMix Standard"},{"url":"https://addons.heroku.com/addons/stackmob:gold","price_cents":8900,"state":"public","beta":false,"price_unit":"month","name":"stackmob:gold","id":"https://addons.heroku.com/addons/stackmob:gold","description":"Stackmob Gold"},{"url":"https://addons.heroku.com/addons/pusher:startup","price_cents":4900,"state":"public","beta":false,"price_unit":"month","name":"pusher:startup","id":"https://addons.heroku.com/addons/pusher:startup","description":"Pusher Startup"},{"url":"https://addons.heroku.com/addons/rhoconnect:enterprise","price_cents":49900,"state":"public","beta":false,"price_unit":"month","name":"rhoconnect:enterprise","id":"https://addons.heroku.com/addons/rhoconnect:enterprise","description":"RhoConnect Enterprise"},{"state":"disabled","url":null,"group_description":"Dbinsights","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"dbinsights:test","description":"DbInsights Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/dbinsights:basic","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"dbinsights:basic","id":"https://addons.heroku.com/addons/dbinsights:basic","description":"DbInsights Basic"},{"state":"disabled","url":null,"group_description":"Searchify","plan_description":"Starter","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"starter","name":"searchify:starter","description":"Searchify IndexTank Starter","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/chargify:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"chargify:developer","id":"https://addons.heroku.com/addons/chargify:developer","description":"Chargify Developer"},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"shogunjdixon:mecha","description":"Shogunjdixon Mecha","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"shogunhgimenez:fugu","description":"Shogunhgimenez Fugu","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Justonedb","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"justonedb:test","description":"JustOneDB - NewSQL Cloud Database Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:ika","price_cents":80000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:ika","id":"https://addons.heroku.com/addons/heroku-postgresql:ika","description":"Heroku Postgres Ika"},{"url":"https://addons.heroku.com/addons/zerigo_dns:tier1","price_cents":700,"state":"public","beta":false,"price_unit":"month","name":"zerigo_dns:tier1","id":"https://addons.heroku.com/addons/zerigo_dns:tier1","description":"Zerigo DNS Zerigo Tier 1"},{"url":"https://addons.heroku.com/addons/adminium:petproject","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"adminium:petproject","id":"https://addons.heroku.com/addons/adminium:petproject","description":"Adminium Pet Project"},{"state":"alpha","url":null,"group_description":"Stillalive Staging","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"stillalive-staging:test","description":"Stillalive-staging Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Simplegeo","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"simplegeo:test","description":"SimpleGeo Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Kappa Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa-postgis","name":"shogun-freeformz:kappa-postgis","description":"Shogun-freeformz Kappa-postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Mongocrypt","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mongocrypt:test","description":"Mongocrypt Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongohq:large","price_cents":4900,"state":"public","beta":false,"price_unit":"month","name":"mongohq:large","id":"https://addons.heroku.com/addons/mongohq:large","description":"MongoHQ MongoHQ Large"},{"state":"disabled","url":null,"group_description":"Loggly","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"loggly:test","description":"Loggly Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zerigo_dns:tier2","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"zerigo_dns:tier2","id":"https://addons.heroku.com/addons/zerigo_dns:tier2","description":"Zerigo DNS Zerigo Tier 2"},{"state":"alpha","url":null,"group_description":"Vibes Goals","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"vibes-goals:test","description":"Vibes-goals Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudmailin:premium","price_cents":8500,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:premium","id":"https://addons.heroku.com/addons/cloudmailin:premium","description":"CloudMailIn Premium"},{"url":"https://addons.heroku.com/addons/docraptor:max","price_cents":18900,"state":"public","beta":false,"price_unit":"month","name":"docraptor:max","id":"https://addons.heroku.com/addons/docraptor:max","description":"DocRaptor Max"},{"url":"https://addons.heroku.com/addons/deployhooks:campfire","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"deployhooks:campfire","id":"https://addons.heroku.com/addons/deployhooks:campfire","description":"Deploy Hooks Campfire Hook"},{"state":"public","url":"http://devcenter.heroku.com/articles/deploy-hooks","group_description":"Deploy Hooks","plan_description":"SMS","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"sms","name":"deployhooks:sms","description":"SMS Hook","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/tddium:starter","price_cents":700,"state":"public","beta":false,"price_unit":"month","name":"tddium:starter","id":"https://addons.heroku.com/addons/tddium:starter","description":"Tddium Starter"},{"state":"alpha","url":null,"group_description":"Shogun Staging","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"shogun-staging:crane","description":"Shogun-staging Crane","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bind","plan_description":"Noeqd","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"noeqd","name":"bind:noeqd","description":"Bind Noeqd","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_mq:steel","price_cents":14999,"state":"public","beta":false,"price_unit":"month","name":"iron_mq:steel","id":"https://addons.heroku.com/addons/iron_mq:steel","description":"IronMQ Steel"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"shogun-freeformz:zilla","description":"Shogun-freeformz Zilla","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Legacy Database","plan_description":"Fugu","attachable":false,"beta":false,"price":{"cents":40000,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"legacy-database:fugu","description":"Legacy Database Fugu","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/websolr:chromium","price_cents":5000,"state":"public","beta":false,"price_unit":"month","name":"websolr:chromium","id":"https://addons.heroku.com/addons/websolr:chromium","description":"Websolr Chromium"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogun-tmaher:ika","description":"Shogun-tmaher Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"cranium:fugu","description":"Cranium fugu","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/pandastream:quad","price_cents":39600,"state":"public","beta":false,"price_unit":"month","name":"pandastream:quad","id":"https://addons.heroku.com/addons/pandastream:quad","description":"PandaStream Quad"},{"url":"https://addons.heroku.com/addons/restful_metrics:small","price_cents":2900,"state":"public","beta":false,"price_unit":"month","name":"restful_metrics:small","id":"https://addons.heroku.com/addons/restful_metrics:small","description":"RESTful Metrics Small"},{"url":"https://addons.heroku.com/addons/superfeedr:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"superfeedr:test","id":"https://addons.heroku.com/addons/superfeedr:test","description":"Superfeedr Test"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Fugu Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-postgis","name":"shogun-freeformz:fugu-postgis","description":"Shogun-freeformz Fugu-postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/stillalive:starter","price_cents":1500,"state":"public","beta":false,"price_unit":"month","name":"stillalive:starter","id":"https://addons.heroku.com/addons/stillalive:starter","description":"StillAlive Starter"},{"state":"alpha","url":null,"group_description":"Shogun Staging","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogun-staging:ronin","description":"Shogun-staging Ronin","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zerigo_dns:basic","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"zerigo_dns:basic","id":"https://addons.heroku.com/addons/zerigo_dns:basic","description":"Zerigo DNS Zerigo Basic"},{"state":"alpha","url":null,"group_description":"Force Database","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"force-database:test","description":"ForceDatabaseInc Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Weborb Clustering","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"weborb_clustering:test","description":"Weborb_clustering Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogunhgimenez:test","description":"Shogunhgimenez Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/airbrake:developer_plus","price_cents":1400,"state":"public","beta":false,"price_unit":"month","name":"airbrake:developer_plus","id":"https://addons.heroku.com/addons/airbrake:developer_plus","description":"Airbrake Developer Plus"},{"url":"https://addons.heroku.com/addons/logentries:dev","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"logentries:dev","id":"https://addons.heroku.com/addons/logentries:dev","description":"Logentries Dev"},{"state":"alpha","url":null,"group_description":"Localhostapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"localhostapp:test","description":"Localhostapp Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Elasticsearch","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"elasticsearch:test","description":"Squatter ElasticSearch Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/xeround:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"xeround:starter","id":"https://addons.heroku.com/addons/xeround:starter","description":"Xeround the cloud database Starter"},{"state":"disabled","url":null,"group_description":"Simple Worker","plan_description":"Venti","attachable":false,"beta":false,"price":{"cents":10800,"unit":"month"},"terms_of_service":false,"slug":"venti","name":"simple_worker:venti","description":"Appoxy SimpleWorker Venti","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Sharedworkforce","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"sharedworkforce:test","description":"Sharedworkforce Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Phrase","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"phrase:test","description":"phrase Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Myaddon Mega Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"myaddon-mega-addon:test","description":"Myaddon-mega-addon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Fourteen","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"fourteen:test","description":"Fourteen Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Logworm","plan_description":"Starter","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"starter","name":"logworm:starter","description":"LogWorm Starter","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Houndsleuth","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"houndsleuth:test","description":"HoundSleuth Hosted Search Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/adminium:enterprise","price_cents":5000,"state":"public","beta":false,"price_unit":"month","name":"adminium:enterprise","id":"https://addons.heroku.com/addons/adminium:enterprise","description":"Adminium Enterprise"},{"url":"https://addons.heroku.com/addons/cloudmailin:professional","price_cents":4500,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:professional","id":"https://addons.heroku.com/addons/cloudmailin:professional","description":"CloudMailIn Professional"},{"state":"alpha","url":null,"group_description":"Starter Shogun","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"starter-shogun:test","description":"Starter-shogun Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Musashi Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"musashi-postgis","name":"shogun-tmaher:musashi-postgis","description":"Shogun-tmaher Musashi Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Pg9test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"pg9test","name":"shogun-tmaher:pg9test","description":"Shogun-tmaher PG9Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Helpmeapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"helpmeapp:test","description":"Helpmeapp Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Iron Mq","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"iron_mq:test","description":"IronMQ Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/docraptor:basic","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"docraptor:basic","id":"https://addons.heroku.com/addons/docraptor:basic","description":"DocRaptor Basic"},{"state":"disabled","url":null,"group_description":"Heroku Postgresql","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"heroku-postgresql:test","description":"Heroku Postgres Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/loggly:beaver","price_cents":29900,"state":"public","beta":false,"price_unit":"month","name":"loggly:beaver","id":"https://addons.heroku.com/addons/loggly:beaver","description":"Loggly Beaver"},{"url":"https://addons.heroku.com/addons/sendgrid:silver","price_cents":7995,"state":"public","beta":false,"price_unit":"month","name":"sendgrid:silver","id":"https://addons.heroku.com/addons/sendgrid:silver","description":"SendGrid Silver"},{"state":"public","url":null,"group_description":"Newrelic","plan_description":"Silver","attachable":false,"beta":false,"price":{"cents":5,"unit":"dyno_hour"},"terms_of_service":false,"slug":"silver","name":"newrelic:silver","description":"New Relic RPM Silver","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:5000","price_cents":30000,"state":"public","beta":false,"price_unit":"month","name":"memcachier:5000","id":"https://addons.heroku.com/addons/memcachier:5000","description":"MemCachier 5 Gb"},{"state":"alpha","url":null,"group_description":"Henson","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"henson:test","description":"Henson Test","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Redistogo","plan_description":"Rho.Large.Vm","attachable":false,"beta":false,"price":{"cents":7500,"unit":"month"},"terms_of_service":false,"slug":"rho.large.vm","name":"redistogo:rho.large.vm","description":"Redis To Go Rho Mobile Large VM","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Chronicdb","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"chronicdb:test","description":"Chronicdb Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/securekey:fortnightly","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"securekey:fortnightly","id":"https://addons.heroku.com/addons/securekey:fortnightly","description":"Secure Key Fortnightly"},{"state":"alpha","url":null,"group_description":"Starter Shogun","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"starter-shogun:ronin","description":"Starter-shogun Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogunjdixon:test","description":"Shogunjdixon Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_worker:tall","price_cents":3600,"state":"public","beta":false,"price_unit":"month","name":"iron_worker:tall","id":"https://addons.heroku.com/addons/iron_worker:tall","description":"IronWorker Tall"},{"url":"https://addons.heroku.com/addons/pusher:sandbox","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pusher:sandbox","id":"https://addons.heroku.com/addons/pusher:sandbox","description":"Pusher Sandbox"},{"url":"https://addons.heroku.com/addons/chargify:grow","price_cents":34900,"state":"public","beta":false,"price_unit":"month","name":"chargify:grow","id":"https://addons.heroku.com/addons/chargify:grow","description":"Chargify Grow"},{"url":"https://addons.heroku.com/addons/ticketly:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"ticketly:test","id":"https://addons.heroku.com/addons/ticketly:test","description":"Ticketly Test"},{"url":"https://addons.heroku.com/addons/mongohq:free","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"mongohq:free","id":"https://addons.heroku.com/addons/mongohq:free","description":"MongoHQ MongoHQ Free"},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cranium:test","description":"Cranium Test","consumes_dyno_hours":false},{"state":"public","url":"http://devcenter.heroku.com/articles/custom-error-pages","group_description":null,"plan_description":null,"attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":null,"name":"custom_error_pages","description":"Custom Error Pages","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Sendgrid","plan_description":"Premium","attachable":false,"beta":false,"price":{"cents":8000,"unit":"month"},"terms_of_service":false,"slug":"premium","name":"sendgrid:premium","description":"SendGrid Sendgrid Premium","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Basecamp","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basecamp","name":"deployhooks2:basecamp","description":"Deployhooks2 Basecamp","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Fastly","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"fastly:test","description":"Fastly Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:proto","price_cents":1000,"state":"public","beta":false,"price_unit":"month","name":"logentries:proto","id":"https://addons.heroku.com/addons/logentries:proto","description":"Logentries Proto"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-year","price_cents":10000,"state":"beta","beta":false,"price_unit":"month","name":"pgbackups:auto-year","id":"https://addons.heroku.com/addons/pgbackups:auto-year","description":"PG Backups Auto - One Year Retention"},{"state":"disabled","url":null,"group_description":"Tddium","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"tddium:test","description":"Tddium Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Fugu Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-staging","name":"shogun-will:fugu-staging","description":"Shogun-will Fugu staging","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"shogun-freeformz:baku","description":"Shogun-freeformz Baku","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/airbrake:production_pro","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"airbrake:production_pro","id":"https://addons.heroku.com/addons/airbrake:production_pro","description":"Airbrake Production Pro"},{"url":"https://addons.heroku.com/addons/redistogo:large","price_cents":30000,"state":"public","beta":false,"price_unit":"month","name":"redistogo:large","id":"https://addons.heroku.com/addons/redistogo:large","description":"Redis To Go Large"},{"url":"https://addons.heroku.com/addons/loggly:capybara","price_cents":59900,"state":"public","beta":false,"price_unit":"month","name":"loggly:capybara","id":"https://addons.heroku.com/addons/loggly:capybara","description":"Loggly Capybara"},{"state":"disabled","url":null,"group_description":"Pgbackups","plan_description":"Hourly","attachable":false,"beta":false,"price":{"cents":0,"unit":"0"},"terms_of_service":false,"slug":"hourly","name":"pgbackups:hourly","description":"PG Backups Hourly","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudant:oxygen","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"cloudant:oxygen","id":"https://addons.heroku.com/addons/cloudant:oxygen","description":"Cloudant Oxygen"},{"url":"https://addons.heroku.com/addons/statsmix:basic","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"statsmix:basic","id":"https://addons.heroku.com/addons/statsmix:basic","description":"StatsMix Basic"},{"url":"https://addons.heroku.com/addons/redistogo:super","price_cents":100000,"state":"public","beta":false,"price_unit":"month","name":"redistogo:super","id":"https://addons.heroku.com/addons/redistogo:super","description":"Redis To Go Super"},{"url":"https://addons.heroku.com/addons/rhoconnect:premium","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"rhoconnect:premium","id":"https://addons.heroku.com/addons/rhoconnect:premium","description":"RhoConnect Premium"},{"state":"alpha","url":null,"group_description":"Continuityapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"continuityapp:test","description":"Continuityapp Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Zilla Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla-postgis","name":"shogun-tmaher:zilla-postgis","description":"Shogun-tmaher Zilla Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Jdixon","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-jdixon:test","description":"Shogun-jdixon Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:500","price_cents":4000,"state":"public","beta":false,"price_unit":"month","name":"memcachier:500","id":"https://addons.heroku.com/addons/memcachier:500","description":"MemCachier 500 Mb"},{"state":"disabled","url":null,"group_description":"Memcached","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"memcached:basic","description":"Memcached Memcached Basic","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Dev","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"dev","name":"shogunhgimenez:dev","description":"Shogunhgimenez Dev","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/docraptor:premium","price_cents":9500,"state":"public","beta":false,"price_unit":"month","name":"docraptor:premium","id":"https://addons.heroku.com/addons/docraptor:premium","description":"DocRaptor Premium"},{"url":"https://addons.heroku.com/addons/mongolab:small","price_cents":1000,"state":"public","beta":false,"price_unit":"month","name":"mongolab:small","id":"https://addons.heroku.com/addons/mongolab:small","description":"MongoLab Small"},{"url":"https://addons.heroku.com/addons/pusher:bootstrap","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"pusher:bootstrap","id":"https://addons.heroku.com/addons/pusher:bootstrap","description":"Pusher Bootstrap"},{"url":"https://addons.heroku.com/addons/cassandraio:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"cassandraio:test","id":"https://addons.heroku.com/addons/cassandraio:test","description":"Cassandra.io Test"},{"url":"https://addons.heroku.com/addons/justonedb:charmed_xi","price_cents":34900,"state":"public","beta":false,"price_unit":"month","name":"justonedb:charmed_xi","id":"https://addons.heroku.com/addons/justonedb:charmed_xi","description":"JustOneDB - NewSQL Cloud Database Charmed Xi"},{"url":"https://addons.heroku.com/addons/flying_sphinx:wooden","price_cents":1200,"state":"public","beta":false,"price_unit":"month","name":"flying_sphinx:wooden","id":"https://addons.heroku.com/addons/flying_sphinx:wooden","description":"Flying Sphinx Wooden"},{"url":"https://addons.heroku.com/addons/memcachier:250mb","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"memcachier:250mb","id":"https://addons.heroku.com/addons/memcachier:250mb","description":"MemCachier 250 Mb"},{"url":"https://addons.heroku.com/addons/releases:basic","price_cents":0,"state":"disabled","beta":false,"price_unit":"month","name":"releases:basic","id":"https://addons.heroku.com/addons/releases:basic","description":"Release Management Basic"},{"url":"https://addons.heroku.com/addons/tddium:pro","price_cents":15000,"state":"public","beta":false,"price_unit":"month","name":"tddium:pro","id":"https://addons.heroku.com/addons/tddium:pro","description":"Tddium Pro"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Kappa Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa-postgis","name":"shogun-will:kappa-postgis","description":"Shogun-will Kappa Postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Contest 30day","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"contest_30day","name":"indextank:contest_30day","description":"IndexTank Search Heroku Contest 30 Day","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Logmetrics","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"logmetrics:test","description":"Logmetrics Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Baku Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku-postgis","name":"shogun-will:baku-postgis","description":"Shogun-will Baku Postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/exceptional:premium","price_cents":900,"state":"public","beta":false,"price_unit":"month","name":"exceptional:premium","id":"https://addons.heroku.com/addons/exceptional:premium","description":"Exceptional Exceptional Premium"},{"state":"disabled","url":null,"group_description":"Heroku Postgresql","plan_description":"Pg9test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"pg9test","name":"heroku-postgresql:pg9test","description":"Heroku Postgres PG9Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/pgbackups:plus","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pgbackups:plus","id":"https://addons.heroku.com/addons/pgbackups:plus","description":"PG Backups Plus"},{"state":"alpha","url":null,"group_description":"Cloudpostgres","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cloudpostgres:test","description":"Cloud Postgres Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Ranger","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"ranger:test","description":"Ranger Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Kappa","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa","name":"shogun-will:kappa","description":"Shogun-will Kappa","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Preview Test","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"preview-test:test","description":"Test Preview Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcache:1gb","price_cents":9000,"state":"public","beta":false,"price_unit":"month","name":"memcache:1gb","id":"https://addons.heroku.com/addons/memcache:1gb","description":"Memcache 1 GB"},{"url":"https://addons.heroku.com/addons/mongohq:rs_small","price_cents":14900,"state":"public","beta":false,"price_unit":"month","name":"mongohq:rs_small","id":"https://addons.heroku.com/addons/mongohq:rs_small","description":"MongoHQ Replica Set Small"},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Trial","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"trial","name":"heroku-postgresql:trial","description":"Heroku Postgres Trial","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Blitz","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"blitz:test","description":"Blitz Test","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Heroku Shared Postgresql","plan_description":"Devcloud","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"devcloud","name":"heroku-shared-postgresql:devcloud","description":"Heroku Shared PostgreSQL Devcloud","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zencoder:dev","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"zencoder:dev","id":"https://addons.heroku.com/addons/zencoder:dev","description":"Zencoder Developer"},{"url":"https://addons.heroku.com/addons/stillalive:plus","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"stillalive:plus","id":"https://addons.heroku.com/addons/stillalive:plus","description":"StillAlive Plus"},{"state":"alpha","url":null,"group_description":"Qworum","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"qworum:test","description":"Qworum Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Hoptoad","plan_description":"Beta Eol","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"beta_eol","name":"hoptoad:beta_eol","description":"Airbrake Beta EOL","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Daisho","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"daisho:test","description":"Daisho Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/eshq:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"eshq:test","id":"https://addons.heroku.com/addons/eshq:test","description":"EventSource HQ Test"},{"url":"https://addons.heroku.com/addons/tddium:basic","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"tddium:basic","id":"https://addons.heroku.com/addons/tddium:basic","description":"Tddium Basic"},{"url":"https://addons.heroku.com/addons/docraptor:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"docraptor:starter","id":"https://addons.heroku.com/addons/docraptor:starter","description":"DocRaptor Starter"},{"state":"public","url":null,"group_description":"Pusher","plan_description":"Custom 10k","attachable":false,"beta":false,"price":{"cents":39800,"unit":"month"},"terms_of_service":false,"slug":"custom_10k","name":"pusher:custom_10k","description":"Pusher Custom_10K","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Baku Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku-postgis","name":"heroku-postgresql:baku-postgis","description":"Heroku Postgres Baku Postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"indextank:test","description":"IndexTank Search Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Staged Sphinx","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"staged_sphinx:test","description":"Flying Sphinx Staging Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Ronin Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-postgis","name":"shogun-tmaher:ronin-postgis","description":"Shogun-tmaher Ronin Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Croonga Test","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"croonga-test:test","description":"Croonga-test Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mwiki:micro","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"mwiki:micro","id":"https://addons.heroku.com/addons/mwiki:micro","description":"mWiki Micro"},{"url":"https://addons.heroku.com/addons/chargify:max","price_cents":99900,"state":"public","beta":false,"price_unit":"month","name":"chargify:max","id":"https://addons.heroku.com/addons/chargify:max","description":"Chargify Max"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:fugu","price_cents":40000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:fugu","id":"https://addons.heroku.com/addons/heroku-postgresql:fugu","description":"Heroku Postgres Fugu"},{"url":"https://addons.heroku.com/addons/websolr:platinum","price_cents":10000,"state":"public","beta":false,"price_unit":"month","name":"websolr:platinum","id":"https://addons.heroku.com/addons/websolr:platinum","description":"Websolr Platinum"},{"state":"alpha","url":null,"group_description":"Foobar","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"foobar:test","description":"Foobar Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Logglyheroku","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"logglyheroku:test","description":"DONTUSE Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/moonshadosms:premium","price_cents":10000,"state":"public","beta":false,"price_unit":"month","name":"moonshadosms:premium","id":"https://addons.heroku.com/addons/moonshadosms:premium","description":"Moonshado SMS Premium"},{"url":"https://addons.heroku.com/addons/loggly:gopher","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"loggly:gopher","id":"https://addons.heroku.com/addons/loggly:gopher","description":"Loggly Gopher"},{"url":"https://addons.heroku.com/addons/logentries:ops","price_cents":5000,"state":"public","beta":false,"price_unit":"month","name":"logentries:ops","id":"https://addons.heroku.com/addons/logentries:ops","description":"Logentries Ops"},{"state":"disabled","url":null,"group_description":"Bundles","plan_description":"Unlimited","attachable":false,"beta":false,"price":{"cents":2000,"unit":"month"},"terms_of_service":false,"slug":"unlimited","name":"bundles:unlimited","description":"Bundles Unlimited Bundles","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Yotogi","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"yotogi:test","description":"Yotogi Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"shogun-freeformz:mecha","description":"Shogun-freeformz Mecha","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:dev","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"heroku-postgresql:dev","id":"https://addons.heroku.com/addons/heroku-postgresql:dev","description":"Heroku Postgres Dev"},{"url":"https://addons.heroku.com/addons/custom_error_pages:standard","price_cents":10000,"state":"disabled","beta":false,"price_unit":"month","name":"custom_error_pages:standard","id":"https://addons.heroku.com/addons/custom_error_pages:standard","description":"Custom Error Pages Custom Error Pages"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:crane","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"heroku-postgresql:crane","id":"https://addons.heroku.com/addons/heroku-postgresql:crane","description":"Heroku Postgres Crane"},{"state":"alpha","url":null,"group_description":"Zenslap2","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"zenslap2:test","description":"Zenslap2 Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Xerounddev","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"xerounddev:test","description":"Xeround DEV Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Fugu Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-staging","name":"shogun-tmaher:fugu-staging","description":"Shogun-tmaher Fugu staging","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"shogunjdixon:fugu","description":"Shogunjdixon Fugu","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Maddog Test","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"maddog-test:test","description":"Maddog-test Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongohq:small","price_cents":1500,"state":"public","beta":false,"price_unit":"month","name":"mongohq:small","id":"https://addons.heroku.com/addons/mongohq:small","description":"MongoHQ MongoHQ Small"},{"state":"disabled","url":null,"group_description":"Simple Worker","plan_description":"Starter","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"starter","name":"simple_worker:starter","description":"Appoxy SimpleWorker Starter","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Cloudcounter","plan_description":"Premium","attachable":false,"beta":false,"price":{"cents":100,"unit":"month"},"terms_of_service":false,"slug":"premium","name":"cloudcounter:premium","description":"CloudCounter Premium","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/pubnub:common","price_cents":8999,"state":"public","beta":false,"price_unit":"month","name":"pubnub:common","id":"https://addons.heroku.com/addons/pubnub:common","description":"PubNub Common"},{"url":"https://addons.heroku.com/addons/mailgun:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"mailgun:starter","id":"https://addons.heroku.com/addons/mailgun:starter","description":"Mailgun Starter"},{"url":"https://addons.heroku.com/addons/newrelic:professional","price_cents":6,"state":"public","beta":false,"price_unit":"dyno_hour","name":"newrelic:professional","id":"https://addons.heroku.com/addons/newrelic:professional","description":"New Relic Professional"},{"state":"disabled","url":null,"group_description":"Websolr","plan_description":"Legacy Gold","attachable":false,"beta":false,"price":{"cents":6900,"unit":"month"},"terms_of_service":false,"slug":"legacy_gold","name":"websolr:legacy_gold","description":"Websolr Legacy Gold","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Torch","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"torch:test","description":"Torch Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Abstractidentity","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"abstractidentity:test","description":"Abstractidentity Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:ronin","price_cents":20000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:ronin","id":"https://addons.heroku.com/addons/heroku-postgresql:ronin","description":"Heroku Postgres Ronin"},{"url":"https://addons.heroku.com/addons/pubnub:minimal","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pubnub:minimal","id":"https://addons.heroku.com/addons/pubnub:minimal","description":"PubNub Minimal"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-week","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pgbackups:auto-week","id":"https://addons.heroku.com/addons/pgbackups:auto-week","description":"PG Backups Auto - One Week Retention"},{"url":"https://addons.heroku.com/addons/mongolab:x-large","price_cents":6500,"state":"public","beta":false,"price_unit":"month","name":"mongolab:x-large","id":"https://addons.heroku.com/addons/mongolab:x-large","description":"MongoLab X-Large"},{"url":"https://addons.heroku.com/addons/sentry:pro","price_cents":700,"state":"public","beta":false,"price_unit":"month","name":"sentry:pro","id":"https://addons.heroku.com/addons/sentry:pro","description":"Sentry Pro"},{"url":"https://addons.heroku.com/addons/mailgun:basic","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"mailgun:basic","id":"https://addons.heroku.com/addons/mailgun:basic","description":"Mailgun Basic"},{"state":"disabled","url":null,"group_description":"Securekey","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"securekey:test","description":"Secure Key Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Securekey","plan_description":"Daily","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"daily","name":"securekey:daily","description":"Secure Key Daily","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zencoder:1k","price_cents":4000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:1k","id":"https://addons.heroku.com/addons/zencoder:1k","description":"Zencoder 1,000 Minutes"},{"state":"alpha","url":null,"group_description":"Wrong1","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"wrong1:test","description":"Wrong1 Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/websolr:titanium","price_cents":80000,"state":"public","beta":false,"price_unit":"month","name":"websolr:titanium","id":"https://addons.heroku.com/addons/websolr:titanium","description":"Websolr Titanium"},{"url":"https://addons.heroku.com/addons/websolr:cobalt","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"websolr:cobalt","id":"https://addons.heroku.com/addons/websolr:cobalt","description":"Websolr Cobalt"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Baku Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku-postgis","name":"shogun-tmaher:baku-postgis","description":"Shogun-tmaher Baku Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Pvh","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogun-pvh:ronin","description":"Shogun-pvh Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Kappa","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa","name":"shogun-freeformz:kappa","description":"Shogun-freeformz Kappa","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Hoptoad","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":200,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"hoptoad:basic","description":"Airbrake Basic","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/adminium:startup","price_cents":1000,"state":"public","beta":false,"price_unit":"month","name":"adminium:startup","id":"https://addons.heroku.com/addons/adminium:startup","description":"Adminium Startup"},{"url":"https://addons.heroku.com/addons/searchify:plus","price_cents":4900,"state":"public","beta":false,"price_unit":"month","name":"searchify:plus","id":"https://addons.heroku.com/addons/searchify:plus","description":"Searchify IndexTank Plus"},{"url":"https://addons.heroku.com/addons/cloudmailin:starter","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:starter","id":"https://addons.heroku.com/addons/cloudmailin:starter","description":"CloudMailIn Starter"},{"url":"https://addons.heroku.com/addons/redistogo:mini","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"redistogo:mini","id":"https://addons.heroku.com/addons/redistogo:mini","description":"Redis To Go Mini"},{"url":"https://addons.heroku.com/addons/rabbitmq:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"rabbitmq:test","id":"https://addons.heroku.com/addons/rabbitmq:test","description":"RabbitMQ Test"},{"state":"disabled","url":null,"group_description":"Websolr","plan_description":"Legacy Silver","attachable":false,"beta":false,"price":{"cents":2000,"unit":"month"},"terms_of_service":false,"slug":"legacy_silver","name":"websolr:legacy_silver","description":"Websolr Legacy Silver","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Securekey","plan_description":"Weekly","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"weekly","name":"securekey:weekly","description":"Secure Key Weekly","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/restful_metrics:x-large","price_cents":99900,"state":"public","beta":false,"price_unit":"month","name":"restful_metrics:x-large","id":"https://addons.heroku.com/addons/restful_metrics:x-large","description":"RESTful Metrics X-Large"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"shogun-will:mecha","description":"Shogun-will Mecha","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"shogunhgimenez:mecha","description":"Shogunhgimenez Mecha","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/dyn:lite10","price_cents":3000,"state":"public","beta":false,"price_unit":"month","name":"dyn:lite10","id":"https://addons.heroku.com/addons/dyn:lite10","description":"DynECT Managed DNS Lite 10"},{"url":"https://addons.heroku.com/addons/justonedb:double_charmed_xi","price_cents":49900,"state":"public","beta":false,"price_unit":"month","name":"justonedb:double_charmed_xi","id":"https://addons.heroku.com/addons/justonedb:double_charmed_xi","description":"JustOneDB - NewSQL Cloud Database Double Charmed Xi"},{"url":"https://addons.heroku.com/addons/cron:hourly","price_cents":300,"state":"public","beta":false,"price_unit":"month","name":"cron:hourly","id":"https://addons.heroku.com/addons/cron:hourly","description":"Cron Hourly Cron"},{"url":"https://addons.heroku.com/addons/cleardb:punch","price_cents":999,"state":"public","beta":false,"price_unit":"month","name":"cleardb:punch","id":"https://addons.heroku.com/addons/cleardb:punch","description":"ClearDB MySQL Database Punch"},{"url":"https://addons.heroku.com/addons/ssl:piggyback","price_cents":0,"state":"disabled","beta":false,"price_unit":"month","name":"ssl:piggyback","id":"https://addons.heroku.com/addons/ssl:piggyback","description":"SSL Piggyback SSL"},{"url":"https://addons.heroku.com/addons/cloudinary:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"cloudinary:test","id":"https://addons.heroku.com/addons/cloudinary:test","description":"Cloudinary Test"},{"state":"alpha","url":null,"group_description":"Yotogi Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"yotogi-addon:test","description":"Yotogi-addon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Djucy","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"djucy:test","description":"Djucy Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Pico","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"pico","name":"cranium:pico","description":"Cranium pico","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Simple Worker","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"simple_worker:test","description":"Appoxy SimpleWorker Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logging:expanded","price_cents":0,"state":"disabled","beta":false,"price_unit":"month","name":"logging:expanded","id":"https://addons.heroku.com/addons/logging:expanded","description":"Logging Expanded"},{"state":"alpha","url":null,"group_description":"Heat Engine","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"heat_engine:test","description":"Heat_engine Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Restful Metrics","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"restful_metrics:test","description":"RESTful Metrics Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/progstr-filer:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"progstr-filer:test","id":"https://addons.heroku.com/addons/progstr-filer:test","description":"Progstr Filer Test"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-will:test","description":"Shogun-will Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Pg9test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"pg9test","name":"shogun-freeformz:pg9test","description":"Shogun-freeformz Pg9test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Sendgrid","plan_description":"Pro","attachable":false,"beta":false,"price":{"cents":2000,"unit":"month"},"terms_of_service":false,"slug":"pro","name":"sendgrid:pro","description":"SendGrid Sendgrid Pro","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Gemfury","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"gemfury:test","description":"Gemfury Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Myaddon Mega Addon Two","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"myaddon-mega-addon-two:test","description":"Myaddon-mega-addon-two Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Ronin Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-staging","name":"heroku-postgresql:ronin-staging","description":"Heroku Postgres Ronin staging","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/foundelasticsearch:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"foundelasticsearch:test","id":"https://addons.heroku.com/addons/foundelasticsearch:test","description":"Found ElasticSearch Test"},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Fugu Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-staging","name":"heroku-postgresql:fugu-staging","description":"Heroku Postgres Fugu staging","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/redistogo:medium","price_cents":11000,"state":"public","beta":false,"price_unit":"month","name":"redistogo:medium","id":"https://addons.heroku.com/addons/redistogo:medium","description":"Redis To Go Medium"},{"state":"disabled","url":null,"group_description":"Chargify","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"chargify:test","description":"Chargify Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:100","price_cents":1500,"state":"public","beta":false,"price_unit":"month","name":"memcachier:100","id":"https://addons.heroku.com/addons/memcachier:100","description":"MemCachier 100 Mb"},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Devplus","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"devplus","name":"heroku-postgresql:devplus","description":"Heroku Postgres Dev Plus","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudamqp:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"cloudamqp:test","id":"https://addons.heroku.com/addons/cloudamqp:test","description":"CloudAMQP Test"},{"state":"alpha","url":null,"group_description":"Searchbox","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"searchbox:test","description":"Searchbox Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/moonshadosms:max","price_cents":35000,"state":"public","beta":false,"price_unit":"month","name":"moonshadosms:max","id":"https://addons.heroku.com/addons/moonshadosms:max","description":"Moonshado SMS Max"},{"url":"https://addons.heroku.com/addons/redistogo:nano","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"redistogo:nano","id":"https://addons.heroku.com/addons/redistogo:nano","description":"Redis To Go Nano"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"shogun-will:fugu","description":"Shogun-will Fugu","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:1000","price_cents":7000,"state":"public","beta":false,"price_unit":"month","name":"memcachier:1000","id":"https://addons.heroku.com/addons/memcachier:1000","description":"MemCachier 1 Gb"},{"state":"alpha","url":null,"group_description":"Redisgreen","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"redisgreen:test","description":"Redisgreen Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/redistogo:small","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"redistogo:small","id":"https://addons.heroku.com/addons/redistogo:small","description":"Redis To Go Small"},{"url":"https://addons.heroku.com/addons/websolr:tungsten","price_cents":40000,"state":"public","beta":false,"price_unit":"month","name":"websolr:tungsten","id":"https://addons.heroku.com/addons/websolr:tungsten","description":"Websolr Tungsten"},{"state":"public","url":null,"group_description":"Shared Database","plan_description":"5mb","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"5mb","name":"shared-database:5mb","description":"Shared Database 5MB","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/restful_metrics:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"restful_metrics:developer","id":"https://addons.heroku.com/addons/restful_metrics:developer","description":"RESTful Metrics Developer"},{"state":"alpha","url":null,"group_description":"El Hydra","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"el-hydra:test","description":"El-hydra Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Html2cloud","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"html2cloud:test","description":"Html2cloud Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/justonedb:sigma","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"justonedb:sigma","id":"https://addons.heroku.com/addons/justonedb:sigma","description":"JustOneDB - NewSQL Cloud Database Sigma"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-freeformz:test","description":"Shogun-freeformz Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Irc","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"irc","name":"deployhooks2:irc","description":"Deployhooks2 IRC Hook","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Sendgrid","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"sendgrid:test","description":"SendGrid Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Logglyheroku","plan_description":"Test2","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test2","name":"logglyheroku:test2","description":"DONTUSE Test2","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/sendgrid:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"sendgrid:starter","id":"https://addons.heroku.com/addons/sendgrid:starter","description":"SendGrid Starter"},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"cranium:mecha","description":"Cranium mecha","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:super","price_cents":250000,"state":"public","beta":false,"price_unit":"month","name":"logentries:super","id":"https://addons.heroku.com/addons/logentries:super","description":"Logentries Super"},{"url":"https://addons.heroku.com/addons/spacialdb:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"spacialdb:test","id":"https://addons.heroku.com/addons/spacialdb:test","description":"SpacialDB Test"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"shogun-tmaher:mecha","description":"Shogun-tmaher Mecha","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Jaque","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"jaque:test","description":"Jaque Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Kappa Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa-postgis","name":"shogun-tmaher:kappa-postgis","description":"Shogun-tmaher Kappa Postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Pusher","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"pusher:test","description":"Pusher Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/moonshadosms:basic","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"moonshadosms:basic","id":"https://addons.heroku.com/addons/moonshadosms:basic","description":"Moonshado SMS Basic"},{"url":"https://addons.heroku.com/addons/pubnub:popular","price_cents":24999,"state":"public","beta":false,"price_unit":"month","name":"pubnub:popular","id":"https://addons.heroku.com/addons/pubnub:popular","description":"PubNub Popular"},{"state":"disabled","url":null,"group_description":"Mailgun","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mailgun:test","description":"Mailgun Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Hoptoad","plan_description":"Plus","attachable":false,"beta":false,"price":{"cents":700,"unit":"month"},"terms_of_service":false,"slug":"plus","name":"hoptoad:plus","description":"Airbrake Plus","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Stackmob","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"stackmob:test","description":"Stackmob Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"shogunjdixon:crane","description":"Shogunjdixon Crane","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:25","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"memcachier:25","id":"https://addons.heroku.com/addons/memcachier:25","description":"MemCachier 25 Mb"},{"state":"alpha","url":null,"group_description":"Database Com Beta","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"database-com-beta:test","description":"Database-com-beta Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Stackmob","plan_description":"Platinum","attachable":false,"beta":false,"price":{"cents":119900,"unit":"month"},"terms_of_service":false,"slug":"platinum","name":"stackmob:platinum","description":"Stackmob Platinum","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_worker:venti","price_cents":10800,"state":"public","beta":false,"price_unit":"month","name":"iron_worker:venti","id":"https://addons.heroku.com/addons/iron_worker:venti","description":"IronWorker Venti"},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Ika Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika-postgis","name":"heroku-postgresql:ika-postgis","description":"Heroku Postgres Ika Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Unique Io","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"unique-io:test","description":"Unique-io Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Sickle","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"sickle:test","description":"Sickle Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Glenntest","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"glenntest:test","description":"Glenntest Test","consumes_dyno_hours":true},{"state":"alpha","url":null,"group_description":"Cloudquartz","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cloudquartz:test","description":"Cloudquartz Test","consumes_dyno_hours":true},{"state":"disabled","url":null,"group_description":"Pubnub","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"pubnub:test","description":"PubNub Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Database Com Morten","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"database-com-morten:test","description":"Database.com Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudmailin:micro","price_cents":900,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:micro","id":"https://addons.heroku.com/addons/cloudmailin:micro","description":"CloudMailIn Micro"},{"url":"https://addons.heroku.com/addons/memcache:5mb","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"memcache:5mb","id":"https://addons.heroku.com/addons/memcache:5mb","description":"Memcache 5 MB"},{"url":"https://addons.heroku.com/addons/tddium:standard","price_cents":5000,"state":"public","beta":false,"price_unit":"month","name":"tddium:standard","id":"https://addons.heroku.com/addons/tddium:standard","description":"Tddium Standard"},{"url":"https://addons.heroku.com/addons/justonedb:xi","price_cents":19900,"state":"public","beta":false,"price_unit":"month","name":"justonedb:xi","id":"https://addons.heroku.com/addons/justonedb:xi","description":"JustOneDB - NewSQL Cloud Database Xi"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Kappa","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa","name":"shogun-tmaher:kappa","description":"Shogun-tmaher Kappa","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Mecha Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha-postgis","name":"heroku-postgresql:mecha-postgis","description":"Heroku Postgres Mecha Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Letmein","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"letmein:test","description":"Letmein Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/blitline:producer","price_cents":3599,"state":"public","beta":false,"price_unit":"month","name":"blitline:producer","id":"https://addons.heroku.com/addons/blitline:producer","description":"Blitline Producer"},{"url":"https://addons.heroku.com/addons/statsmix:pro","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"statsmix:pro","id":"https://addons.heroku.com/addons/statsmix:pro","description":"StatsMix Pro"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"shogun-tmaher:baku","description":"Shogun-tmaher Baku","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogunjdixon:ronin","description":"Shogunjdixon Ronin","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:mega","price_cents":500000,"state":"public","beta":false,"price_unit":"month","name":"logentries:mega","id":"https://addons.heroku.com/addons/logentries:mega","description":"Logentries Mega"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Ronin Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-staging","name":"shogun-freeformz:ronin-staging","description":"Shogun-freeformz Ronin-staging","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Sendgrid","plan_description":"Free","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"free","name":"sendgrid:free","description":"SendGrid Sendgrid Free","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/dbinsights:starter","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"dbinsights:starter","id":"https://addons.heroku.com/addons/dbinsights:starter","description":"DbInsights Starter"},{"url":"https://addons.heroku.com/addons/pandastream:duo","price_cents":19800,"state":"public","beta":false,"price_unit":"month","name":"pandastream:duo","id":"https://addons.heroku.com/addons/pandastream:duo","description":"PandaStream Duo"},{"state":"disabled","url":null,"group_description":"Xeround","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"xeround:test","description":"Xeround the cloud database Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Websolr","plan_description":"Legacy Titanium","attachable":false,"beta":false,"price":{"cents":49900,"unit":"month"},"terms_of_service":false,"slug":"legacy_titanium","name":"websolr:legacy_titanium","description":"Websolr Legacy Titanium","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_worker:grande","price_cents":7200,"state":"public","beta":false,"price_unit":"month","name":"iron_worker:grande","id":"https://addons.heroku.com/addons/iron_worker:grande","description":"IronWorker Grande"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:zilla","price_cents":160000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:zilla","id":"https://addons.heroku.com/addons/heroku-postgresql:zilla","description":"Heroku Postgres Zilla"},{"state":"disabled","url":null,"group_description":"Searchify","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"searchify:test","description":"Searchify IndexTank Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Glenntest3","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"glenntest3:test","description":"Glenn's Test Addon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Nuvolabase","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"nuvolabase:test","description":"Nuvolabase Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/airbrake:enterprise_production","price_cents":49900,"state":"public","beta":false,"price_unit":"month","name":"airbrake:enterprise_production","id":"https://addons.heroku.com/addons/airbrake:enterprise_production","description":"Airbrake Enterprise Production"},{"url":"https://addons.heroku.com/addons/xeround:basic250","price_cents":3300,"state":"public","beta":false,"price_unit":"month","name":"xeround:basic250","id":"https://addons.heroku.com/addons/xeround:basic250","description":"Xeround the cloud database Basic 250MB"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Fugu Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-staging","name":"shogun-freeformz:fugu-staging","description":"Shogun-freeformz Fugu-staging","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Oneloginherokusaml","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"oneloginherokusaml:test","description":"Oneloginherokusaml Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shove","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shove:test","description":"Shove Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"shogunhgimenez:baku","description":"Shogunhgimenez Baku","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Crond","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"crond:test","description":"Crond Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bobik","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"bobik:test","description":"Bobik Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Heroku Shared Postgresql","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"heroku-shared-postgresql:test","description":"Heroku Shared PostgreSQL Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Splunk","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"splunk:test","description":"Splunk Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Trial","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"trial","name":"shogunhgimenez:trial","description":"Shogunhgimenez Trial","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/progstr:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"progstr:test","id":"https://addons.heroku.com/addons/progstr:test","description":"Progstr Logger Test"},{"url":"https://addons.heroku.com/addons/loggly:woodchuck","price_cents":14900,"state":"public","beta":false,"price_unit":"month","name":"loggly:woodchuck","id":"https://addons.heroku.com/addons/loggly:woodchuck","description":"Loggly Woodchuck"},{"state":"disabled","url":null,"group_description":"Airbrake","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"airbrake:test","description":"Airbrake Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zencoder:4k","price_cents":12000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:4k","id":"https://addons.heroku.com/addons/zencoder:4k","description":"Zencoder 4,000 Minutes"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"shogun-freeformz:fugu","description":"Shogun-freeformz Fugu","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:2500","price_cents":16500,"state":"public","beta":false,"price_unit":"month","name":"memcachier:2500","id":"https://addons.heroku.com/addons/memcachier:2500","description":"MemCachier 2.5 Gb"},{"state":"alpha","url":null,"group_description":"Vixie Production","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"vixie-production:test","description":"Vixie-production Test","consumes_dyno_hours":true},{"url":"https://addons.heroku.com/addons/sendgrid:platinum","price_cents":39995,"state":"public","beta":false,"price_unit":"month","name":"sendgrid:platinum","id":"https://addons.heroku.com/addons/sendgrid:platinum","description":"SendGrid Platinum"},{"url":"https://addons.heroku.com/addons/cloudant:argon","price_cents":1500,"state":"public","beta":false,"price_unit":"month","name":"cloudant:argon","id":"https://addons.heroku.com/addons/cloudant:argon","description":"Cloudant Argon"},{"url":"https://addons.heroku.com/addons/dashmin:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"dashmin:test","id":"https://addons.heroku.com/addons/dashmin:test","description":"Dashmin Test"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Baku Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku-postgis","name":"shogun-freeformz:baku-postgis","description":"Shogun-freeformz Baku-postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"deployhooks2:test","description":"Deployhooks2 Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/tripwire:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"tripwire:test","id":"https://addons.heroku.com/addons/tripwire:test","description":"Tripwire Test"},{"url":"https://addons.heroku.com/addons/zencoder:100k","price_cents":200000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:100k","id":"https://addons.heroku.com/addons/zencoder:100k","description":"Zencoder 100,000 Minutes"},{"state":"alpha","url":null,"group_description":"Dynamodb","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"dynamodb:test","description":"Dynamodb Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"cranium:baku","description":"Cranium baku","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongolab:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"mongolab:starter","id":"https://addons.heroku.com/addons/mongolab:starter","description":"MongoLab Starter"},{"url":"https://addons.heroku.com/addons/pandastream:sandbox","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pandastream:sandbox","id":"https://addons.heroku.com/addons/pandastream:sandbox","description":"PandaStream Sandbox"},{"url":"https://addons.heroku.com/addons/pubnub:starter","price_cents":4999,"state":"public","beta":false,"price_unit":"month","name":"pubnub:starter","id":"https://addons.heroku.com/addons/pubnub:starter","description":"PubNub Starter"},{"state":"alpha","url":null,"group_description":"Chatspire","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"chatspire:test","description":"Chatspire Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogun-freeformz:ika","description":"Shogun-freeformz Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Myaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"myaddon:test","description":"Myaddon Test","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Heroku Shared Postgresql","plan_description":"Basic","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"heroku-shared-postgresql:basic","description":"Heroku Shared PostgreSQL Basic","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Fugu Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-postgis","name":"shogun-will:fugu-postgis","description":"Shogun-will Fugu Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Errorbucket","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"errorbucket:test","description":"Errorbucket Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_worker:titanium","price_cents":99900,"state":"public","beta":false,"price_unit":"month","name":"iron_worker:titanium","id":"https://addons.heroku.com/addons/iron_worker:titanium","description":"IronWorker Titanium"},{"url":"https://addons.heroku.com/addons/flying_sphinx:ceramic","price_cents":5500,"state":"public","beta":false,"price_unit":"month","name":"flying_sphinx:ceramic","id":"https://addons.heroku.com/addons/flying_sphinx:ceramic","description":"Flying Sphinx Ceramic"},{"url":"https://addons.heroku.com/addons/airbrake:production_pro_plus","price_cents":19900,"state":"public","beta":false,"price_unit":"month","name":"airbrake:production_pro_plus","id":"https://addons.heroku.com/addons/airbrake:production_pro_plus","description":"Airbrake Production Pro Plus"},{"state":"alpha","url":null,"group_description":"Postgres","plan_description":"Devcloud","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"devcloud","name":"postgres:devcloud","description":"Postgres Devcloud","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Ika Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika-postgis","name":"shogun-tmaher:ika-postgis","description":"Shogun-tmaher Ika Postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Scheduler","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"scheduler:test","description":"Heroku Scheduler Test","consumes_dyno_hours":true},{"state":"disabled","url":null,"group_description":"Recurly","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"recurly:test","description":"Recurly Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/chargify:launch","price_cents":3900,"state":"public","beta":false,"price_unit":"month","name":"chargify:launch","id":"https://addons.heroku.com/addons/chargify:launch","description":"Chargify Launch"},{"url":"https://addons.heroku.com/addons/database-com:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"database-com:test","id":"https://addons.heroku.com/addons/database-com:test","description":"database.com Test"},{"url":"https://addons.heroku.com/addons/zencoder:20k","price_cents":60000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:20k","id":"https://addons.heroku.com/addons/zencoder:20k","description":"Zencoder 20,000 Minutes"},{"state":"alpha","url":null,"group_description":"Joygun","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"joygun:test","description":"Joygun Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Isabelle Addontest","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"isabelle_addontest:test","description":"Isabelle_addontest Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_mq:ore","price_cents":999,"state":"public","beta":false,"price_unit":"month","name":"iron_mq:ore","id":"https://addons.heroku.com/addons/iron_mq:ore","description":"IronMQ Ore"},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogunhgimenez:ronin","description":"Shogunhgimenez Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cassandrahq","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cassandrahq:test","description":"CassandraHQ Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_worker:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"iron_worker:starter","id":"https://addons.heroku.com/addons/iron_worker:starter","description":"IronWorker Starter"},{"state":"alpha","url":null,"group_description":"Mctestaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mctestaddon:test","description":"Mctestaddon Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Xeround","plan_description":"500mb","attachable":false,"beta":false,"price":{"cents":7000,"unit":"month"},"terms_of_service":false,"slug":"500mb","name":"xeround:500mb","description":"Xeround the cloud database 500MB","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Fugu Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-postgis","name":"heroku-postgresql:fugu-postgis","description":"Heroku Postgres Fugu Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Zenslap","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"zenslap:test","description":"zenslap Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"shogun-will:crane","description":"Shogun-will Crane","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:high","price_cents":50000,"state":"public","beta":false,"price_unit":"month","name":"logentries:high","id":"https://addons.heroku.com/addons/logentries:high","description":"Logentries High"},{"state":"alpha","url":null,"group_description":"Notificationapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"notificationapp:test","description":"Notification App Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/airbrake:developer","price_cents":700,"state":"public","beta":false,"price_unit":"month","name":"airbrake:developer","id":"https://addons.heroku.com/addons/airbrake:developer","description":"Airbrake Developer"},{"url":"https://addons.heroku.com/addons/pusher:bigboy","price_cents":19900,"state":"public","beta":false,"price_unit":"month","name":"pusher:bigboy","id":"https://addons.heroku.com/addons/pusher:bigboy","description":"Pusher Big Boy"},{"url":"https://addons.heroku.com/addons/redistogo:mega","price_cents":400000,"state":"public","beta":false,"price_unit":"month","name":"redistogo:mega","id":"https://addons.heroku.com/addons/redistogo:mega","description":"Redis To Go Mega"},{"state":"alpha","url":null,"group_description":"Foo Bar","plan_description":"Baz","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baz","name":"foo-bar:baz","description":"Foo-bar Baz","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mwiki:large","price_cents":700,"state":"public","beta":false,"price_unit":"month","name":"mwiki:large","id":"https://addons.heroku.com/addons/mwiki:large","description":"mWiki Large"},{"state":"alpha","url":null,"group_description":"Ubalo","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"ubalo:test","description":"Ubalo Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:10000","price_cents":55000,"state":"public","beta":false,"price_unit":"month","name":"memcachier:10000","id":"https://addons.heroku.com/addons/memcachier:10000","description":"MemCachier 10 Gb"},{"state":"disabled","url":null,"group_description":"Websolr","plan_description":"Legacy Platinum","attachable":false,"beta":false,"price":{"cents":16900,"unit":"month"},"terms_of_service":false,"slug":"legacy_platinum","name":"websolr:legacy_platinum","description":"Websolr Legacy Platinum","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Ronin Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-staging","name":"shogun-will:ronin-staging","description":"Shogun-will Ronin staging","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Zilla Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla-postgis","name":"heroku-postgresql:zilla-postgis","description":"Heroku Postgres Zilla Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bubo","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"bubo:test","description":"Bubo Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"My Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"my_addon:test","description":"My_addon Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/spreedlycore:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"spreedlycore:test","id":"https://addons.heroku.com/addons/spreedlycore:test","description":"Spreedly Core Test"},{"url":"https://addons.heroku.com/addons/blitline:rockstar","price_cents":6599,"state":"public","beta":false,"price_unit":"month","name":"blitline:rockstar","id":"https://addons.heroku.com/addons/blitline:rockstar","description":"Blitline Rockstar"},{"url":"https://addons.heroku.com/addons/stackmob:bronze","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"stackmob:bronze","id":"https://addons.heroku.com/addons/stackmob:bronze","description":"Stackmob Bronze"},{"state":"disabled","url":null,"group_description":"Simple Worker","plan_description":"Tall","attachable":false,"beta":false,"price":{"cents":3600,"unit":"month"},"terms_of_service":false,"slug":"tall","name":"simple_worker:tall","description":"Appoxy SimpleWorker Tall","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogun-will:ronin","description":"Shogun-will Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"cranium:ika","description":"Cranium ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Invoicefu","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"invoicefu:test","description":"Invoicefu Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Ika Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika-postgis","name":"shogun-will:ika-postgis","description":"Shogun-will Ika Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Mecha Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha-postgis","name":"shogun-freeformz:mecha-postgis","description":"Shogun-freeformz Mecha-postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/sentry:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"sentry:developer","id":"https://addons.heroku.com/addons/sentry:developer","description":"Sentry Developer"},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Premium","attachable":false,"beta":false,"price":{"cents":30000,"unit":"month"},"terms_of_service":false,"slug":"premium","name":"indextank:premium","description":"IndexTank Search Premium","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Sendgrid","plan_description":"Lite","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"lite","name":"sendgrid:lite","description":"SendGrid Lite","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cloudassault","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cloudassault:test","description":"Cloud Assault Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"shogun-freeformz:crane","description":"Shogun-freeformz Crane","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/blitline:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"blitline:developer","id":"https://addons.heroku.com/addons/blitline:developer","description":"Blitline Developer Package"},{"url":"https://addons.heroku.com/addons/bonsai:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"bonsai:test","id":"https://addons.heroku.com/addons/bonsai:test","description":"Bonsai ElasticSearch Test"},{"state":"alpha","url":null,"group_description":"Vixie Staging","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"vixie-staging:test","description":"Vixie-staging Test","consumes_dyno_hours":true},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Http","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"http","name":"deployhooks2:http","description":"Deployhooks2 HTTP Hook","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/ssl:sni","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"ssl:sni","id":"https://addons.heroku.com/addons/ssl:sni","description":"SSL SNI SSL"},{"url":"https://addons.heroku.com/addons/blitz:1000","price_cents":79900,"state":"public","beta":false,"price_unit":"month","name":"blitz:1000","id":"https://addons.heroku.com/addons/blitz:1000","description":"Blitz 1000"},{"state":"disabled","url":null,"group_description":"Rhoconnect","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"rhoconnect:test","description":"RhoConnect Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Crond","plan_description":"Hourly","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"hourly","name":"crond:hourly","description":"Crond Hourly","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:production","price_cents":25000,"state":"public","beta":false,"price_unit":"month","name":"logentries:production","id":"https://addons.heroku.com/addons/logentries:production","description":"Logentries Production"},{"state":"alpha","url":null,"group_description":"Yorapi","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"yorapi:test","description":"Yorapi Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Musashi Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"musashi-postgis","name":"shogun-freeformz:musashi-postgis","description":"Shogun-freeformz Musashi-postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Trial","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"trial","name":"indextank:trial","description":"IndexTank Search Trial","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcache:100mb","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"memcache:100mb","id":"https://addons.heroku.com/addons/memcache:100mb","description":"Memcache 100 MB"},{"state":"public","url":null,"group_description":"Legacy Database","plan_description":"Ninja","attachable":false,"beta":false,"price":{"cents":80000,"unit":"month"},"terms_of_service":false,"slug":"ninja","name":"legacy-database:ninja","description":"Legacy Database Ninja","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Webperformance","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"webperformance:test","description":"Webperformance Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Traction","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"traction:test","description":"Traction Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Tsuchi","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"tsuchi:test","description":"Tsuchi Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Statsmix","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"statsmix:test","description":"StatsMix Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"cranium:crane","description":"Cranium crane","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:concept","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"logentries:concept","id":"https://addons.heroku.com/addons/logentries:concept","description":"Logentries Concept"},{"state":"alpha","url":null,"group_description":"Blogapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"blogapp:test","description":"Blogapp Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/ranger:elite","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"ranger:elite","id":"https://addons.heroku.com/addons/ranger:elite","description":"Ranger Elite"},{"state":"alpha","url":null,"group_description":"Mydbdc","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mydbdc:test","description":"Mydbdc Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logging:basic","price_cents":0,"state":"disabled","beta":false,"price_unit":"month","name":"logging:basic","id":"https://addons.heroku.com/addons/logging:basic","description":"Logging Basic"},{"url":"https://addons.heroku.com/addons/boxcar:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"boxcar:test","id":"https://addons.heroku.com/addons/boxcar:test","description":"Boxcar Push Notifications Test"},{"state":"disabled","url":null,"group_description":"Xeround","plan_description":"1gb","attachable":false,"beta":false,"price":{"cents":14900,"unit":"month"},"terms_of_service":false,"slug":"1gb","name":"xeround:1gb","description":"Xeround the cloud database 1GB","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/apigee_facebook:basic","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"apigee_facebook:basic","id":"https://addons.heroku.com/addons/apigee_facebook:basic","description":"Apigee for Facebook Basic"},{"state":"alpha","url":null,"group_description":"Pct141","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"pct141:test","description":"Pct141 Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Notificationapp1","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"notificationapp1:test","description":"Notificationapp1 Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/tronprint:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"tronprint:test","id":"https://addons.heroku.com/addons/tronprint:test","description":"Tronprint Test"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogun-will:ika","description":"Shogun-will Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"shogun-tmaher:crane","description":"Shogun-tmaher Crane","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/searchify:small","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"searchify:small","id":"https://addons.heroku.com/addons/searchify:small","description":"Searchify IndexTank Small"},{"state":"alpha","url":null,"group_description":"Mailchimp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mailchimp:test","description":"Mailchimp Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/framey:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"framey:test","id":"https://addons.heroku.com/addons/framey:test","description":"Framey Test"},{"state":"alpha","url":null,"group_description":"Isabelle Test","plan_description":"Standard","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"standard","name":"isabelle-test:standard","description":" Standard","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Starter","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"starter","name":"indextank:starter","description":"IndexTank Search Starter","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zencoder:2k","price_cents":8000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:2k","id":"https://addons.heroku.com/addons/zencoder:2k","description":"Zencoder 2,000 Minutes"},{"url":"https://addons.heroku.com/addons/mailgun:pro","price_cents":7900,"state":"public","beta":false,"price_unit":"month","name":"mailgun:pro","id":"https://addons.heroku.com/addons/mailgun:pro","description":"Mailgun Pro"},{"state":"disabled","url":null,"group_description":"Cloudcounter V2","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cloudcounter_v2:test","description":"Cloudcounter_v2 Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:heavy","price_cents":100000,"state":"public","beta":false,"price_unit":"month","name":"logentries:heavy","id":"https://addons.heroku.com/addons/logentries:heavy","description":"Logentries Heavy"},{"url":"https://addons.heroku.com/addons/chargify:start","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"chargify:start","id":"https://addons.heroku.com/addons/chargify:start","description":"Chargify Start"},{"url":"https://addons.heroku.com/addons/moonshadosms:plus","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"moonshadosms:plus","id":"https://addons.heroku.com/addons/moonshadosms:plus","description":"Moonshado SMS Plus"},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Pro","attachable":false,"beta":false,"price":{"cents":17500,"unit":"month"},"terms_of_service":false,"slug":"pro","name":"indextank:pro","description":"IndexTank Search Pro","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/apigee:basic","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"apigee:basic","id":"https://addons.heroku.com/addons/apigee:basic","description":"Apigee For Twitter Basic"},{"state":"public","url":null,"group_description":"Flying Sphinx","plan_description":"Marble","attachable":false,"beta":false,"price":{"cents":30000,"unit":"month"},"terms_of_service":false,"slug":"marble","name":"flying_sphinx:marble","description":"Flying Sphinx Marble","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:baku","price_cents":320000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:baku","id":"https://addons.heroku.com/addons/heroku-postgresql:baku","description":"Heroku Postgres Baku"},{"state":"alpha","url":null,"group_description":"Bearings","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"bearings:test","description":"Bearings Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Endax Fourteen","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"endax-fourteen:test","description":"Endax-fourteen Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"cranium:ronin","description":"Cranium ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Testaddon100","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"testaddon100:test","description":"Testaddon100 Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Musashi Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"musashi-postgis","name":"shogun-will:musashi-postgis","description":"Shogun-will Musashi Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogun-tmaher:ronin","description":"Shogun-tmaher Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Request Logger","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"request-logger:test","description":"Request-logger Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Mailchimp Tester","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mailchimp-tester:test","description":"Mailchimp-tester Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/loggly:squirrel","price_cents":4900,"state":"public","beta":false,"price_unit":"month","name":"loggly:squirrel","id":"https://addons.heroku.com/addons/loggly:squirrel","description":"Loggly Squirrel"},{"state":"alpha","url":null,"group_description":"Zinc","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"zinc:test","description":"Zinc Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Pvh","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-pvh:test","description":"Shogun-pvh Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"shogunjdixon:baku","description":"Shogunjdixon Baku","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcache:50gb","price_cents":350000,"state":"public","beta":false,"price_unit":"month","name":"memcache:50gb","id":"https://addons.heroku.com/addons/memcache:50gb","description":"Memcache 50 GB"},{"state":"public","url":null,"group_description":"Legacy Database","plan_description":"Ronin","attachable":false,"beta":false,"price":{"cents":20000,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"legacy-database:ronin","description":"Legacy Database Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Taninaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"taninaddon:test","description":"Taninaddon Test","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Shared Database","plan_description":"20gb","attachable":false,"beta":false,"price":{"cents":1500,"unit":"month"},"terms_of_service":false,"slug":"20gb","name":"shared-database:20gb","description":"Shared Database 20GB","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongohq:micro","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"mongohq:micro","id":"https://addons.heroku.com/addons/mongohq:micro","description":"MongoHQ MongoHQ Micro"},{"state":"alpha","url":null,"group_description":"Workdivision","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"workdivision:test","description":"Workdivision Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/stackmob:iron","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"stackmob:iron","id":"https://addons.heroku.com/addons/stackmob:iron","description":"Stackmob Iron"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Pg9test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"pg9test","name":"shogun-will:pg9test","description":"Shogun-will PG9Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Ika Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika-postgis","name":"shogun-freeformz:ika-postgis","description":"Shogun-freeformz Ika-postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Malicealpha","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"malicealpha:test","description":"Malice Alpha Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Croonga","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"croonga:test","description":"Croonga Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Cloudcounter","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"cloudcounter:basic","description":"CloudCounter Basic","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bind","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"bind:test","description":"Bind Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Canary","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"canary:test","description":"Canary Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/blitz:5000","price_cents":129900,"state":"public","beta":false,"price_unit":"month","name":"blitz:5000","id":"https://addons.heroku.com/addons/blitz:5000","description":"Blitz 5000"},{"url":"https://addons.heroku.com/addons/dyn:lite25","price_cents":6000,"state":"public","beta":false,"price_unit":"month","name":"dyn:lite25","id":"https://addons.heroku.com/addons/dyn:lite25","description":"DynECT Managed DNS Lite 25"},{"state":"alpha","url":null,"group_description":"Clojure","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"clojure:test","description":"Clojure Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/xeround:basic100","price_cents":1700,"state":"public","beta":false,"price_unit":"month","name":"xeround:basic100","id":"https://addons.heroku.com/addons/xeround:basic100","description":"Xeround the cloud database Basic 100MB"},{"state":"public","url":null,"group_description":"Turkey","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"turkey:test","description":"Turkey Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Tolq","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"tolq:test","description":"Tolq Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Simplegeo","plan_description":"Premium","attachable":false,"beta":false,"price":{"cents":7900,"unit":"month"},"terms_of_service":false,"slug":"premium","name":"simplegeo:premium","description":"SimpleGeo Premium","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Development","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"development","name":"shogunhgimenez:development","description":"Shogunhgimenez Development","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/ssl:ip","price_cents":10000,"state":"public","beta":false,"price_unit":"month","name":"ssl:ip","id":"https://addons.heroku.com/addons/ssl:ip","description":"SSL IP Based Custom SSL"},{"url":"https://addons.heroku.com/addons/sourceninja:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"sourceninja:test","id":"https://addons.heroku.com/addons/sourceninja:test","description":"SourceNinja Test"},{"url":"https://addons.heroku.com/addons/tddium:plus","price_cents":8000,"state":"public","beta":false,"price_unit":"month","name":"tddium:plus","id":"https://addons.heroku.com/addons/tddium:plus","description":"Tddium Plus"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Mecha Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha-postgis","name":"shogun-will:mecha-postgis","description":"Shogun-will Mecha Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"shogunhgimenez:zilla","description":"Shogunhgimenez Zilla","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Ronin Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-postgis","name":"shogun-freeformz:ronin-postgis","description":"Shogun-freeformz Ronin-postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Iron Worker","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"iron_worker:test","description":"IronWorker Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_mq:cast","price_cents":4999,"state":"public","beta":false,"price_unit":"month","name":"iron_mq:cast","id":"https://addons.heroku.com/addons/iron_mq:cast","description":"IronMQ Cast"},{"state":"alpha","url":null,"group_description":"Heroku My Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"heroku_my_addon:test","description":"Heroku_my_addon Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Newsfeedlab","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"newsfeedlab:test","description":"Newsfeed Lab Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudant:neon","price_cents":3900,"state":"public","beta":false,"price_unit":"month","name":"cloudant:neon","id":"https://addons.heroku.com/addons/cloudant:neon","description":"Cloudant Neon"},{"state":"alpha","url":null,"group_description":"Foo Bar","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"foo-bar:test","description":"Foo-bar Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Redisko","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"redisko:test","description":"Redisko Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Pgbackups","plan_description":"Daily","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"daily","name":"pgbackups:daily","description":"PG Backups Daily","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cleardb:ignite","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"cleardb:ignite","id":"https://addons.heroku.com/addons/cleardb:ignite","description":"ClearDB MySQL Database Ignite"},{"state":"disabled","url":null,"group_description":"Bifrost","plan_description":"Ronin","attachable":false,"beta":false,"price":{"cents":20000,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"bifrost:ronin","description":"PostgreSQL 9.0 Ronin","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/raydash:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"raydash:test","id":"https://addons.heroku.com/addons/raydash:test","description":"Raydash Test"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Zilla Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla-postgis","name":"shogun-freeformz:zilla-postgis","description":"Shogun-freeformz Zilla-postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Pedros Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"pedros_addon:test","description":"Pedros_addon Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/parse:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"parse:test","id":"https://addons.heroku.com/addons/parse:test","description":"Parse Test"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-tmaher:test","description":"Shogun-tmaher Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Devplus","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"devplus","name":"shogunhgimenez:devplus","description":"Shogunhgimenez Dev Plus","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongolab:medium","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"mongolab:medium","id":"https://addons.heroku.com/addons/mongolab:medium","description":"MongoLab Medium"},{"state":"alpha","url":null,"group_description":"Elasticsearch","plan_description":"Test2","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test2","name":"elasticsearch:test2","description":"Squatter ElasticSearch Test 2","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logging:advanced","price_cents":10000,"state":"disabled","beta":false,"price_unit":"month","name":"logging:advanced","id":"https://addons.heroku.com/addons/logging:advanced","description":"Logging Advanced"},{"state":"alpha","url":null,"group_description":"Appboard","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"appboard:test","description":"Appboard Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Logentries","plan_description":"Tryit Old","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"tryit_old","name":"logentries:tryit_old","description":"Logentries TryIt","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Hachiko","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"hachiko:test","description":"Hachiko Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bind","plan_description":"Beanstalkd","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"beanstalkd","name":"bind:beanstalkd","description":"Bind Beanstalk","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Exceptional","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"exceptional:basic","description":"Exceptional Exceptional Basic","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudant:krypton","price_cents":39900,"state":"public","beta":false,"price_unit":"month","name":"cloudant:krypton","id":"https://addons.heroku.com/addons/cloudant:krypton","description":"Cloudant Krypton"},{"url":"https://addons.heroku.com/addons/cloudant:helium","price_cents":11900,"state":"public","beta":false,"price_unit":"month","name":"cloudant:helium","id":"https://addons.heroku.com/addons/cloudant:helium","description":"Cloudant Helium"},{"state":"alpha","url":null,"group_description":"Postgres","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"postgres:test","description":"Postgres Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Musashi Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"musashi-postgis","name":"heroku-postgresql:musashi-postgis","description":"Heroku Postgres Musashi Postgis","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Redistogo","plan_description":"Rho.Small.Vm","attachable":false,"beta":false,"price":{"cents":1500,"unit":"month"},"terms_of_service":false,"slug":"rho.small.vm","name":"redistogo:rho.small.vm","description":"Redis To Go Rho Mobile Small VM","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/airbrake:production","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"airbrake:production","id":"https://addons.heroku.com/addons/airbrake:production","description":"Airbrake Production"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"shogun-will:zilla","description":"Shogun-will Zilla","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/sendgrid:gold","price_cents":19995,"state":"public","beta":false,"price_unit":"month","name":"sendgrid:gold","id":"https://addons.heroku.com/addons/sendgrid:gold","description":"SendGrid Gold"},{"url":"https://addons.heroku.com/addons/sendgrid:bronze","price_cents":995,"state":"public","beta":false,"price_unit":"month","name":"sendgrid:bronze","id":"https://addons.heroku.com/addons/sendgrid:bronze","description":"SendGrid Bronze"},{"state":"alpha","url":null,"group_description":"Isabelle Test","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"isabelle-test:test","description":" Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/moonshadosms:free","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"moonshadosms:free","id":"https://addons.heroku.com/addons/moonshadosms:free","description":"Moonshado SMS Free"},{"state":"alpha","url":null,"group_description":"Keavy Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"keavy-addon:test","description":"Keavy-addon Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Simplegeo","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":900,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"simplegeo:basic","description":"SimpleGeo Basic","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Ronin Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-staging","name":"shogun-tmaher:ronin-staging","description":"Shogun-tmaher Ronin staging","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"shogun-tmaher:fugu","description":"Shogun-tmaher Fugu","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Sg","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"sg:test","description":"Sg Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bind","plan_description":"Redis","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"redis","name":"bind:redis","description":"Bind Redis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/blitline:deployer","price_cents":1299,"state":"public","beta":false,"price_unit":"month","name":"blitline:deployer","id":"https://addons.heroku.com/addons/blitline:deployer","description":"Blitline Deployer"},{"state":"alpha","url":null,"group_description":"Dynonamics","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"dynonamics:test","description":"Dynonamics Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/stillalive:basic","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"stillalive:basic","id":"https://addons.heroku.com/addons/stillalive:basic","description":"StillAlive Basic"},{"state":"disabled","url":null,"group_description":"Simple Worker","plan_description":"Grande","attachable":false,"beta":false,"price":{"cents":7200,"unit":"month"},"terms_of_service":false,"slug":"grande","name":"simple_worker:grande","description":"Appoxy SimpleWorker Grande","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cleardb:drift","price_cents":4999,"state":"public","beta":false,"price_unit":"month","name":"cleardb:drift","id":"https://addons.heroku.com/addons/cleardb:drift","description":"ClearDB MySQL Database Drift"},{"state":"alpha","url":null,"group_description":"Connfu","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"connfu:test","description":"Connfu Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/blitz:250","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"blitz:250","id":"https://addons.heroku.com/addons/blitz:250","description":"Blitz 250"},{"url":"https://addons.heroku.com/addons/cloudmailin:microplus","price_cents":1700,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:microplus","id":"https://addons.heroku.com/addons/cloudmailin:microplus","description":"CloudMailIn Micro Plus"},{"url":"https://addons.heroku.com/addons/iron_mq:rust","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"iron_mq:rust","id":"https://addons.heroku.com/addons/iron_mq:rust","description":"IronMQ Rust"},{"state":"alpha","url":null,"group_description":"Twilio","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"twilio:test","description":"Twilio Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"shogunjdixon:zilla","description":"Shogunjdixon Zilla","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/rhoconnect:basic","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"rhoconnect:basic","id":"https://addons.heroku.com/addons/rhoconnect:basic","description":"RhoConnect Basic"},{"url":"https://addons.heroku.com/addons/robowhois:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"robowhois:test","id":"https://addons.heroku.com/addons/robowhois:test","description":"RoboWhois Test"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Fugu Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-postgis","name":"shogun-tmaher:fugu-postgis","description":"Shogun-tmaher Fugu Postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/docraptor:professional","price_cents":3700,"state":"public","beta":false,"price_unit":"month","name":"docraptor:professional","id":"https://addons.heroku.com/addons/docraptor:professional","description":"DocRaptor Professional"},{"url":"https://addons.heroku.com/addons/restful_metrics:large","price_cents":29900,"state":"public","beta":false,"price_unit":"month","name":"restful_metrics:large","id":"https://addons.heroku.com/addons/restful_metrics:large","description":"RESTful Metrics Large"},{"url":"https://addons.heroku.com/addons/pgbackups:basic","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pgbackups:basic","id":"https://addons.heroku.com/addons/pgbackups:basic","description":"PG Backups Basic"},{"state":"disabled","url":null,"group_description":"Bundles","plan_description":"Single","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"single","name":"bundles:single","description":"Bundles Single Bundle","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Kappa Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa-postgis","name":"heroku-postgresql:kappa-postgis","description":"Heroku Postgres Kappa Postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Memcached","plan_description":"Advanced","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"advanced","name":"memcached:advanced","description":"Memcached Memcached Advanced","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Cleardb","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cleardb:test","description":"ClearDB MySQL Database Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/ssl:endpoint","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"ssl:endpoint","id":"https://addons.heroku.com/addons/ssl:endpoint","description":"SSL Endpoint"},{"state":"alpha","url":null,"group_description":"Shogun Pvh","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogun-pvh:ika","description":"Shogun-pvh Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogun-freeformz:ronin","description":"Shogun-freeformz Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Opencnam","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"opencnam:test","description":"Opencnam Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Docubear","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"docubear:test","description":"Docubear Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:mecha","price_cents":640000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:mecha","id":"https://addons.heroku.com/addons/heroku-postgresql:mecha","description":"Heroku Postgres Mecha"},{"url":"https://addons.heroku.com/addons/zencoder:10k","price_cents":30000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:10k","id":"https://addons.heroku.com/addons/zencoder:10k","description":"Zencoder 10,000 Minutes"},{"state":"alpha","url":null,"group_description":"Tempodb","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"tempodb:test","description":"Tempo Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/stackmob:silver","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"stackmob:silver","id":"https://addons.heroku.com/addons/stackmob:silver","description":"Stackmob Silver"},{"url":"https://addons.heroku.com/addons/logentries:staging","price_cents":10000,"state":"public","beta":false,"price_unit":"month","name":"logentries:staging","id":"https://addons.heroku.com/addons/logentries:staging","description":"Logentries Staging"},{"url":"https://addons.heroku.com/addons/justonedb:lambda","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"justonedb:lambda","id":"https://addons.heroku.com/addons/justonedb:lambda","description":"JustOneDB - NewSQL Cloud Database Lambda"},{"state":"alpha","url":null,"group_description":"Cdnbuddy","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cdnbuddy:test","description":"Cdnbuddy Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cleardb:scream","price_cents":9999,"state":"public","beta":false,"price_unit":"month","name":"cleardb:scream","id":"https://addons.heroku.com/addons/cleardb:scream","description":"ClearDB MySQL Database Scream"},{"url":"https://addons.heroku.com/addons/ranger:recon","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"ranger:recon","id":"https://addons.heroku.com/addons/ranger:recon","description":"Ranger Recon"},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Development","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"development","name":"heroku-postgresql:development","description":"Heroku Postgres Development","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/ssl:hostname","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"ssl:hostname","id":"https://addons.heroku.com/addons/ssl:hostname","description":"SSL Hostname Based SSL"}]
1
+ [{"url":"https://addons.heroku.com/addons/websolr:palladium","state":"public","price_cents":20000,"name":"websolr:palladium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/websolr:palladium","description":"Websolr Palladium"},{"url":"https://addons.heroku.com/addons/treasure-data:test","state":"public","price_cents":0,"name":"treasure-data:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/treasure-data:test","description":"Treasure Data Hadoop Test"},{"url":"https://addons.heroku.com/addons/dbinsights:standard","state":"public","price_cents":4000,"name":"dbinsights:standard","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/dbinsights:standard","description":"DbInsights Standard"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Crashnote","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"crashnote:test","selective":true,"beta":false,"description":"Crashnote Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/restful_metrics:medium","state":"public","price_cents":7900,"name":"restful_metrics:medium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/restful_metrics:medium","description":"RESTful Metrics Medium"},{"url":"https://addons.heroku.com/addons/sentry:enterprise","state":"public","price_cents":9900,"name":"sentry:enterprise","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/sentry:enterprise","description":"Sentry Enterprise"},{"slug":"zilla","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cranium","plan_description":"Zilla","price":{"cents":0,"unit":"month"},"attachable":true,"name":"cranium:zilla","selective":true,"beta":false,"description":"Cranium zilla","terms_of_service":false},{"url":"https://addons.heroku.com/addons/scheduler:standard","state":"public","price_cents":0,"name":"scheduler:standard","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/scheduler:standard","description":"Heroku Scheduler Standard"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Library","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"library:test","selective":true,"beta":false,"description":"Library Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Bean","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"bean:test","selective":true,"beta":false,"description":"Bean Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Yobuko","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"yobuko:test","selective":true,"beta":false,"description":"Yobuko Test","terms_of_service":false},{"slug":"ika","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Staging","plan_description":"Ika","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-staging:ika","selective":true,"beta":false,"description":"Shogun-staging Ika","terms_of_service":false},{"url":"https://addons.heroku.com/addons/custom_domains:wildcard","state":"disabled","price_cents":500,"name":"custom_domains:wildcard","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/custom_domains:wildcard","description":"Custom Domains Wildcard domains"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:kappa","state":"public","price_cents":0,"name":"heroku-postgresql:kappa","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/heroku-postgresql:kappa","description":"Heroku Postgres Kappa"},{"url":"https://addons.heroku.com/addons/flying_sphinx:granite","state":"public","price_cents":15000,"name":"flying_sphinx:granite","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/flying_sphinx:granite","description":"Flying Sphinx Granite"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Librato Metrics","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"librato-metrics:test","selective":true,"beta":false,"description":"Librato-metrics Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/loggly:mole","state":"public","price_cents":0,"name":"loggly:mole","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/loggly:mole","description":"Loggly Mole"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Dyn","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"dyn:test","selective":true,"beta":false,"description":"DynECT Managed DNS Test","terms_of_service":false},{"slug":"zilla","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Zilla","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:zilla","selective":true,"beta":false,"description":"Shogun-tmaher Zilla","terms_of_service":false},{"url":"https://addons.heroku.com/addons/deployhooks:irc","state":"public","price_cents":0,"name":"deployhooks:irc","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/deployhooks:irc","description":"Deploy Hooks IRC Hook"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Jchaddon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"jchaddon:test","selective":true,"beta":false,"description":"Jchaddon Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Dynonamics Staging","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"dynonamics-staging:test","selective":true,"beta":false,"description":"Dynonamics-staging Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Rabble","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"rabble:test","selective":true,"beta":false,"description":"Rabble Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/statsmix:developer","state":"public","price_cents":0,"name":"statsmix:developer","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/statsmix:developer","description":"StatsMix Developer"},{"url":"https://addons.heroku.com/addons/releases:advanced","state":"disabled","price_cents":10000,"name":"releases:advanced","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/releases:advanced","description":"Release Management Advanced"},{"slug":"zilla","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Legacy Database","plan_description":"Zilla","price":{"cents":160000,"unit":"month"},"attachable":false,"name":"legacy-database:zilla","selective":true,"beta":false,"description":"Legacy Database Zilla","terms_of_service":false},{"url":"https://addons.heroku.com/addons/tddium:mega","state":"public","price_cents":30000,"name":"tddium:mega","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/tddium:mega","description":"Tddium Mega"},{"slug":"zilla-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Zilla Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:zilla-postgis","selective":true,"beta":false,"description":"Shogun-will Zilla Postgis","terms_of_service":false},{"url":"https://addons.heroku.com/addons/dyn:lite50","state":"public","price_cents":9500,"name":"dyn:lite50","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/dyn:lite50","description":"DynECT Managed DNS Lite 50"},{"slug":"500","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Blitz","plan_description":"500","price":{"cents":0,"unit":"month"},"attachable":false,"name":"blitz:500","selective":true,"beta":false,"description":"Blitz 500","terms_of_service":false},{"slug":"ika","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Ika","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:ika","selective":true,"beta":false,"description":"Shogunhgimenez Ika","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Tempo","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"tempo:test","selective":true,"beta":false,"description":"Tempo Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Pagelime","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"pagelime:test","selective":true,"beta":false,"description":"Pagelime Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Onesky","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"onesky:test","selective":true,"beta":false,"description":"OneSky Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cloudability","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"cloudability:test","selective":true,"beta":false,"description":"Cloudability Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Neo4j Test","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"neo4j-test:test","selective":true,"beta":false,"description":"Neo4j-test Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/mongolab:large","state":"public","price_cents":4000,"name":"mongolab:large","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongolab:large","description":"MongoLab Large"},{"url":"https://addons.heroku.com/addons/deployhooks:http","state":"public","price_cents":0,"name":"deployhooks:http","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/deployhooks:http","description":"Deploy Hooks HTTP Post Hook"},{"url":"https://addons.heroku.com/addons/mailgun:hv","state":"public","price_cents":19900,"name":"mailgun:hv","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mailgun:hv","description":"Mailgun Pro High Volume"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Canary Review","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"canary-review:test","selective":true,"beta":false,"description":"Canary-review Test","terms_of_service":false},{"slug":"plus","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Indextank","plan_description":"Plus","price":{"cents":5000,"unit":"month"},"attachable":false,"name":"indextank:plus","selective":true,"beta":false,"description":"IndexTank Search Plus","terms_of_service":false},{"url":"https://addons.heroku.com/addons/xeround:pro512","state":"public","price_cents":9500,"name":"xeround:pro512","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/xeround:pro512","description":"Xeround the cloud database Pro 0.5GB"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Flying Sphinx","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"flying_sphinx:test","selective":true,"beta":false,"description":"Flying Sphinx Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Mzaddon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"mzaddon:test","selective":true,"beta":false,"description":"Mzaddon Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Wrong","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"wrong:test","selective":true,"beta":false,"description":"Wrong Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/papertrail:test","state":"public","price_cents":0,"name":"papertrail:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/papertrail:test","description":"Papertrail Test"},{"url":"https://addons.heroku.com/addons/cron:daily","state":"public","price_cents":0,"name":"cron:daily","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cron:daily","description":"Cron Daily Cron"},{"url":"https://addons.heroku.com/addons/zencoder:40k","state":"public","price_cents":120000,"name":"zencoder:40k","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zencoder:40k","description":"Zencoder 40,000 Minutes"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Ubalo Demo","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"ubalo-demo:test","selective":true,"beta":false,"description":"Ubalo-demo Test","terms_of_service":false},{"slug":"ika","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunjdixon","plan_description":"Ika","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunjdixon:ika","selective":true,"beta":false,"description":"Shogunjdixon Ika","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Fdr","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-fdr:test","selective":true,"beta":false,"description":"Shogun-fdr Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/mongohq:rs_large","state":"public","price_cents":30000,"name":"mongohq:rs_large","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongohq:rs_large","description":"MongoHQ Replica Set Large"},{"url":"https://addons.heroku.com/addons/memcache:10gb","state":"public","price_cents":80000,"name":"memcache:10gb","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcache:10gb","description":"Memcache 10 GB"},{"url":"https://addons.heroku.com/addons/deployhooks:basecamp","state":"public","price_cents":0,"name":"deployhooks:basecamp","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/deployhooks:basecamp","description":"Deploy Hooks Basecamp Hook"},{"url":"https://addons.heroku.com/addons/custom_domains:basic","state":"disabled","price_cents":0,"name":"custom_domains:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/custom_domains:basic","description":"Custom Domains Custom Domain"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Uploadjuicer","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"uploadjuicer:test","selective":true,"beta":false,"description":"Uploadjuicer Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Sourceninja1","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"sourceninja1:test","selective":true,"beta":false,"description":"Sourceninja1 Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Staging","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-staging:test","selective":true,"beta":false,"description":"Shogun-staging Test","terms_of_service":false},{"slug":"basic","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Redistogo Old","plan_description":"Basic","price":{"cents":0,"unit":"month"},"attachable":false,"name":"redistogo-old:basic","selective":true,"beta":false,"description":"RedisToGo Basic","terms_of_service":false},{"url":"https://addons.heroku.com/addons/iron_mq:titanium","state":"public","price_cents":99900,"name":"iron_mq:titanium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/iron_mq:titanium","description":"IronMQ Titanium"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Appharbordonothingaddon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"appharbordonothingaddon:test","selective":true,"beta":false,"description":"Appharbordonothingaddon Test","terms_of_service":false},{"slug":"email","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Deployhooks2","plan_description":"Email","price":{"cents":0,"unit":"month"},"attachable":true,"name":"deployhooks2:email","selective":true,"beta":false,"description":"Deployhooks2 eMail","terms_of_service":false},{"url":"https://addons.heroku.com/addons/cloudmailin:developer","state":"public","price_cents":0,"name":"cloudmailin:developer","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudmailin:developer","description":"CloudMailIn Developer"},{"slug":"baku","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Baku","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:baku","selective":true,"beta":false,"description":"Shogun-will Baku","terms_of_service":false},{"slug":"mecha-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Mecha Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:mecha-postgis","selective":true,"beta":false,"description":"Shogun-tmaher Mecha Postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Postageapp","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"postageapp:test","selective":true,"beta":false,"description":"Postageapp Test","terms_of_service":false},{"slug":"250mb","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Memcache","plan_description":"250mb","price":{"cents":4000,"unit":"month"},"attachable":false,"name":"memcache:250mb","selective":true,"beta":false,"description":"Memcache 250 MB","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Exceptionalnew","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"exceptionalnew:test","selective":true,"beta":false,"description":"Exceptionalnew Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/newrelic:standard","state":"public","price_cents":0,"name":"newrelic:standard","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/newrelic:standard","description":"New Relic Standard"},{"url":"https://addons.heroku.com/addons/pandastream:solo","state":"public","price_cents":9900,"name":"pandastream:solo","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pandastream:solo","description":"PandaStream Solo"},{"url":"https://addons.heroku.com/addons/deployhooks:email","state":"public","price_cents":0,"name":"deployhooks:email","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/deployhooks:email","description":"Deploy Hooks Email Hook"},{"slug":"basic","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Postgres","plan_description":"Basic","price":{"cents":0,"unit":"month"},"attachable":true,"name":"postgres:basic","selective":true,"beta":false,"description":"Postgres Basic","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Isabelle Test Addon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"isabelle_test_addon:test","selective":true,"beta":false,"description":"Isabelle_test_addon Test","terms_of_service":false},{"slug":"daily","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Crond","plan_description":"Daily","price":{"cents":0,"unit":"month"},"attachable":false,"name":"crond:daily","selective":true,"beta":false,"description":"Crond Daily","terms_of_service":false},{"slug":"plus","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Simplegeo","plan_description":"Plus","price":{"cents":4900,"unit":"month"},"attachable":false,"name":"simplegeo:plus","selective":true,"beta":false,"description":"SimpleGeo Plus","terms_of_service":false},{"slug":"ronin-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Ronin Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:ronin-postgis","selective":true,"beta":false,"description":"Shogun-will Ronin Postgis","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logentries:tryit","state":"public","price_cents":0,"name":"logentries:tryit","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:tryit","description":"Logentries TryIt"},{"url":"https://addons.heroku.com/addons/amazon_rds","state":"public","price_cents":0,"name":"amazon_rds","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/amazon_rds","description":"Amazon RDS Amazon RDS Integration"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-month","state":"public","price_cents":0,"name":"pgbackups:auto-month","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pgbackups:auto-month","description":"PG Backups Auto - One Month Retention"},{"slug":"campfire","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Deployhooks2","plan_description":"Campfire","price":{"cents":0,"unit":"month"},"attachable":true,"name":"deployhooks2:campfire","selective":true,"beta":false,"description":"Deployhooks2 Campfire","terms_of_service":false},{"url":"https://addons.heroku.com/addons/neo4j:test","state":"public","price_cents":0,"name":"neo4j:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/neo4j:test","description":"Neo4j Test"},{"url":"https://addons.heroku.com/addons/statsmix:standard","state":"public","price_cents":4900,"name":"statsmix:standard","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/statsmix:standard","description":"StatsMix Standard"},{"url":"https://addons.heroku.com/addons/stackmob:gold","state":"public","price_cents":8900,"name":"stackmob:gold","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/stackmob:gold","description":"Stackmob Gold"},{"url":"https://addons.heroku.com/addons/pusher:startup","state":"public","price_cents":4900,"name":"pusher:startup","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pusher:startup","description":"Pusher Startup"},{"url":"https://addons.heroku.com/addons/rhoconnect:enterprise","state":"public","price_cents":49900,"name":"rhoconnect:enterprise","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/rhoconnect:enterprise","description":"RhoConnect Enterprise"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Dbinsights","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"dbinsights:test","selective":true,"beta":false,"description":"DbInsights Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/dbinsights:basic","state":"public","price_cents":2000,"name":"dbinsights:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/dbinsights:basic","description":"DbInsights Basic"},{"slug":"starter","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Searchify","plan_description":"Starter","price":{"cents":0,"unit":"month"},"attachable":false,"name":"searchify:starter","selective":true,"beta":false,"description":"Searchify IndexTank Starter","terms_of_service":false},{"url":"https://addons.heroku.com/addons/chargify:developer","state":"public","price_cents":0,"name":"chargify:developer","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/chargify:developer","description":"Chargify Developer"},{"slug":"mecha","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunjdixon","plan_description":"Mecha","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunjdixon:mecha","selective":true,"beta":false,"description":"Shogunjdixon Mecha","terms_of_service":false},{"slug":"fugu","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Fugu","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:fugu","selective":true,"beta":false,"description":"Shogunhgimenez Fugu","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Justonedb","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"justonedb:test","selective":true,"beta":false,"description":"JustOneDB - NewSQL Cloud Database Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:ika","state":"public","price_cents":80000,"name":"heroku-postgresql:ika","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/heroku-postgresql:ika","description":"Heroku Postgres Ika"},{"url":"https://addons.heroku.com/addons/zerigo_dns:tier1","state":"public","price_cents":700,"name":"zerigo_dns:tier1","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zerigo_dns:tier1","description":"Zerigo DNS Zerigo Tier 1"},{"url":"https://addons.heroku.com/addons/adminium:petproject","state":"public","price_cents":0,"name":"adminium:petproject","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/adminium:petproject","description":"Adminium Pet Project"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Stillalive Staging","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"stillalive-staging:test","selective":true,"beta":false,"description":"Stillalive-staging Test","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Simplegeo","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"simplegeo:test","selective":true,"beta":false,"description":"SimpleGeo Test","terms_of_service":false},{"slug":"kappa-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Kappa Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:kappa-postgis","selective":true,"beta":false,"description":"Shogun-freeformz Kappa-postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Mongocrypt","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"mongocrypt:test","selective":true,"beta":false,"description":"Mongocrypt Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/mongohq:large","state":"public","price_cents":4900,"name":"mongohq:large","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongohq:large","description":"MongoHQ MongoHQ Large"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Loggly","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"loggly:test","selective":true,"beta":false,"description":"Loggly Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/zerigo_dns:tier2","state":"public","price_cents":2000,"name":"zerigo_dns:tier2","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zerigo_dns:tier2","description":"Zerigo DNS Zerigo Tier 2"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Vibes Goals","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"vibes-goals:test","selective":true,"beta":false,"description":"Vibes-goals Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/cloudmailin:premium","state":"public","price_cents":8500,"name":"cloudmailin:premium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudmailin:premium","description":"CloudMailIn Premium"},{"url":"https://addons.heroku.com/addons/docraptor:max","state":"public","price_cents":18900,"name":"docraptor:max","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/docraptor:max","description":"DocRaptor Max"},{"url":"https://addons.heroku.com/addons/deployhooks:campfire","state":"public","price_cents":0,"name":"deployhooks:campfire","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/deployhooks:campfire","description":"Deploy Hooks Campfire Hook"},{"slug":"sms","state":"public","url":"http://devcenter.heroku.com/articles/deploy-hooks","consumes_dyno_hours":false,"group_description":"Deploy Hooks","plan_description":"SMS","price":{"cents":0,"unit":"month"},"attachable":false,"name":"deployhooks:sms","selective":false,"beta":false,"description":"SMS Hook","terms_of_service":false},{"url":"https://addons.heroku.com/addons/tddium:starter","state":"public","price_cents":700,"name":"tddium:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/tddium:starter","description":"Tddium Starter"},{"slug":"crane","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Staging","plan_description":"Crane","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-staging:crane","selective":true,"beta":false,"description":"Shogun-staging Crane","terms_of_service":false},{"slug":"noeqd","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Bind","plan_description":"Noeqd","price":{"cents":0,"unit":"month"},"attachable":false,"name":"bind:noeqd","selective":true,"beta":false,"description":"Bind Noeqd","terms_of_service":false},{"url":"https://addons.heroku.com/addons/iron_mq:steel","state":"public","price_cents":14999,"name":"iron_mq:steel","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/iron_mq:steel","description":"IronMQ Steel"},{"slug":"zilla","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Zilla","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:zilla","selective":true,"beta":false,"description":"Shogun-freeformz Zilla","terms_of_service":false},{"slug":"fugu","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Legacy Database","plan_description":"Fugu","price":{"cents":40000,"unit":"month"},"attachable":false,"name":"legacy-database:fugu","selective":true,"beta":false,"description":"Legacy Database Fugu","terms_of_service":false},{"url":"https://addons.heroku.com/addons/websolr:chromium","state":"public","price_cents":5000,"name":"websolr:chromium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/websolr:chromium","description":"Websolr Chromium"},{"slug":"ika","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Ika","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:ika","selective":true,"beta":false,"description":"Shogun-tmaher Ika","terms_of_service":false},{"slug":"fugu","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cranium","plan_description":"Fugu","price":{"cents":0,"unit":"month"},"attachable":true,"name":"cranium:fugu","selective":true,"beta":false,"description":"Cranium fugu","terms_of_service":false},{"url":"https://addons.heroku.com/addons/pandastream:quad","state":"public","price_cents":39600,"name":"pandastream:quad","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pandastream:quad","description":"PandaStream Quad"},{"url":"https://addons.heroku.com/addons/restful_metrics:small","state":"public","price_cents":2900,"name":"restful_metrics:small","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/restful_metrics:small","description":"RESTful Metrics Small"},{"url":"https://addons.heroku.com/addons/superfeedr:test","state":"public","price_cents":0,"name":"superfeedr:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/superfeedr:test","description":"Superfeedr Test"},{"slug":"fugu-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Fugu Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:fugu-postgis","selective":true,"beta":false,"description":"Shogun-freeformz Fugu-postgis","terms_of_service":false},{"url":"https://addons.heroku.com/addons/stillalive:starter","state":"public","price_cents":1500,"name":"stillalive:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/stillalive:starter","description":"StillAlive Starter"},{"slug":"ronin","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Staging","plan_description":"Ronin","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-staging:ronin","selective":true,"beta":false,"description":"Shogun-staging Ronin","terms_of_service":false},{"url":"https://addons.heroku.com/addons/zerigo_dns:basic","state":"public","price_cents":0,"name":"zerigo_dns:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zerigo_dns:basic","description":"Zerigo DNS Zerigo Basic"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Force Database","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"force-database:test","selective":true,"beta":false,"description":"ForceDatabaseInc Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Weborb Clustering","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"weborb_clustering:test","selective":true,"beta":false,"description":"Weborb_clustering Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:test","selective":true,"beta":false,"description":"Shogunhgimenez Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/airbrake:developer_plus","state":"public","price_cents":1400,"name":"airbrake:developer_plus","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/airbrake:developer_plus","description":"Airbrake Developer Plus"},{"url":"https://addons.heroku.com/addons/logentries:dev","state":"public","price_cents":2500,"name":"logentries:dev","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:dev","description":"Logentries Dev"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Localhostapp","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"localhostapp:test","selective":true,"beta":false,"description":"Localhostapp Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Elasticsearch","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"elasticsearch:test","selective":true,"beta":false,"description":"Squatter ElasticSearch Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/xeround:starter","state":"public","price_cents":0,"name":"xeround:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/xeround:starter","description":"Xeround the cloud database Starter"},{"slug":"venti","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Simple Worker","plan_description":"Venti","price":{"cents":10800,"unit":"month"},"attachable":false,"name":"simple_worker:venti","selective":true,"beta":false,"description":"Appoxy SimpleWorker Venti","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Sharedworkforce","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"sharedworkforce:test","selective":true,"beta":false,"description":"Sharedworkforce Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Phrase","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"phrase:test","selective":true,"beta":false,"description":"phrase Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Myaddon Mega Addon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"myaddon-mega-addon:test","selective":true,"beta":false,"description":"Myaddon-mega-addon Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Fourteen","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"fourteen:test","selective":true,"beta":false,"description":"Fourteen Test","terms_of_service":false},{"slug":"starter","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Logworm","plan_description":"Starter","price":{"cents":0,"unit":"month"},"attachable":false,"name":"logworm:starter","selective":true,"beta":false,"description":"LogWorm Starter","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Houndsleuth","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"houndsleuth:test","selective":true,"beta":false,"description":"HoundSleuth Hosted Search Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/adminium:enterprise","state":"public","price_cents":5000,"name":"adminium:enterprise","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/adminium:enterprise","description":"Adminium Enterprise"},{"url":"https://addons.heroku.com/addons/cloudmailin:professional","state":"public","price_cents":4500,"name":"cloudmailin:professional","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudmailin:professional","description":"CloudMailIn Professional"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Starter Shogun","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"starter-shogun:test","selective":true,"beta":false,"description":"Starter-shogun Test","terms_of_service":false},{"slug":"musashi-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Musashi Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:musashi-postgis","selective":true,"beta":false,"description":"Shogun-tmaher Musashi Postgis","terms_of_service":false},{"slug":"pg9test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Pg9test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:pg9test","selective":true,"beta":false,"description":"Shogun-tmaher PG9Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Helpmeapp","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"helpmeapp:test","selective":true,"beta":false,"description":"Helpmeapp Test","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Iron Mq","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"iron_mq:test","selective":true,"beta":false,"description":"IronMQ Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/docraptor:basic","state":"public","price_cents":1900,"name":"docraptor:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/docraptor:basic","description":"DocRaptor Basic"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:test","selective":false,"beta":false,"description":"Heroku Postgres Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/loggly:beaver","state":"public","price_cents":29900,"name":"loggly:beaver","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/loggly:beaver","description":"Loggly Beaver"},{"url":"https://addons.heroku.com/addons/sendgrid:silver","state":"public","price_cents":7995,"name":"sendgrid:silver","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/sendgrid:silver","description":"SendGrid Silver"},{"slug":"silver","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Newrelic","plan_description":"Silver","price":{"cents":5,"unit":"dyno_hour"},"attachable":false,"name":"newrelic:silver","selective":true,"beta":false,"description":"New Relic RPM Silver","terms_of_service":false},{"url":"https://addons.heroku.com/addons/memcachier:5000","state":"public","price_cents":30000,"name":"memcachier:5000","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcachier:5000","description":"MemCachier 5 Gb"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Henson","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"henson:test","selective":true,"beta":false,"description":"Henson Test","terms_of_service":false},{"slug":"rho.large.vm","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Redistogo","plan_description":"Rho.Large.Vm","price":{"cents":7500,"unit":"month"},"attachable":false,"name":"redistogo:rho.large.vm","selective":true,"beta":false,"description":"Redis To Go Rho Mobile Large VM","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Chronicdb","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"chronicdb:test","selective":true,"beta":false,"description":"Chronicdb Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/securekey:fortnightly","state":"beta","price_cents":0,"name":"securekey:fortnightly","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/securekey:fortnightly","description":"Secure Key Fortnightly"},{"slug":"ronin","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Starter Shogun","plan_description":"Ronin","price":{"cents":0,"unit":"month"},"attachable":true,"name":"starter-shogun:ronin","selective":true,"beta":false,"description":"Starter-shogun Ronin","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunjdixon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunjdixon:test","selective":true,"beta":false,"description":"Shogunjdixon Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/iron_worker:tall","state":"public","price_cents":3600,"name":"iron_worker:tall","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/iron_worker:tall","description":"IronWorker Tall"},{"url":"https://addons.heroku.com/addons/pusher:sandbox","state":"public","price_cents":0,"name":"pusher:sandbox","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pusher:sandbox","description":"Pusher Sandbox"},{"url":"https://addons.heroku.com/addons/chargify:grow","state":"public","price_cents":34900,"name":"chargify:grow","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/chargify:grow","description":"Chargify Grow"},{"url":"https://addons.heroku.com/addons/ticketly:test","state":"beta","price_cents":0,"name":"ticketly:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/ticketly:test","description":"Ticketly Test"},{"url":"https://addons.heroku.com/addons/mongohq:free","state":"public","price_cents":0,"name":"mongohq:free","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongohq:free","description":"MongoHQ MongoHQ Free"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cranium","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"cranium:test","selective":true,"beta":false,"description":"Cranium Test","terms_of_service":false},{"slug":null,"state":"public","url":"http://devcenter.heroku.com/articles/custom-error-pages","consumes_dyno_hours":false,"group_description":null,"plan_description":null,"price":{"cents":0,"unit":"month"},"attachable":false,"name":"custom_error_pages","selective":null,"beta":false,"description":"Custom Error Pages","terms_of_service":false},{"slug":"premium","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Sendgrid","plan_description":"Premium","price":{"cents":8000,"unit":"month"},"attachable":false,"name":"sendgrid:premium","selective":true,"beta":false,"description":"SendGrid Sendgrid Premium","terms_of_service":false},{"slug":"basecamp","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Deployhooks2","plan_description":"Basecamp","price":{"cents":0,"unit":"month"},"attachable":true,"name":"deployhooks2:basecamp","selective":true,"beta":false,"description":"Deployhooks2 Basecamp","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Fastly","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"fastly:test","selective":true,"beta":false,"description":"Fastly Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logentries:proto","state":"public","price_cents":1000,"name":"logentries:proto","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:proto","description":"Logentries Proto"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-year","state":"beta","price_cents":10000,"name":"pgbackups:auto-year","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pgbackups:auto-year","description":"PG Backups Auto - One Year Retention"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Tddium","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"tddium:test","selective":true,"beta":false,"description":"Tddium Test","terms_of_service":false},{"slug":"fugu-staging","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Fugu Staging","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:fugu-staging","selective":true,"beta":false,"description":"Shogun-will Fugu staging","terms_of_service":false},{"slug":"baku","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Baku","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:baku","selective":true,"beta":false,"description":"Shogun-freeformz Baku","terms_of_service":false},{"url":"https://addons.heroku.com/addons/airbrake:production_pro","state":"public","price_cents":9900,"name":"airbrake:production_pro","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/airbrake:production_pro","description":"Airbrake Production Pro"},{"url":"https://addons.heroku.com/addons/redistogo:large","state":"public","price_cents":30000,"name":"redistogo:large","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/redistogo:large","description":"Redis To Go Large"},{"url":"https://addons.heroku.com/addons/loggly:capybara","state":"public","price_cents":59900,"name":"loggly:capybara","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/loggly:capybara","description":"Loggly Capybara"},{"slug":"hourly","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Pgbackups","plan_description":"Hourly","price":{"cents":0,"unit":"month"},"attachable":false,"name":"pgbackups:hourly","selective":true,"beta":false,"description":"PG Backups Hourly","terms_of_service":false},{"url":"https://addons.heroku.com/addons/cloudant:oxygen","state":"public","price_cents":0,"name":"cloudant:oxygen","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudant:oxygen","description":"Cloudant Oxygen"},{"url":"https://addons.heroku.com/addons/statsmix:basic","state":"public","price_cents":1900,"name":"statsmix:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/statsmix:basic","description":"StatsMix Basic"},{"url":"https://addons.heroku.com/addons/redistogo:super","state":"public","price_cents":100000,"name":"redistogo:super","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/redistogo:super","description":"Redis To Go Super"},{"url":"https://addons.heroku.com/addons/rhoconnect:premium","state":"public","price_cents":9900,"name":"rhoconnect:premium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/rhoconnect:premium","description":"RhoConnect Premium"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Continuityapp","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"continuityapp:test","selective":true,"beta":false,"description":"Continuityapp Test","terms_of_service":false},{"slug":"zilla-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Zilla Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:zilla-postgis","selective":true,"beta":false,"description":"Shogun-tmaher Zilla Postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Jdixon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-jdixon:test","selective":true,"beta":false,"description":"Shogun-jdixon Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/memcachier:500","state":"public","price_cents":4000,"name":"memcachier:500","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcachier:500","description":"MemCachier 500 Mb"},{"slug":"basic","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Memcached","plan_description":"Basic","price":{"cents":0,"unit":"month"},"attachable":false,"name":"memcached:basic","selective":true,"beta":false,"description":"Memcached Memcached Basic","terms_of_service":false},{"slug":"dev","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Dev","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:dev","selective":true,"beta":false,"description":"Shogunhgimenez Dev","terms_of_service":false},{"url":"https://addons.heroku.com/addons/docraptor:premium","state":"public","price_cents":9500,"name":"docraptor:premium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/docraptor:premium","description":"DocRaptor Premium"},{"url":"https://addons.heroku.com/addons/mongolab:small","state":"public","price_cents":1000,"name":"mongolab:small","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongolab:small","description":"MongoLab Small"},{"url":"https://addons.heroku.com/addons/pusher:bootstrap","state":"public","price_cents":1900,"name":"pusher:bootstrap","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pusher:bootstrap","description":"Pusher Bootstrap"},{"url":"https://addons.heroku.com/addons/cassandraio:test","state":"public","price_cents":0,"name":"cassandraio:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/cassandraio:test","description":"Cassandra.io Test"},{"url":"https://addons.heroku.com/addons/justonedb:charmed_xi","state":"public","price_cents":34900,"name":"justonedb:charmed_xi","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/justonedb:charmed_xi","description":"JustOneDB - NewSQL Cloud Database Charmed Xi"},{"url":"https://addons.heroku.com/addons/flying_sphinx:wooden","state":"public","price_cents":1200,"name":"flying_sphinx:wooden","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/flying_sphinx:wooden","description":"Flying Sphinx Wooden"},{"url":"https://addons.heroku.com/addons/memcachier:250mb","state":"public","price_cents":2500,"name":"memcachier:250mb","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcachier:250mb","description":"MemCachier 250 Mb"},{"url":"https://addons.heroku.com/addons/releases:basic","state":"disabled","price_cents":0,"name":"releases:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/releases:basic","description":"Release Management Basic"},{"url":"https://addons.heroku.com/addons/tddium:pro","state":"public","price_cents":15000,"name":"tddium:pro","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/tddium:pro","description":"Tddium Pro"},{"slug":"kappa-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Kappa Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:kappa-postgis","selective":true,"beta":false,"description":"Shogun-will Kappa Postgis","terms_of_service":false},{"slug":"contest_30day","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Indextank","plan_description":"Contest 30day","price":{"cents":0,"unit":"month"},"attachable":false,"name":"indextank:contest_30day","selective":true,"beta":false,"description":"IndexTank Search Heroku Contest 30 Day","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Logmetrics","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"logmetrics:test","selective":true,"beta":false,"description":"Logmetrics Test","terms_of_service":false},{"slug":"baku-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Baku Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:baku-postgis","selective":true,"beta":false,"description":"Shogun-will Baku Postgis","terms_of_service":false},{"url":"https://addons.heroku.com/addons/exceptional:premium","state":"public","price_cents":900,"name":"exceptional:premium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/exceptional:premium","description":"Exceptional Exceptional Premium"},{"slug":"pg9test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Pg9test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:pg9test","selective":false,"beta":false,"description":"Heroku Postgres PG9Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/pgbackups:plus","state":"public","price_cents":0,"name":"pgbackups:plus","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pgbackups:plus","description":"PG Backups Plus"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cloudpostgres","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"cloudpostgres:test","selective":true,"beta":false,"description":"Cloud Postgres Test","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Ranger","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"ranger:test","selective":true,"beta":false,"description":"Ranger Test","terms_of_service":false},{"slug":"kappa","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Kappa","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:kappa","selective":true,"beta":false,"description":"Shogun-will Kappa","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Preview Test","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"preview-test:test","selective":true,"beta":false,"description":"Test Preview Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/memcache:1gb","state":"public","price_cents":9000,"name":"memcache:1gb","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcache:1gb","description":"Memcache 1 GB"},{"url":"https://addons.heroku.com/addons/mongohq:rs_small","state":"public","price_cents":14900,"name":"mongohq:rs_small","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongohq:rs_small","description":"MongoHQ Replica Set Small"},{"slug":"trial","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Trial","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:trial","selective":false,"beta":false,"description":"Heroku Postgres Trial","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Blitz","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"blitz:test","selective":true,"beta":false,"description":"Blitz Test","terms_of_service":false},{"slug":"devcloud","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Shared Postgresql","plan_description":"Devcloud","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-shared-postgresql:devcloud","selective":true,"beta":false,"description":"Heroku Shared PostgreSQL Devcloud","terms_of_service":false},{"url":"https://addons.heroku.com/addons/zencoder:dev","state":"public","price_cents":0,"name":"zencoder:dev","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zencoder:dev","description":"Zencoder Developer"},{"url":"https://addons.heroku.com/addons/stillalive:plus","state":"public","price_cents":2500,"name":"stillalive:plus","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/stillalive:plus","description":"StillAlive Plus"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Qworum","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"qworum:test","selective":true,"beta":false,"description":"Qworum Test","terms_of_service":false},{"slug":"beta_eol","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Hoptoad","plan_description":"Beta Eol","price":{"cents":0,"unit":"month"},"attachable":false,"name":"hoptoad:beta_eol","selective":true,"beta":false,"description":"Airbrake Beta EOL","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Daisho","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"daisho:test","selective":true,"beta":false,"description":"Daisho Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/eshq:test","state":"beta","price_cents":0,"name":"eshq:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/eshq:test","description":"EventSource HQ Test"},{"url":"https://addons.heroku.com/addons/tddium:basic","state":"public","price_cents":2000,"name":"tddium:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/tddium:basic","description":"Tddium Basic"},{"url":"https://addons.heroku.com/addons/docraptor:starter","state":"public","price_cents":0,"name":"docraptor:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/docraptor:starter","description":"DocRaptor Starter"},{"slug":"custom_10k","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Pusher","plan_description":"Custom 10k","price":{"cents":39800,"unit":"month"},"attachable":false,"name":"pusher:custom_10k","selective":true,"beta":false,"description":"Pusher Custom_10K","terms_of_service":false},{"slug":"baku-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Baku Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:baku-postgis","selective":false,"beta":false,"description":"Heroku Postgres Baku Postgis","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Indextank","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"indextank:test","selective":true,"beta":false,"description":"IndexTank Search Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Staged Sphinx","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"staged_sphinx:test","selective":true,"beta":false,"description":"Flying Sphinx Staging Test","terms_of_service":false},{"slug":"ronin-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Ronin Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:ronin-postgis","selective":true,"beta":false,"description":"Shogun-tmaher Ronin Postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Croonga Test","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"croonga-test:test","selective":true,"beta":false,"description":"Croonga-test Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/mwiki:micro","state":"public","price_cents":0,"name":"mwiki:micro","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mwiki:micro","description":"mWiki Micro"},{"url":"https://addons.heroku.com/addons/chargify:max","state":"public","price_cents":99900,"name":"chargify:max","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/chargify:max","description":"Chargify Max"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:fugu","state":"public","price_cents":40000,"name":"heroku-postgresql:fugu","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/heroku-postgresql:fugu","description":"Heroku Postgres Fugu"},{"url":"https://addons.heroku.com/addons/websolr:platinum","state":"public","price_cents":10000,"name":"websolr:platinum","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/websolr:platinum","description":"Websolr Platinum"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Foobar","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"foobar:test","selective":true,"beta":false,"description":"Foobar Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Logglyheroku","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"logglyheroku:test","selective":true,"beta":false,"description":"DONTUSE Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/moonshadosms:premium","state":"public","price_cents":10000,"name":"moonshadosms:premium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/moonshadosms:premium","description":"Moonshado SMS Premium"},{"url":"https://addons.heroku.com/addons/loggly:gopher","state":"public","price_cents":9900,"name":"loggly:gopher","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/loggly:gopher","description":"Loggly Gopher"},{"url":"https://addons.heroku.com/addons/logentries:ops","state":"public","price_cents":5000,"name":"logentries:ops","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:ops","description":"Logentries Ops"},{"slug":"unlimited","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Bundles","plan_description":"Unlimited","price":{"cents":2000,"unit":"month"},"attachable":false,"name":"bundles:unlimited","selective":true,"beta":false,"description":"Bundles Unlimited Bundles","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Yotogi","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"yotogi:test","selective":true,"beta":false,"description":"Yotogi Test","terms_of_service":false},{"slug":"mecha","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Mecha","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:mecha","selective":true,"beta":false,"description":"Shogun-freeformz Mecha","terms_of_service":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:dev","state":"public","price_cents":0,"name":"heroku-postgresql:dev","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/heroku-postgresql:dev","description":"Heroku Postgres Dev"},{"url":"https://addons.heroku.com/addons/custom_error_pages:standard","state":"disabled","price_cents":10000,"name":"custom_error_pages:standard","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/custom_error_pages:standard","description":"Custom Error Pages Custom Error Pages"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:crane","state":"public","price_cents":0,"name":"heroku-postgresql:crane","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/heroku-postgresql:crane","description":"Heroku Postgres Crane"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Zenslap2","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"zenslap2:test","selective":true,"beta":false,"description":"Zenslap2 Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Xerounddev","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"xerounddev:test","selective":true,"beta":false,"description":"Xeround DEV Test","terms_of_service":false},{"slug":"fugu-staging","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Fugu Staging","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:fugu-staging","selective":true,"beta":false,"description":"Shogun-tmaher Fugu staging","terms_of_service":false},{"slug":"fugu","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunjdixon","plan_description":"Fugu","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunjdixon:fugu","selective":true,"beta":false,"description":"Shogunjdixon Fugu","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Maddog Test","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"maddog-test:test","selective":true,"beta":false,"description":"Maddog-test Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/mongohq:small","state":"public","price_cents":1500,"name":"mongohq:small","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongohq:small","description":"MongoHQ MongoHQ Small"},{"slug":"starter","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Simple Worker","plan_description":"Starter","price":{"cents":0,"unit":"month"},"attachable":false,"name":"simple_worker:starter","selective":true,"beta":false,"description":"Appoxy SimpleWorker Starter","terms_of_service":false},{"slug":"premium","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Cloudcounter","plan_description":"Premium","price":{"cents":100,"unit":"month"},"attachable":false,"name":"cloudcounter:premium","selective":true,"beta":false,"description":"CloudCounter Premium","terms_of_service":false},{"url":"https://addons.heroku.com/addons/pubnub:common","state":"public","price_cents":8999,"name":"pubnub:common","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pubnub:common","description":"PubNub Common"},{"url":"https://addons.heroku.com/addons/mailgun:starter","state":"public","price_cents":0,"name":"mailgun:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mailgun:starter","description":"Mailgun Starter"},{"url":"https://addons.heroku.com/addons/newrelic:professional","state":"public","price_cents":6,"name":"newrelic:professional","price_unit":"dyno_hour","beta":false,"id":"https://addons.heroku.com/addons/newrelic:professional","description":"New Relic Professional"},{"slug":"legacy_gold","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Websolr","plan_description":"Legacy Gold","price":{"cents":6900,"unit":"month"},"attachable":false,"name":"websolr:legacy_gold","selective":true,"beta":false,"description":"Websolr Legacy Gold","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Torch","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"torch:test","selective":true,"beta":false,"description":"Torch Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Abstractidentity","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"abstractidentity:test","selective":true,"beta":false,"description":"Abstractidentity Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:ronin","state":"public","price_cents":20000,"name":"heroku-postgresql:ronin","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/heroku-postgresql:ronin","description":"Heroku Postgres Ronin"},{"url":"https://addons.heroku.com/addons/pubnub:minimal","state":"public","price_cents":0,"name":"pubnub:minimal","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pubnub:minimal","description":"PubNub Minimal"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-week","state":"public","price_cents":0,"name":"pgbackups:auto-week","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pgbackups:auto-week","description":"PG Backups Auto - One Week Retention"},{"url":"https://addons.heroku.com/addons/mongolab:x-large","state":"public","price_cents":6500,"name":"mongolab:x-large","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongolab:x-large","description":"MongoLab X-Large"},{"url":"https://addons.heroku.com/addons/sentry:pro","state":"public","price_cents":700,"name":"sentry:pro","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/sentry:pro","description":"Sentry Pro"},{"url":"https://addons.heroku.com/addons/mailgun:basic","state":"public","price_cents":1900,"name":"mailgun:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mailgun:basic","description":"Mailgun Basic"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Securekey","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"securekey:test","selective":true,"beta":false,"description":"Secure Key Test","terms_of_service":false},{"slug":"daily","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Securekey","plan_description":"Daily","price":{"cents":0,"unit":"month"},"attachable":false,"name":"securekey:daily","selective":true,"beta":false,"description":"Secure Key Daily","terms_of_service":false},{"url":"https://addons.heroku.com/addons/zencoder:1k","state":"public","price_cents":4000,"name":"zencoder:1k","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zencoder:1k","description":"Zencoder 1,000 Minutes"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Wrong1","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"wrong1:test","selective":true,"beta":false,"description":"Wrong1 Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/websolr:titanium","state":"public","price_cents":80000,"name":"websolr:titanium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/websolr:titanium","description":"Websolr Titanium"},{"url":"https://addons.heroku.com/addons/websolr:cobalt","state":"public","price_cents":2000,"name":"websolr:cobalt","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/websolr:cobalt","description":"Websolr Cobalt"},{"slug":"baku-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Baku Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:baku-postgis","selective":true,"beta":false,"description":"Shogun-tmaher Baku Postgis","terms_of_service":false},{"slug":"ronin","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Pvh","plan_description":"Ronin","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-pvh:ronin","selective":true,"beta":false,"description":"Shogun-pvh Ronin","terms_of_service":false},{"slug":"kappa","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Kappa","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:kappa","selective":true,"beta":false,"description":"Shogun-freeformz Kappa","terms_of_service":false},{"slug":"basic","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Hoptoad","plan_description":"Basic","price":{"cents":200,"unit":"month"},"attachable":false,"name":"hoptoad:basic","selective":true,"beta":false,"description":"Airbrake Basic","terms_of_service":false},{"url":"https://addons.heroku.com/addons/adminium:startup","state":"public","price_cents":1000,"name":"adminium:startup","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/adminium:startup","description":"Adminium Startup"},{"url":"https://addons.heroku.com/addons/searchify:plus","state":"public","price_cents":4900,"name":"searchify:plus","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/searchify:plus","description":"Searchify IndexTank Plus"},{"url":"https://addons.heroku.com/addons/cloudmailin:starter","state":"public","price_cents":2500,"name":"cloudmailin:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudmailin:starter","description":"CloudMailIn Starter"},{"url":"https://addons.heroku.com/addons/redistogo:mini","state":"public","price_cents":500,"name":"redistogo:mini","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/redistogo:mini","description":"Redis To Go Mini"},{"url":"https://addons.heroku.com/addons/rabbitmq:test","state":"beta","price_cents":0,"name":"rabbitmq:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/rabbitmq:test","description":"RabbitMQ Test"},{"slug":"legacy_silver","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Websolr","plan_description":"Legacy Silver","price":{"cents":2000,"unit":"month"},"attachable":false,"name":"websolr:legacy_silver","selective":true,"beta":false,"description":"Websolr Legacy Silver","terms_of_service":false},{"slug":"weekly","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Securekey","plan_description":"Weekly","price":{"cents":0,"unit":"month"},"attachable":false,"name":"securekey:weekly","selective":true,"beta":false,"description":"Secure Key Weekly","terms_of_service":false},{"url":"https://addons.heroku.com/addons/restful_metrics:x-large","state":"public","price_cents":99900,"name":"restful_metrics:x-large","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/restful_metrics:x-large","description":"RESTful Metrics X-Large"},{"slug":"mecha","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Mecha","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:mecha","selective":true,"beta":false,"description":"Shogun-will Mecha","terms_of_service":false},{"slug":"mecha","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Mecha","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:mecha","selective":true,"beta":false,"description":"Shogunhgimenez Mecha","terms_of_service":false},{"url":"https://addons.heroku.com/addons/dyn:lite10","state":"public","price_cents":3000,"name":"dyn:lite10","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/dyn:lite10","description":"DynECT Managed DNS Lite 10"},{"url":"https://addons.heroku.com/addons/justonedb:double_charmed_xi","state":"public","price_cents":49900,"name":"justonedb:double_charmed_xi","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/justonedb:double_charmed_xi","description":"JustOneDB - NewSQL Cloud Database Double Charmed Xi"},{"url":"https://addons.heroku.com/addons/cron:hourly","state":"public","price_cents":300,"name":"cron:hourly","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cron:hourly","description":"Cron Hourly Cron"},{"url":"https://addons.heroku.com/addons/cleardb:punch","state":"public","price_cents":999,"name":"cleardb:punch","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cleardb:punch","description":"ClearDB MySQL Database Punch"},{"url":"https://addons.heroku.com/addons/ssl:piggyback","state":"disabled","price_cents":0,"name":"ssl:piggyback","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/ssl:piggyback","description":"SSL Piggyback SSL"},{"url":"https://addons.heroku.com/addons/cloudinary:test","state":"beta","price_cents":0,"name":"cloudinary:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudinary:test","description":"Cloudinary Test"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Yotogi Addon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"yotogi-addon:test","selective":true,"beta":false,"description":"Yotogi-addon Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Djucy","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"djucy:test","selective":true,"beta":false,"description":"Djucy Test","terms_of_service":false},{"slug":"pico","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cranium","plan_description":"Pico","price":{"cents":0,"unit":"month"},"attachable":true,"name":"cranium:pico","selective":true,"beta":false,"description":"Cranium pico","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Simple Worker","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"simple_worker:test","selective":true,"beta":false,"description":"Appoxy SimpleWorker Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logging:expanded","state":"disabled","price_cents":0,"name":"logging:expanded","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logging:expanded","description":"Logging Expanded"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heat Engine","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"heat_engine:test","selective":true,"beta":false,"description":"Heat_engine Test","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Restful Metrics","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"restful_metrics:test","selective":true,"beta":false,"description":"RESTful Metrics Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/progstr-filer:test","state":"public","price_cents":0,"name":"progstr-filer:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/progstr-filer:test","description":"Progstr Filer Test"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:test","selective":true,"beta":false,"description":"Shogun-will Test","terms_of_service":false},{"slug":"pg9test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Pg9test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:pg9test","selective":true,"beta":false,"description":"Shogun-freeformz Pg9test","terms_of_service":false},{"slug":"pro","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Sendgrid","plan_description":"Pro","price":{"cents":2000,"unit":"month"},"attachable":false,"name":"sendgrid:pro","selective":true,"beta":false,"description":"SendGrid Sendgrid Pro","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Gemfury","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"gemfury:test","selective":true,"beta":false,"description":"Gemfury Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Myaddon Mega Addon Two","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"myaddon-mega-addon-two:test","selective":true,"beta":false,"description":"Myaddon-mega-addon-two Test","terms_of_service":false},{"slug":"ronin-staging","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Ronin Staging","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:ronin-staging","selective":false,"beta":false,"description":"Heroku Postgres Ronin staging","terms_of_service":false},{"url":"https://addons.heroku.com/addons/foundelasticsearch:test","state":"beta","price_cents":0,"name":"foundelasticsearch:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/foundelasticsearch:test","description":"Found ElasticSearch Test"},{"slug":"fugu-staging","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Fugu Staging","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:fugu-staging","selective":false,"beta":false,"description":"Heroku Postgres Fugu staging","terms_of_service":false},{"url":"https://addons.heroku.com/addons/redistogo:medium","state":"public","price_cents":11000,"name":"redistogo:medium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/redistogo:medium","description":"Redis To Go Medium"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Chargify","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"chargify:test","selective":true,"beta":false,"description":"Chargify Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/memcachier:100","state":"public","price_cents":1500,"name":"memcachier:100","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcachier:100","description":"MemCachier 100 Mb"},{"slug":"devplus","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Devplus","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:devplus","selective":false,"beta":false,"description":"Heroku Postgres Dev Plus","terms_of_service":false},{"url":"https://addons.heroku.com/addons/cloudamqp:test","state":"public","price_cents":0,"name":"cloudamqp:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/cloudamqp:test","description":"CloudAMQP Test"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Searchbox","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"searchbox:test","selective":true,"beta":false,"description":"Searchbox Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/moonshadosms:max","state":"public","price_cents":35000,"name":"moonshadosms:max","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/moonshadosms:max","description":"Moonshado SMS Max"},{"url":"https://addons.heroku.com/addons/redistogo:nano","state":"public","price_cents":0,"name":"redistogo:nano","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/redistogo:nano","description":"Redis To Go Nano"},{"slug":"fugu","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Fugu","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:fugu","selective":true,"beta":false,"description":"Shogun-will Fugu","terms_of_service":false},{"url":"https://addons.heroku.com/addons/memcachier:1000","state":"public","price_cents":7000,"name":"memcachier:1000","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcachier:1000","description":"MemCachier 1 Gb"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Redisgreen","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"redisgreen:test","selective":true,"beta":false,"description":"Redisgreen Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/redistogo:small","state":"public","price_cents":2500,"name":"redistogo:small","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/redistogo:small","description":"Redis To Go Small"},{"url":"https://addons.heroku.com/addons/websolr:tungsten","state":"public","price_cents":40000,"name":"websolr:tungsten","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/websolr:tungsten","description":"Websolr Tungsten"},{"slug":"5mb","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Shared Database","plan_description":"5mb","price":{"cents":0,"unit":"month"},"attachable":false,"name":"shared-database:5mb","selective":true,"beta":false,"description":"Shared Database 5MB","terms_of_service":false},{"url":"https://addons.heroku.com/addons/restful_metrics:developer","state":"public","price_cents":0,"name":"restful_metrics:developer","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/restful_metrics:developer","description":"RESTful Metrics Developer"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"El Hydra","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"el-hydra:test","selective":true,"beta":false,"description":"El-hydra Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Html2cloud","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"html2cloud:test","selective":true,"beta":false,"description":"Html2cloud Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/justonedb:sigma","state":"public","price_cents":1900,"name":"justonedb:sigma","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/justonedb:sigma","description":"JustOneDB - NewSQL Cloud Database Sigma"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:test","selective":true,"beta":false,"description":"Shogun-freeformz Test","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Sendgrid","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"sendgrid:test","selective":true,"beta":false,"description":"SendGrid Test","terms_of_service":false},{"slug":"irc","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Deployhooks2","plan_description":"Irc","price":{"cents":0,"unit":"month"},"attachable":true,"name":"deployhooks2:irc","selective":true,"beta":false,"description":"Deployhooks2 IRC Hook","terms_of_service":false},{"slug":"test2","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Logglyheroku","plan_description":"Test2","price":{"cents":0,"unit":"month"},"attachable":false,"name":"logglyheroku:test2","selective":true,"beta":false,"description":"DONTUSE Test2","terms_of_service":false},{"url":"https://addons.heroku.com/addons/sendgrid:starter","state":"public","price_cents":0,"name":"sendgrid:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/sendgrid:starter","description":"SendGrid Starter"},{"slug":"mecha","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cranium","plan_description":"Mecha","price":{"cents":0,"unit":"month"},"attachable":true,"name":"cranium:mecha","selective":true,"beta":false,"description":"Cranium mecha","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logentries:super","state":"public","price_cents":250000,"name":"logentries:super","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:super","description":"Logentries Super"},{"url":"https://addons.heroku.com/addons/spacialdb:test","state":"beta","price_cents":0,"name":"spacialdb:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/spacialdb:test","description":"SpacialDB Test"},{"slug":"mecha","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Mecha","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:mecha","selective":true,"beta":false,"description":"Shogun-tmaher Mecha","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Jaque","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"jaque:test","selective":true,"beta":false,"description":"Jaque Test","terms_of_service":false},{"slug":"kappa-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Kappa Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:kappa-postgis","selective":true,"beta":false,"description":"Shogun-tmaher Kappa Postgis","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Pusher","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"pusher:test","selective":true,"beta":false,"description":"Pusher Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/moonshadosms:basic","state":"public","price_cents":500,"name":"moonshadosms:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/moonshadosms:basic","description":"Moonshado SMS Basic"},{"url":"https://addons.heroku.com/addons/pubnub:popular","state":"public","price_cents":24999,"name":"pubnub:popular","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pubnub:popular","description":"PubNub Popular"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Mailgun","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"mailgun:test","selective":true,"beta":false,"description":"Mailgun Test","terms_of_service":false},{"slug":"plus","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Hoptoad","plan_description":"Plus","price":{"cents":700,"unit":"month"},"attachable":false,"name":"hoptoad:plus","selective":true,"beta":false,"description":"Airbrake Plus","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Stackmob","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"stackmob:test","selective":true,"beta":false,"description":"Stackmob Test","terms_of_service":false},{"slug":"crane","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunjdixon","plan_description":"Crane","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunjdixon:crane","selective":true,"beta":false,"description":"Shogunjdixon Crane","terms_of_service":false},{"url":"https://addons.heroku.com/addons/memcachier:25","state":"public","price_cents":0,"name":"memcachier:25","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcachier:25","description":"MemCachier 25 Mb"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Database Com Beta","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"database-com-beta:test","selective":true,"beta":false,"description":"Database-com-beta Test","terms_of_service":false},{"slug":"platinum","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Stackmob","plan_description":"Platinum","price":{"cents":119900,"unit":"month"},"attachable":false,"name":"stackmob:platinum","selective":true,"beta":false,"description":"Stackmob Platinum","terms_of_service":false},{"url":"https://addons.heroku.com/addons/iron_worker:venti","state":"public","price_cents":10800,"name":"iron_worker:venti","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/iron_worker:venti","description":"IronWorker Venti"},{"slug":"ika-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Ika Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:ika-postgis","selective":false,"beta":false,"description":"Heroku Postgres Ika Postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Unique Io","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"unique-io:test","selective":true,"beta":false,"description":"Unique-io Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Sickle","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"sickle:test","selective":true,"beta":false,"description":"Sickle Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":true,"group_description":"Glenntest","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"glenntest:test","selective":true,"beta":false,"description":"Glenntest Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":true,"group_description":"Cloudquartz","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"cloudquartz:test","selective":true,"beta":false,"description":"Cloudquartz Test","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Pubnub","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"pubnub:test","selective":true,"beta":false,"description":"PubNub Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Database Com Morten","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"database-com-morten:test","selective":true,"beta":false,"description":"Database.com Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/cloudmailin:micro","state":"public","price_cents":900,"name":"cloudmailin:micro","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudmailin:micro","description":"CloudMailIn Micro"},{"url":"https://addons.heroku.com/addons/memcache:5mb","state":"public","price_cents":0,"name":"memcache:5mb","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcache:5mb","description":"Memcache 5 MB"},{"url":"https://addons.heroku.com/addons/tddium:standard","state":"public","price_cents":5000,"name":"tddium:standard","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/tddium:standard","description":"Tddium Standard"},{"url":"https://addons.heroku.com/addons/justonedb:xi","state":"public","price_cents":19900,"name":"justonedb:xi","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/justonedb:xi","description":"JustOneDB - NewSQL Cloud Database Xi"},{"slug":"kappa","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Kappa","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:kappa","selective":true,"beta":false,"description":"Shogun-tmaher Kappa","terms_of_service":false},{"slug":"mecha-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Mecha Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:mecha-postgis","selective":false,"beta":false,"description":"Heroku Postgres Mecha Postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Letmein","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"letmein:test","selective":true,"beta":false,"description":"Letmein Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/blitline:producer","state":"public","price_cents":3599,"name":"blitline:producer","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/blitline:producer","description":"Blitline Producer"},{"url":"https://addons.heroku.com/addons/statsmix:pro","state":"public","price_cents":9900,"name":"statsmix:pro","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/statsmix:pro","description":"StatsMix Pro"},{"slug":"baku","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Baku","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:baku","selective":true,"beta":false,"description":"Shogun-tmaher Baku","terms_of_service":false},{"slug":"ronin","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunjdixon","plan_description":"Ronin","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunjdixon:ronin","selective":true,"beta":false,"description":"Shogunjdixon Ronin","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logentries:mega","state":"public","price_cents":500000,"name":"logentries:mega","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:mega","description":"Logentries Mega"},{"slug":"ronin-staging","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Ronin Staging","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:ronin-staging","selective":true,"beta":false,"description":"Shogun-freeformz Ronin-staging","terms_of_service":false},{"slug":"free","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Sendgrid","plan_description":"Free","price":{"cents":0,"unit":"month"},"attachable":false,"name":"sendgrid:free","selective":true,"beta":false,"description":"SendGrid Sendgrid Free","terms_of_service":false},{"url":"https://addons.heroku.com/addons/dbinsights:starter","state":"public","price_cents":500,"name":"dbinsights:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/dbinsights:starter","description":"DbInsights Starter"},{"url":"https://addons.heroku.com/addons/pandastream:duo","state":"public","price_cents":19800,"name":"pandastream:duo","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pandastream:duo","description":"PandaStream Duo"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Xeround","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"xeround:test","selective":true,"beta":false,"description":"Xeround the cloud database Test","terms_of_service":false},{"slug":"legacy_titanium","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Websolr","plan_description":"Legacy Titanium","price":{"cents":49900,"unit":"month"},"attachable":false,"name":"websolr:legacy_titanium","selective":true,"beta":false,"description":"Websolr Legacy Titanium","terms_of_service":false},{"url":"https://addons.heroku.com/addons/iron_worker:grande","state":"public","price_cents":7200,"name":"iron_worker:grande","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/iron_worker:grande","description":"IronWorker Grande"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:zilla","state":"public","price_cents":160000,"name":"heroku-postgresql:zilla","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/heroku-postgresql:zilla","description":"Heroku Postgres Zilla"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Searchify","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"searchify:test","selective":true,"beta":false,"description":"Searchify IndexTank Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Glenntest3","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"glenntest3:test","selective":true,"beta":false,"description":"Glenn's Test Addon Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Nuvolabase","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"nuvolabase:test","selective":true,"beta":false,"description":"Nuvolabase Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/airbrake:enterprise_production","state":"public","price_cents":49900,"name":"airbrake:enterprise_production","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/airbrake:enterprise_production","description":"Airbrake Enterprise Production"},{"url":"https://addons.heroku.com/addons/xeround:basic250","state":"public","price_cents":3300,"name":"xeround:basic250","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/xeround:basic250","description":"Xeround the cloud database Basic 250MB"},{"slug":"fugu-staging","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Fugu Staging","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:fugu-staging","selective":true,"beta":false,"description":"Shogun-freeformz Fugu-staging","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Oneloginherokusaml","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"oneloginherokusaml:test","selective":true,"beta":false,"description":"Oneloginherokusaml Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shove","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"shove:test","selective":true,"beta":false,"description":"Shove Test","terms_of_service":false},{"slug":"baku","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Baku","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:baku","selective":true,"beta":false,"description":"Shogunhgimenez Baku","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Crond","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"crond:test","selective":true,"beta":false,"description":"Crond Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Bobik","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"bobik:test","selective":true,"beta":false,"description":"Bobik Test","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Shared Postgresql","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-shared-postgresql:test","selective":true,"beta":false,"description":"Heroku Shared PostgreSQL Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Splunk","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"splunk:test","selective":true,"beta":false,"description":"Splunk Test","terms_of_service":false},{"slug":"trial","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Trial","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:trial","selective":true,"beta":false,"description":"Shogunhgimenez Trial","terms_of_service":false},{"url":"https://addons.heroku.com/addons/progstr:test","state":"public","price_cents":0,"name":"progstr:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/progstr:test","description":"Progstr Logger Test"},{"url":"https://addons.heroku.com/addons/loggly:woodchuck","state":"public","price_cents":14900,"name":"loggly:woodchuck","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/loggly:woodchuck","description":"Loggly Woodchuck"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Airbrake","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"airbrake:test","selective":true,"beta":false,"description":"Airbrake Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/zencoder:4k","state":"public","price_cents":12000,"name":"zencoder:4k","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zencoder:4k","description":"Zencoder 4,000 Minutes"},{"slug":"fugu","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Fugu","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:fugu","selective":true,"beta":false,"description":"Shogun-freeformz Fugu","terms_of_service":false},{"url":"https://addons.heroku.com/addons/memcachier:2500","state":"public","price_cents":16500,"name":"memcachier:2500","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcachier:2500","description":"MemCachier 2.5 Gb"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":true,"group_description":"Vixie Production","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"vixie-production:test","selective":true,"beta":false,"description":"Vixie-production Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/sendgrid:platinum","state":"public","price_cents":39995,"name":"sendgrid:platinum","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/sendgrid:platinum","description":"SendGrid Platinum"},{"url":"https://addons.heroku.com/addons/cloudant:argon","state":"public","price_cents":1500,"name":"cloudant:argon","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudant:argon","description":"Cloudant Argon"},{"url":"https://addons.heroku.com/addons/dashmin:test","state":"beta","price_cents":0,"name":"dashmin:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/dashmin:test","description":"Dashmin Test"},{"slug":"baku-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Baku Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:baku-postgis","selective":true,"beta":false,"description":"Shogun-freeformz Baku-postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Deployhooks2","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"deployhooks2:test","selective":true,"beta":false,"description":"Deployhooks2 Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/tripwire:test","state":"beta","price_cents":0,"name":"tripwire:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/tripwire:test","description":"Tripwire Test"},{"url":"https://addons.heroku.com/addons/zencoder:100k","state":"public","price_cents":200000,"name":"zencoder:100k","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zencoder:100k","description":"Zencoder 100,000 Minutes"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Dynamodb","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"dynamodb:test","selective":true,"beta":false,"description":"Dynamodb Test","terms_of_service":false},{"slug":"baku","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cranium","plan_description":"Baku","price":{"cents":0,"unit":"month"},"attachable":true,"name":"cranium:baku","selective":true,"beta":false,"description":"Cranium baku","terms_of_service":false},{"url":"https://addons.heroku.com/addons/mongolab:starter","state":"public","price_cents":0,"name":"mongolab:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongolab:starter","description":"MongoLab Starter"},{"url":"https://addons.heroku.com/addons/pandastream:sandbox","state":"public","price_cents":0,"name":"pandastream:sandbox","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pandastream:sandbox","description":"PandaStream Sandbox"},{"url":"https://addons.heroku.com/addons/pubnub:starter","state":"public","price_cents":4999,"name":"pubnub:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pubnub:starter","description":"PubNub Starter"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Chatspire","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"chatspire:test","selective":true,"beta":false,"description":"Chatspire Test","terms_of_service":false},{"slug":"ika","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Ika","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:ika","selective":true,"beta":false,"description":"Shogun-freeformz Ika","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Myaddon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"myaddon:test","selective":true,"beta":false,"description":"Myaddon Test","terms_of_service":false},{"slug":"basic","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Shared Postgresql","plan_description":"Basic","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-shared-postgresql:basic","selective":true,"beta":false,"description":"Heroku Shared PostgreSQL Basic","terms_of_service":false},{"slug":"fugu-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Fugu Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:fugu-postgis","selective":true,"beta":false,"description":"Shogun-will Fugu Postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Errorbucket","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"errorbucket:test","selective":true,"beta":false,"description":"Errorbucket Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/iron_worker:titanium","state":"public","price_cents":99900,"name":"iron_worker:titanium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/iron_worker:titanium","description":"IronWorker Titanium"},{"url":"https://addons.heroku.com/addons/flying_sphinx:ceramic","state":"public","price_cents":5500,"name":"flying_sphinx:ceramic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/flying_sphinx:ceramic","description":"Flying Sphinx Ceramic"},{"url":"https://addons.heroku.com/addons/airbrake:production_pro_plus","state":"public","price_cents":19900,"name":"airbrake:production_pro_plus","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/airbrake:production_pro_plus","description":"Airbrake Production Pro Plus"},{"slug":"devcloud","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Postgres","plan_description":"Devcloud","price":{"cents":0,"unit":"month"},"attachable":true,"name":"postgres:devcloud","selective":true,"beta":false,"description":"Postgres Devcloud","terms_of_service":false},{"slug":"ika-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Ika Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:ika-postgis","selective":true,"beta":false,"description":"Shogun-tmaher Ika Postgis","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":true,"group_description":"Scheduler","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"scheduler:test","selective":true,"beta":false,"description":"Heroku Scheduler Test","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Recurly","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"recurly:test","selective":true,"beta":false,"description":"Recurly Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/chargify:launch","state":"public","price_cents":3900,"name":"chargify:launch","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/chargify:launch","description":"Chargify Launch"},{"url":"https://addons.heroku.com/addons/database-com:test","state":"beta","price_cents":0,"name":"database-com:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/database-com:test","description":"database.com Test"},{"url":"https://addons.heroku.com/addons/zencoder:20k","state":"public","price_cents":60000,"name":"zencoder:20k","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zencoder:20k","description":"Zencoder 20,000 Minutes"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Joygun","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"joygun:test","selective":true,"beta":false,"description":"Joygun Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Isabelle Addontest","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"isabelle_addontest:test","selective":true,"beta":false,"description":"Isabelle_addontest Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/iron_mq:ore","state":"public","price_cents":999,"name":"iron_mq:ore","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/iron_mq:ore","description":"IronMQ Ore"},{"slug":"ronin","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Ronin","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:ronin","selective":true,"beta":false,"description":"Shogunhgimenez Ronin","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cassandrahq","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"cassandrahq:test","selective":true,"beta":false,"description":"CassandraHQ Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/iron_worker:starter","state":"public","price_cents":0,"name":"iron_worker:starter","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/iron_worker:starter","description":"IronWorker Starter"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Mctestaddon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"mctestaddon:test","selective":true,"beta":false,"description":"Mctestaddon Test","terms_of_service":false},{"slug":"500mb","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Xeround","plan_description":"500mb","price":{"cents":7000,"unit":"month"},"attachable":false,"name":"xeround:500mb","selective":true,"beta":false,"description":"Xeround the cloud database 500MB","terms_of_service":false},{"slug":"fugu-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Fugu Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:fugu-postgis","selective":false,"beta":false,"description":"Heroku Postgres Fugu Postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Zenslap","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"zenslap:test","selective":true,"beta":false,"description":"zenslap Test","terms_of_service":false},{"slug":"crane","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Crane","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:crane","selective":true,"beta":false,"description":"Shogun-will Crane","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logentries:high","state":"public","price_cents":50000,"name":"logentries:high","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:high","description":"Logentries High"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Notificationapp","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"notificationapp:test","selective":true,"beta":false,"description":"Notification App Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/railsonfire:test","state":"public","price_cents":0,"name":"railsonfire:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/railsonfire:test","description":"Railsonfire Test"},{"url":"https://addons.heroku.com/addons/airbrake:developer","state":"public","price_cents":700,"name":"airbrake:developer","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/airbrake:developer","description":"Airbrake Developer"},{"url":"https://addons.heroku.com/addons/pusher:bigboy","state":"public","price_cents":19900,"name":"pusher:bigboy","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pusher:bigboy","description":"Pusher Big Boy"},{"url":"https://addons.heroku.com/addons/redistogo:mega","state":"public","price_cents":400000,"name":"redistogo:mega","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/redistogo:mega","description":"Redis To Go Mega"},{"slug":"baz","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Foo Bar","plan_description":"Baz","price":{"cents":0,"unit":"month"},"attachable":false,"name":"foo-bar:baz","selective":true,"beta":false,"description":"Foo-bar Baz","terms_of_service":false},{"url":"https://addons.heroku.com/addons/mwiki:large","state":"public","price_cents":700,"name":"mwiki:large","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mwiki:large","description":"mWiki Large"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Ubalo","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"ubalo:test","selective":true,"beta":false,"description":"Ubalo Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/memcachier:10000","state":"public","price_cents":55000,"name":"memcachier:10000","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcachier:10000","description":"MemCachier 10 Gb"},{"slug":"legacy_platinum","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Websolr","plan_description":"Legacy Platinum","price":{"cents":16900,"unit":"month"},"attachable":false,"name":"websolr:legacy_platinum","selective":true,"beta":false,"description":"Websolr Legacy Platinum","terms_of_service":false},{"slug":"ronin-staging","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Ronin Staging","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:ronin-staging","selective":true,"beta":false,"description":"Shogun-will Ronin staging","terms_of_service":false},{"slug":"zilla-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Zilla Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:zilla-postgis","selective":false,"beta":false,"description":"Heroku Postgres Zilla Postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Bubo","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"bubo:test","selective":true,"beta":false,"description":"Bubo Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"My Addon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"my_addon:test","selective":true,"beta":false,"description":"My_addon Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/spreedlycore:test","state":"beta","price_cents":0,"name":"spreedlycore:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/spreedlycore:test","description":"Spreedly Core Test"},{"url":"https://addons.heroku.com/addons/blitline:rockstar","state":"public","price_cents":6599,"name":"blitline:rockstar","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/blitline:rockstar","description":"Blitline Rockstar"},{"url":"https://addons.heroku.com/addons/stackmob:bronze","state":"public","price_cents":500,"name":"stackmob:bronze","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/stackmob:bronze","description":"Stackmob Bronze"},{"slug":"tall","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Simple Worker","plan_description":"Tall","price":{"cents":3600,"unit":"month"},"attachable":false,"name":"simple_worker:tall","selective":true,"beta":false,"description":"Appoxy SimpleWorker Tall","terms_of_service":false},{"slug":"ronin","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Ronin","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:ronin","selective":true,"beta":false,"description":"Shogun-will Ronin","terms_of_service":false},{"slug":"ika","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cranium","plan_description":"Ika","price":{"cents":0,"unit":"month"},"attachable":true,"name":"cranium:ika","selective":true,"beta":false,"description":"Cranium ika","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Invoicefu","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"invoicefu:test","selective":true,"beta":false,"description":"Invoicefu Test","terms_of_service":false},{"slug":"ika-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Ika Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:ika-postgis","selective":true,"beta":false,"description":"Shogun-will Ika Postgis","terms_of_service":false},{"slug":"mecha-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Mecha Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:mecha-postgis","selective":true,"beta":false,"description":"Shogun-freeformz Mecha-postgis","terms_of_service":false},{"url":"https://addons.heroku.com/addons/sentry:developer","state":"public","price_cents":0,"name":"sentry:developer","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/sentry:developer","description":"Sentry Developer"},{"slug":"lite","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Sendgrid","plan_description":"Lite","price":{"cents":0,"unit":"month"},"attachable":false,"name":"sendgrid:lite","selective":true,"beta":false,"description":"SendGrid Lite","terms_of_service":false},{"slug":"premium","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Indextank","plan_description":"Premium","price":{"cents":30000,"unit":"month"},"attachable":false,"name":"indextank:premium","selective":true,"beta":false,"description":"IndexTank Search Premium","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cloudassault","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"cloudassault:test","selective":true,"beta":false,"description":"Cloud Assault Test","terms_of_service":false},{"slug":"crane","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Crane","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:crane","selective":true,"beta":false,"description":"Shogun-freeformz Crane","terms_of_service":false},{"url":"https://addons.heroku.com/addons/blitline:developer","state":"public","price_cents":0,"name":"blitline:developer","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/blitline:developer","description":"Blitline Developer Package"},{"url":"https://addons.heroku.com/addons/bonsai:test","state":"public","price_cents":0,"name":"bonsai:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/bonsai:test","description":"Bonsai ElasticSearch Test"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":true,"group_description":"Vixie Staging","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"vixie-staging:test","selective":true,"beta":false,"description":"Vixie-staging Test","terms_of_service":false},{"slug":"http","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Deployhooks2","plan_description":"Http","price":{"cents":0,"unit":"month"},"attachable":true,"name":"deployhooks2:http","selective":true,"beta":false,"description":"Deployhooks2 HTTP Hook","terms_of_service":false},{"url":"https://addons.heroku.com/addons/ssl:sni","state":"public","price_cents":500,"name":"ssl:sni","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/ssl:sni","description":"SSL SNI SSL"},{"url":"https://addons.heroku.com/addons/blitz:1000","state":"public","price_cents":79900,"name":"blitz:1000","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/blitz:1000","description":"Blitz 1000"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Rhoconnect","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"rhoconnect:test","selective":true,"beta":false,"description":"RhoConnect Test","terms_of_service":false},{"slug":"hourly","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Crond","plan_description":"Hourly","price":{"cents":0,"unit":"month"},"attachable":false,"name":"crond:hourly","selective":true,"beta":false,"description":"Crond Hourly","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logentries:production","state":"public","price_cents":25000,"name":"logentries:production","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:production","description":"Logentries Production"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Yorapi","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"yorapi:test","selective":true,"beta":false,"description":"Yorapi Test","terms_of_service":false},{"slug":"musashi-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Musashi Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:musashi-postgis","selective":true,"beta":false,"description":"Shogun-freeformz Musashi-postgis","terms_of_service":false},{"slug":"trial","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Indextank","plan_description":"Trial","price":{"cents":0,"unit":"month"},"attachable":false,"name":"indextank:trial","selective":true,"beta":false,"description":"IndexTank Search Trial","terms_of_service":false},{"url":"https://addons.heroku.com/addons/memcache:100mb","state":"public","price_cents":2000,"name":"memcache:100mb","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcache:100mb","description":"Memcache 100 MB"},{"slug":"ninja","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Legacy Database","plan_description":"Ninja","price":{"cents":80000,"unit":"month"},"attachable":false,"name":"legacy-database:ninja","selective":true,"beta":false,"description":"Legacy Database Ninja","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Webperformance","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"webperformance:test","selective":true,"beta":false,"description":"Webperformance Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Traction","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"traction:test","selective":true,"beta":false,"description":"Traction Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Tsuchi","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"tsuchi:test","selective":true,"beta":false,"description":"Tsuchi Test","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Statsmix","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"statsmix:test","selective":true,"beta":false,"description":"StatsMix Test","terms_of_service":false},{"slug":"crane","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cranium","plan_description":"Crane","price":{"cents":0,"unit":"month"},"attachable":true,"name":"cranium:crane","selective":true,"beta":false,"description":"Cranium crane","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logentries:concept","state":"public","price_cents":500,"name":"logentries:concept","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:concept","description":"Logentries Concept"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Blogapp","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"blogapp:test","selective":true,"beta":false,"description":"Blogapp Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/ranger:elite","state":"public","price_cents":2500,"name":"ranger:elite","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/ranger:elite","description":"Ranger Elite"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Mydbdc","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"mydbdc:test","selective":true,"beta":false,"description":"Mydbdc Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logging:basic","state":"disabled","price_cents":0,"name":"logging:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logging:basic","description":"Logging Basic"},{"url":"https://addons.heroku.com/addons/boxcar:test","state":"beta","price_cents":0,"name":"boxcar:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/boxcar:test","description":"Boxcar Push Notifications Test"},{"slug":"1gb","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Xeround","plan_description":"1gb","price":{"cents":14900,"unit":"month"},"attachable":false,"name":"xeround:1gb","selective":true,"beta":false,"description":"Xeround the cloud database 1GB","terms_of_service":false},{"url":"https://addons.heroku.com/addons/apigee_facebook:basic","state":"public","price_cents":0,"name":"apigee_facebook:basic","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/apigee_facebook:basic","description":"Apigee for Facebook Basic"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Pct141","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"pct141:test","selective":true,"beta":false,"description":"Pct141 Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Notificationapp1","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"notificationapp1:test","selective":true,"beta":false,"description":"Notificationapp1 Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/tronprint:test","state":"public","price_cents":0,"name":"tronprint:test","price_unit":"month","beta":true,"id":"https://addons.heroku.com/addons/tronprint:test","description":"Tronprint Test"},{"slug":"ika","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Ika","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:ika","selective":true,"beta":false,"description":"Shogun-will Ika","terms_of_service":false},{"slug":"crane","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Crane","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:crane","selective":true,"beta":false,"description":"Shogun-tmaher Crane","terms_of_service":false},{"url":"https://addons.heroku.com/addons/searchify:small","state":"public","price_cents":2500,"name":"searchify:small","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/searchify:small","description":"Searchify IndexTank Small"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Mailchimp","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"mailchimp:test","selective":true,"beta":false,"description":"Mailchimp Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/framey:test","state":"beta","price_cents":0,"name":"framey:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/framey:test","description":"Framey Test"},{"slug":"standard","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Isabelle Test","plan_description":"Standard","price":{"cents":0,"unit":"month"},"attachable":false,"name":"isabelle-test:standard","selective":true,"beta":false,"description":" Standard","terms_of_service":false},{"slug":"starter","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Indextank","plan_description":"Starter","price":{"cents":0,"unit":"month"},"attachable":false,"name":"indextank:starter","selective":true,"beta":false,"description":"IndexTank Search Starter","terms_of_service":false},{"url":"https://addons.heroku.com/addons/zencoder:2k","state":"public","price_cents":8000,"name":"zencoder:2k","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zencoder:2k","description":"Zencoder 2,000 Minutes"},{"url":"https://addons.heroku.com/addons/mailgun:pro","state":"public","price_cents":7900,"name":"mailgun:pro","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mailgun:pro","description":"Mailgun Pro"},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Cloudcounter V2","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"cloudcounter_v2:test","selective":true,"beta":false,"description":"Cloudcounter_v2 Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logentries:heavy","state":"public","price_cents":100000,"name":"logentries:heavy","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:heavy","description":"Logentries Heavy"},{"url":"https://addons.heroku.com/addons/chargify:start","state":"public","price_cents":9900,"name":"chargify:start","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/chargify:start","description":"Chargify Start"},{"url":"https://addons.heroku.com/addons/moonshadosms:plus","state":"public","price_cents":2000,"name":"moonshadosms:plus","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/moonshadosms:plus","description":"Moonshado SMS Plus"},{"slug":"pro","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Indextank","plan_description":"Pro","price":{"cents":17500,"unit":"month"},"attachable":false,"name":"indextank:pro","selective":true,"beta":false,"description":"IndexTank Search Pro","terms_of_service":false},{"url":"https://addons.heroku.com/addons/apigee:basic","state":"public","price_cents":0,"name":"apigee:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/apigee:basic","description":"Apigee For Twitter Basic"},{"slug":"marble","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Flying Sphinx","plan_description":"Marble","price":{"cents":30000,"unit":"month"},"attachable":false,"name":"flying_sphinx:marble","selective":true,"beta":false,"description":"Flying Sphinx Marble","terms_of_service":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:baku","state":"public","price_cents":320000,"name":"heroku-postgresql:baku","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/heroku-postgresql:baku","description":"Heroku Postgres Baku"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Bearings","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"bearings:test","selective":true,"beta":false,"description":"Bearings Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Endax Fourteen","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"endax-fourteen:test","selective":true,"beta":false,"description":"Endax-fourteen Test","terms_of_service":false},{"slug":"ronin","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cranium","plan_description":"Ronin","price":{"cents":0,"unit":"month"},"attachable":true,"name":"cranium:ronin","selective":true,"beta":false,"description":"Cranium ronin","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Testaddon100","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"testaddon100:test","selective":true,"beta":false,"description":"Testaddon100 Test","terms_of_service":false},{"slug":"musashi-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Musashi Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:musashi-postgis","selective":true,"beta":false,"description":"Shogun-will Musashi Postgis","terms_of_service":false},{"slug":"ronin","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Ronin","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:ronin","selective":true,"beta":false,"description":"Shogun-tmaher Ronin","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Request Logger","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"request-logger:test","selective":true,"beta":false,"description":"Request-logger Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Mailchimp Tester","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"mailchimp-tester:test","selective":true,"beta":false,"description":"Mailchimp-tester Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/loggly:squirrel","state":"public","price_cents":4900,"name":"loggly:squirrel","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/loggly:squirrel","description":"Loggly Squirrel"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Zinc","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"zinc:test","selective":true,"beta":false,"description":"Zinc Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Pvh","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-pvh:test","selective":true,"beta":false,"description":"Shogun-pvh Test","terms_of_service":false},{"slug":"baku","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunjdixon","plan_description":"Baku","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunjdixon:baku","selective":true,"beta":false,"description":"Shogunjdixon Baku","terms_of_service":false},{"url":"https://addons.heroku.com/addons/memcache:50gb","state":"public","price_cents":350000,"name":"memcache:50gb","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/memcache:50gb","description":"Memcache 50 GB"},{"slug":"ronin","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Legacy Database","plan_description":"Ronin","price":{"cents":20000,"unit":"month"},"attachable":false,"name":"legacy-database:ronin","selective":true,"beta":false,"description":"Legacy Database Ronin","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Taninaddon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"taninaddon:test","selective":true,"beta":false,"description":"Taninaddon Test","terms_of_service":false},{"slug":"20gb","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Shared Database","plan_description":"20gb","price":{"cents":1500,"unit":"month"},"attachable":false,"name":"shared-database:20gb","selective":true,"beta":false,"description":"Shared Database 20GB","terms_of_service":false},{"url":"https://addons.heroku.com/addons/mongohq:micro","state":"public","price_cents":500,"name":"mongohq:micro","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongohq:micro","description":"MongoHQ MongoHQ Micro"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Workdivision","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"workdivision:test","selective":true,"beta":false,"description":"Workdivision Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/stackmob:iron","state":"public","price_cents":0,"name":"stackmob:iron","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/stackmob:iron","description":"Stackmob Iron"},{"slug":"pg9test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Pg9test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:pg9test","selective":true,"beta":false,"description":"Shogun-will PG9Test","terms_of_service":false},{"slug":"ika-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Ika Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:ika-postgis","selective":true,"beta":false,"description":"Shogun-freeformz Ika-postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Malicealpha","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"malicealpha:test","selective":true,"beta":false,"description":"Malice Alpha Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Croonga","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"croonga:test","selective":true,"beta":false,"description":"Croonga Test","terms_of_service":false},{"slug":"basic","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Cloudcounter","plan_description":"Basic","price":{"cents":0,"unit":"month"},"attachable":false,"name":"cloudcounter:basic","selective":true,"beta":false,"description":"CloudCounter Basic","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Bind","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"bind:test","selective":true,"beta":false,"description":"Bind Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Canary","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"canary:test","selective":true,"beta":false,"description":"Canary Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/blitz:5000","state":"public","price_cents":129900,"name":"blitz:5000","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/blitz:5000","description":"Blitz 5000"},{"url":"https://addons.heroku.com/addons/dyn:lite25","state":"public","price_cents":6000,"name":"dyn:lite25","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/dyn:lite25","description":"DynECT Managed DNS Lite 25"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Clojure","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"clojure:test","selective":true,"beta":false,"description":"Clojure Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/xeround:basic100","state":"public","price_cents":1700,"name":"xeround:basic100","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/xeround:basic100","description":"Xeround the cloud database Basic 100MB"},{"slug":"test","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Turkey","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"turkey:test","selective":true,"beta":false,"description":"Turkey Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Tolq","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"tolq:test","selective":true,"beta":false,"description":"Tolq Test","terms_of_service":false},{"slug":"premium","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Simplegeo","plan_description":"Premium","price":{"cents":7900,"unit":"month"},"attachable":false,"name":"simplegeo:premium","selective":true,"beta":false,"description":"SimpleGeo Premium","terms_of_service":false},{"slug":"development","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Development","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:development","selective":true,"beta":false,"description":"Shogunhgimenez Development","terms_of_service":false},{"url":"https://addons.heroku.com/addons/ssl:ip","state":"public","price_cents":10000,"name":"ssl:ip","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/ssl:ip","description":"SSL IP Based Custom SSL"},{"url":"https://addons.heroku.com/addons/sourceninja:test","state":"beta","price_cents":0,"name":"sourceninja:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/sourceninja:test","description":"SourceNinja Test"},{"url":"https://addons.heroku.com/addons/tddium:plus","state":"public","price_cents":8000,"name":"tddium:plus","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/tddium:plus","description":"Tddium Plus"},{"slug":"mecha-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Mecha Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:mecha-postgis","selective":true,"beta":false,"description":"Shogun-will Mecha Postgis","terms_of_service":false},{"slug":"zilla","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Zilla","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:zilla","selective":true,"beta":false,"description":"Shogunhgimenez Zilla","terms_of_service":false},{"slug":"ronin-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Ronin Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:ronin-postgis","selective":true,"beta":false,"description":"Shogun-freeformz Ronin-postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Iron Worker","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"iron_worker:test","selective":true,"beta":false,"description":"IronWorker Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/iron_mq:cast","state":"public","price_cents":4999,"name":"iron_mq:cast","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/iron_mq:cast","description":"IronMQ Cast"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku My Addon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"heroku_my_addon:test","selective":true,"beta":false,"description":"Heroku_my_addon Test","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Newsfeedlab","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"newsfeedlab:test","selective":true,"beta":false,"description":"Newsfeed Lab Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/cloudant:neon","state":"public","price_cents":3900,"name":"cloudant:neon","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudant:neon","description":"Cloudant Neon"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Foo Bar","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"foo-bar:test","selective":true,"beta":false,"description":"Foo-bar Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Redisko","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"redisko:test","selective":true,"beta":false,"description":"Redisko Test","terms_of_service":false},{"slug":"daily","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Pgbackups","plan_description":"Daily","price":{"cents":0,"unit":"month"},"attachable":false,"name":"pgbackups:daily","selective":true,"beta":false,"description":"PG Backups Daily","terms_of_service":false},{"url":"https://addons.heroku.com/addons/cleardb:ignite","state":"public","price_cents":0,"name":"cleardb:ignite","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cleardb:ignite","description":"ClearDB MySQL Database Ignite"},{"slug":"ronin","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Bifrost","plan_description":"Ronin","price":{"cents":20000,"unit":"month"},"attachable":false,"name":"bifrost:ronin","selective":true,"beta":false,"description":"PostgreSQL 9.0 Ronin","terms_of_service":false},{"url":"https://addons.heroku.com/addons/raydash:test","state":"beta","price_cents":0,"name":"raydash:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/raydash:test","description":"Raydash Test"},{"slug":"zilla-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Zilla Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:zilla-postgis","selective":true,"beta":false,"description":"Shogun-freeformz Zilla-postgis","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Pedros Addon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"pedros_addon:test","selective":true,"beta":false,"description":"Pedros_addon Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/parse:test","state":"beta","price_cents":0,"name":"parse:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/parse:test","description":"Parse Test"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:test","selective":true,"beta":false,"description":"Shogun-tmaher Test","terms_of_service":false},{"slug":"devplus","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunhgimenez","plan_description":"Devplus","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunhgimenez:devplus","selective":true,"beta":false,"description":"Shogunhgimenez Dev Plus","terms_of_service":false},{"url":"https://addons.heroku.com/addons/mongolab:medium","state":"public","price_cents":2000,"name":"mongolab:medium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/mongolab:medium","description":"MongoLab Medium"},{"slug":"test2","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Elasticsearch","plan_description":"Test2","price":{"cents":0,"unit":"month"},"attachable":false,"name":"elasticsearch:test2","selective":true,"beta":false,"description":"Squatter ElasticSearch Test 2","terms_of_service":false},{"url":"https://addons.heroku.com/addons/logging:advanced","state":"disabled","price_cents":10000,"name":"logging:advanced","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logging:advanced","description":"Logging Advanced"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Appboard","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"appboard:test","selective":true,"beta":false,"description":"Appboard Test","terms_of_service":false},{"slug":"tryit_old","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Logentries","plan_description":"Tryit Old","price":{"cents":0,"unit":"month"},"attachable":false,"name":"logentries:tryit_old","selective":true,"beta":false,"description":"Logentries TryIt","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Hachiko","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"hachiko:test","selective":true,"beta":false,"description":"Hachiko Test","terms_of_service":false},{"slug":"beanstalkd","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Bind","plan_description":"Beanstalkd","price":{"cents":0,"unit":"month"},"attachable":false,"name":"bind:beanstalkd","selective":true,"beta":false,"description":"Bind Beanstalk","terms_of_service":false},{"slug":"basic","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Exceptional","plan_description":"Basic","price":{"cents":0,"unit":"month"},"attachable":false,"name":"exceptional:basic","selective":true,"beta":false,"description":"Exceptional Exceptional Basic","terms_of_service":false},{"url":"https://addons.heroku.com/addons/cloudant:krypton","state":"public","price_cents":39900,"name":"cloudant:krypton","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudant:krypton","description":"Cloudant Krypton"},{"url":"https://addons.heroku.com/addons/cloudant:helium","state":"public","price_cents":11900,"name":"cloudant:helium","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudant:helium","description":"Cloudant Helium"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Postgres","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"postgres:test","selective":true,"beta":false,"description":"Postgres Test","terms_of_service":false},{"slug":"musashi-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Musashi Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:musashi-postgis","selective":false,"beta":false,"description":"Heroku Postgres Musashi Postgis","terms_of_service":false},{"slug":"rho.small.vm","state":"public","url":null,"consumes_dyno_hours":false,"group_description":"Redistogo","plan_description":"Rho.Small.Vm","price":{"cents":1500,"unit":"month"},"attachable":false,"name":"redistogo:rho.small.vm","selective":true,"beta":false,"description":"Redis To Go Rho Mobile Small VM","terms_of_service":false},{"url":"https://addons.heroku.com/addons/airbrake:production","state":"public","price_cents":1900,"name":"airbrake:production","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/airbrake:production","description":"Airbrake Production"},{"slug":"zilla","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Will","plan_description":"Zilla","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-will:zilla","selective":true,"beta":false,"description":"Shogun-will Zilla","terms_of_service":false},{"url":"https://addons.heroku.com/addons/sendgrid:gold","state":"public","price_cents":19995,"name":"sendgrid:gold","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/sendgrid:gold","description":"SendGrid Gold"},{"url":"https://addons.heroku.com/addons/sendgrid:bronze","state":"public","price_cents":995,"name":"sendgrid:bronze","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/sendgrid:bronze","description":"SendGrid Bronze"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Isabelle Test","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"isabelle-test:test","selective":true,"beta":false,"description":" Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/moonshadosms:free","state":"public","price_cents":0,"name":"moonshadosms:free","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/moonshadosms:free","description":"Moonshado SMS Free"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Keavy Addon","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"keavy-addon:test","selective":true,"beta":false,"description":"Keavy-addon Test","terms_of_service":false},{"slug":"basic","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Simplegeo","plan_description":"Basic","price":{"cents":900,"unit":"month"},"attachable":false,"name":"simplegeo:basic","selective":true,"beta":false,"description":"SimpleGeo Basic","terms_of_service":false},{"slug":"ronin-staging","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Ronin Staging","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:ronin-staging","selective":true,"beta":false,"description":"Shogun-tmaher Ronin staging","terms_of_service":false},{"slug":"fugu","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Fugu","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:fugu","selective":true,"beta":false,"description":"Shogun-tmaher Fugu","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Sg","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"sg:test","selective":true,"beta":false,"description":"Sg Test","terms_of_service":false},{"slug":"redis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Bind","plan_description":"Redis","price":{"cents":0,"unit":"month"},"attachable":false,"name":"bind:redis","selective":true,"beta":false,"description":"Bind Redis","terms_of_service":false},{"url":"https://addons.heroku.com/addons/blitline:deployer","state":"public","price_cents":1299,"name":"blitline:deployer","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/blitline:deployer","description":"Blitline Deployer"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Dynonamics","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"dynonamics:test","selective":true,"beta":false,"description":"Dynonamics Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/stillalive:basic","state":"public","price_cents":0,"name":"stillalive:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/stillalive:basic","description":"StillAlive Basic"},{"slug":"grande","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Simple Worker","plan_description":"Grande","price":{"cents":7200,"unit":"month"},"attachable":false,"name":"simple_worker:grande","selective":true,"beta":false,"description":"Appoxy SimpleWorker Grande","terms_of_service":false},{"url":"https://addons.heroku.com/addons/cleardb:drift","state":"public","price_cents":4999,"name":"cleardb:drift","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cleardb:drift","description":"ClearDB MySQL Database Drift"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Connfu","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"connfu:test","selective":true,"beta":false,"description":"Connfu Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/blitz:250","state":"public","price_cents":0,"name":"blitz:250","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/blitz:250","description":"Blitz 250"},{"url":"https://addons.heroku.com/addons/cloudmailin:microplus","state":"public","price_cents":1700,"name":"cloudmailin:microplus","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cloudmailin:microplus","description":"CloudMailIn Micro Plus"},{"url":"https://addons.heroku.com/addons/iron_mq:rust","state":"public","price_cents":0,"name":"iron_mq:rust","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/iron_mq:rust","description":"IronMQ Rust"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Twilio","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"twilio:test","selective":true,"beta":false,"description":"Twilio Test","terms_of_service":false},{"slug":"zilla","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogunjdixon","plan_description":"Zilla","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogunjdixon:zilla","selective":true,"beta":false,"description":"Shogunjdixon Zilla","terms_of_service":false},{"url":"https://addons.heroku.com/addons/rhoconnect:basic","state":"public","price_cents":0,"name":"rhoconnect:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/rhoconnect:basic","description":"RhoConnect Basic"},{"url":"https://addons.heroku.com/addons/robowhois:test","state":"beta","price_cents":0,"name":"robowhois:test","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/robowhois:test","description":"RoboWhois Test"},{"slug":"fugu-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Tmaher","plan_description":"Fugu Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-tmaher:fugu-postgis","selective":true,"beta":false,"description":"Shogun-tmaher Fugu Postgis","terms_of_service":false},{"url":"https://addons.heroku.com/addons/docraptor:professional","state":"public","price_cents":3700,"name":"docraptor:professional","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/docraptor:professional","description":"DocRaptor Professional"},{"url":"https://addons.heroku.com/addons/restful_metrics:large","state":"public","price_cents":29900,"name":"restful_metrics:large","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/restful_metrics:large","description":"RESTful Metrics Large"},{"url":"https://addons.heroku.com/addons/pgbackups:basic","state":"public","price_cents":0,"name":"pgbackups:basic","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/pgbackups:basic","description":"PG Backups Basic"},{"slug":"single","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Bundles","plan_description":"Single","price":{"cents":0,"unit":"month"},"attachable":false,"name":"bundles:single","selective":true,"beta":false,"description":"Bundles Single Bundle","terms_of_service":false},{"slug":"kappa-postgis","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Kappa Postgis","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:kappa-postgis","selective":false,"beta":false,"description":"Heroku Postgres Kappa Postgis","terms_of_service":false},{"slug":"advanced","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Memcached","plan_description":"Advanced","price":{"cents":0,"unit":"month"},"attachable":false,"name":"memcached:advanced","selective":true,"beta":false,"description":"Memcached Memcached Advanced","terms_of_service":false},{"slug":"test","state":"disabled","url":null,"consumes_dyno_hours":false,"group_description":"Cleardb","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"cleardb:test","selective":true,"beta":false,"description":"ClearDB MySQL Database Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/ssl:endpoint","state":"public","price_cents":2000,"name":"ssl:endpoint","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/ssl:endpoint","description":"SSL Endpoint"},{"slug":"ika","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Pvh","plan_description":"Ika","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-pvh:ika","selective":true,"beta":false,"description":"Shogun-pvh Ika","terms_of_service":false},{"slug":"ronin","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Shogun Freeformz","plan_description":"Ronin","price":{"cents":0,"unit":"month"},"attachable":true,"name":"shogun-freeformz:ronin","selective":true,"beta":false,"description":"Shogun-freeformz Ronin","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Opencnam","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"opencnam:test","selective":true,"beta":false,"description":"Opencnam Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Docubear","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"docubear:test","selective":true,"beta":false,"description":"Docubear Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:mecha","state":"public","price_cents":640000,"name":"heroku-postgresql:mecha","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/heroku-postgresql:mecha","description":"Heroku Postgres Mecha"},{"url":"https://addons.heroku.com/addons/zencoder:10k","state":"public","price_cents":30000,"name":"zencoder:10k","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/zencoder:10k","description":"Zencoder 10,000 Minutes"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Tempodb","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"tempodb:test","selective":true,"beta":false,"description":"Tempo Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/stackmob:silver","state":"public","price_cents":1900,"name":"stackmob:silver","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/stackmob:silver","description":"Stackmob Silver"},{"url":"https://addons.heroku.com/addons/logentries:staging","state":"public","price_cents":10000,"name":"logentries:staging","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/logentries:staging","description":"Logentries Staging"},{"url":"https://addons.heroku.com/addons/justonedb:lambda","state":"public","price_cents":0,"name":"justonedb:lambda","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/justonedb:lambda","description":"JustOneDB - NewSQL Cloud Database Lambda"},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Cdnbuddy","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":false,"name":"cdnbuddy:test","selective":true,"beta":false,"description":"Cdnbuddy Test","terms_of_service":false},{"slug":"test","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Securekey Ar","plan_description":"Test","price":{"cents":0,"unit":"month"},"attachable":true,"name":"securekey-ar:test","selective":true,"beta":false,"description":"Securekey-ar Test","terms_of_service":false},{"url":"https://addons.heroku.com/addons/cleardb:scream","state":"public","price_cents":9999,"name":"cleardb:scream","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/cleardb:scream","description":"ClearDB MySQL Database Scream"},{"url":"https://addons.heroku.com/addons/ranger:recon","state":"public","price_cents":500,"name":"ranger:recon","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/ranger:recon","description":"Ranger Recon"},{"slug":"development","state":"alpha","url":null,"consumes_dyno_hours":false,"group_description":"Heroku Postgresql","plan_description":"Development","price":{"cents":0,"unit":"month"},"attachable":true,"name":"heroku-postgresql:development","selective":false,"beta":false,"description":"Heroku Postgres Development","terms_of_service":false},{"url":"https://addons.heroku.com/addons/ssl:hostname","state":"public","price_cents":2000,"name":"ssl:hostname","price_unit":"month","beta":false,"id":"https://addons.heroku.com/addons/ssl:hostname","description":"SSL Hostname Based SSL"}]
@@ -0,0 +1 @@
1
+ [{"kind":"app","name":"sigterm-all","enabled":true,"docs":"http://devcenter.heroku.com/articles/labs-sigterm-all","summary":"When stopping a dyno, send SIGTERM to all processes rather than only to the root process."},{"kind":"user","name":"sumo-rankings","enabled":false,"docs":"http://sumo.heroku.com","summary":"Heroku Sumo ranks and visualizes the scale of your app, and suggests the optimum combination of dynos and add-ons to take it to the next level."},{"kind":"app","name":"user_env_compile","enabled":false,"docs":"http://devcenter.heroku.com/articles/labs-user-env-compile","summary":"Add user config vars to the environment during slug compilation"}]
@@ -1 +1 @@
1
- {"name":null,"created_at":"2012/01/16 13:27:23 -0800","verified_at":"2012/01/16 13:30:59 -0800","last_login":"2012/05/18 11:23:50 -0700","confirmed":false,"id":"123456@users.heroku.com","verified":true,"confirmed_at":null,"email":"user@example.com"}
1
+ {"name":null,"created_at":"2012/01/16 13:27:23 -0800","verified_at":"2012/05/18 13:49:16 -0700","last_login":"2012/05/22 15:05:13 -0700","confirmed":false,"id":"123456@users.heroku.com","verified":true,"confirmed_at":null,"email":"user@example.com"}
@@ -0,0 +1,110 @@
1
+ module Heroku
2
+ class API
3
+ module Mock
4
+
5
+ # stub DELETE /features/:feature
6
+ Excon.stub(:expects => 200, :method => :delete, :path => %r{^/features/([^/]+)$}) do |params|
7
+ request_params, mock_data = parse_stub_params(params)
8
+ app = request_params[:query].has_key?('app') && request_params[:query]['app']
9
+ feature, _ = request_params[:captures][:path]
10
+ if !app || get_mock_app(mock_data, app)
11
+ # app found
12
+ if feature_data = get_mock_feature(mock_data, feature)
13
+ feature_data = feature_data.merge('enabled' => true)
14
+ # feature exists
15
+ case feature_data['kind']
16
+ when 'app'
17
+ mock_data[:features][:app][app].delete(feature_data)
18
+ {
19
+ :body => Heroku::API::OkJson.encode(feature_data.merge('enabled' => false)),
20
+ :status => 200
21
+ }
22
+ when 'user'
23
+ mock_data[:features][:user].delete(feature_data.merge('enabled' => false))
24
+ {
25
+ :body => Heroku::API::OkJson.encode(feature_data),
26
+ :status => 200
27
+ }
28
+ end
29
+ else
30
+ # feature does not exist
31
+ {
32
+ :body => Heroku::API::OkJson.encode({'error' => "Feature not found."}),
33
+ :status => 404
34
+ }
35
+ end
36
+ else
37
+ {
38
+ :body => 'Feature not enabled.',
39
+ :status => 422
40
+ }
41
+ end
42
+ end
43
+
44
+ # stub GET /features
45
+ Excon.stub(:expects => 200, :method => :get, :path => %r|^/features$|) do |params|
46
+ request_params, mock_data = parse_stub_params(params)
47
+ {
48
+ :body => File.read("#{File.dirname(__FILE__)}/cache/get_features.json"),
49
+ :status => 200
50
+ }
51
+ end
52
+
53
+ # stub GET /features/:feature
54
+ Excon.stub(:expects => 200, :method => :get, :path => %r{^/features/([^/]+)}) do |params|
55
+ request_params, mock_data = parse_stub_params(params)
56
+ feature, _ = request_params[:captures][:path]
57
+ if feature_data = get_mock_feature(mock_data, feature)
58
+ {
59
+ :body => Heroku::API::OkJson.encode(feature_data),
60
+ :status => 200
61
+ }
62
+ else
63
+ # feature does not exist
64
+ {
65
+ :body => Heroku::API::OkJson.encode({'error' => "Feature not found."}),
66
+ :status => 404
67
+ }
68
+ end
69
+ end
70
+
71
+ # stub POST /features/:feature
72
+ Excon.stub(:expects => 200, :method => :post, :path => %r{^/features/([^/]+)$}) do |params|
73
+ request_params, mock_data = parse_stub_params(params)
74
+ app = request_params[:query].has_key?('app') && request_params[:query]['app']
75
+ feature, _ = request_params[:captures][:path]
76
+ if !app || get_mock_app(mock_data, app)
77
+ # app found
78
+ if feature_data = get_mock_feature(mock_data, feature)
79
+ feature_data = feature_data.merge('enabled' => true)
80
+ # feature exists
81
+ case feature_data['kind']
82
+ when 'app'
83
+ mock_data[:features][:app][app] << feature_data
84
+ {
85
+ :body => Heroku::API::OkJson.encode(feature_data),
86
+ :status => 200
87
+ }
88
+ when 'user'
89
+ mock_data[:features][:user] << feature_data
90
+ {
91
+ :body => '',
92
+ :status => 200
93
+ }
94
+ end
95
+ else
96
+ # feature does not exist
97
+ {
98
+ :body => Heroku::API::OkJson.encode({'error' => "Feature not found."}),
99
+ :status => 404
100
+ }
101
+ end
102
+ else
103
+ # app not found
104
+ Heroku::API::Mock::APP_NOT_FOUND
105
+ end
106
+ end
107
+
108
+ end
109
+ end
110
+ end
@@ -53,7 +53,6 @@ module Heroku
53
53
  if STACKS.map {|stack_data| stack_data['name']}.include?(stack)
54
54
  {
55
55
  :body => <<-BODY,
56
- HTTP/1.1 200 OK
57
56
  -----> Preparing to migrate #{app}
58
57
  #{app_data['stack']} -> #{stack}
59
58
 
@@ -1,5 +1,5 @@
1
1
  module Heroku
2
2
  class API
3
- VERSION = "0.1.8"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
data/test/test_addons.rb CHANGED
@@ -39,7 +39,6 @@ class TestAddons < MiniTest::Unit::TestCase
39
39
  end
40
40
 
41
41
  def test_get_addons
42
- skip unless MOCK
43
42
  response = heroku.get_addons
44
43
  data = File.read("#{File.dirname(__FILE__)}/../lib/heroku/api/mock/cache/get_addons.json")
45
44
 
@@ -0,0 +1,87 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/test_helper")
2
+
3
+ class TestFeatures < MiniTest::Unit::TestCase
4
+
5
+ def setup
6
+ @feature_data ||= begin
7
+ data = File.read("#{File.dirname(__FILE__)}/../lib/heroku/api/mock/cache/get_features.json")
8
+ features_data = Heroku::API::OkJson.decode(data)
9
+ features_data.detect {|feature| feature['name'] == 'user_env_compile'}
10
+ end
11
+ end
12
+
13
+ def test_delete_feature
14
+ with_app do |app_data|
15
+ heroku.post_feature('user_env_compile', app_data['name'])
16
+ response = heroku.delete_feature('user_env_compile', app_data['name'])
17
+
18
+ assert_equal(200, response.status)
19
+ assert_equal(@feature_data, response.body)
20
+ end
21
+ end
22
+
23
+ def test_delete_feature_app_not_found
24
+ assert_raises(Heroku::API::Errors::RequestFailed) do
25
+ heroku.delete_feature('user_env_compile', random_name)
26
+ end
27
+ end
28
+
29
+ def test_delete_feature_feature_not_found
30
+ with_app do |app_data|
31
+ assert_raises(Heroku::API::Errors::NotFound) do
32
+ heroku.delete_feature(random_name, app_data['name'])
33
+ end
34
+ end
35
+ end
36
+
37
+ def test_get_features
38
+ with_app do |app_data|
39
+ response = heroku.get_features(app_data['name'])
40
+ data = File.read("#{File.dirname(__FILE__)}/../lib/heroku/api/mock/cache/get_features.json")
41
+
42
+ assert_equal(200, response.status)
43
+ assert_equal(Heroku::API::OkJson.decode(data), response.body)
44
+ end
45
+ end
46
+
47
+ def test_get_feature
48
+ with_app do |app_data|
49
+ response = heroku.get_feature('user_env_compile', app_data['name'])
50
+
51
+ assert_equal(200, response.status)
52
+ assert_equal(@feature_data, response.body)
53
+ end
54
+ end
55
+
56
+ def test_get_features_feature_not_found
57
+ with_app do |app_data|
58
+ assert_raises(Heroku::API::Errors::NotFound) do
59
+ heroku.get_feature(random_name, app_data['name'])
60
+ end
61
+ end
62
+ end
63
+
64
+ def test_post_feature
65
+ with_app do |app_data|
66
+ response = heroku.post_feature('user_env_compile', app_data['name'])
67
+
68
+ assert_equal(200, response.status)
69
+ assert_equal(@feature_data.merge('enabled' => true), response.body)
70
+ end
71
+ end
72
+
73
+ def test_post_feature_app_not_found
74
+ assert_raises(Heroku::API::Errors::NotFound) do
75
+ heroku.post_feature('user_env_compile', random_name)
76
+ end
77
+ end
78
+
79
+ def test_post_feature_feature_not_found
80
+ with_app do |app_data|
81
+ assert_raises(Heroku::API::Errors::NotFound) do
82
+ heroku.post_feature(random_name, app_data['name'])
83
+ end
84
+ end
85
+ end
86
+
87
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heroku-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.2.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-21 00:00:00.000000000 Z
12
+ date: 2012-05-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: excon
16
- requirement: &70208858474840 !ruby/object:Gem::Requirement
16
+ requirement: &70170795603340 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 0.13.3
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70208858474840
24
+ version_requirements: *70170795603340
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: minitest
27
- requirement: &70208858474420 !ruby/object:Gem::Requirement
27
+ requirement: &70170795602880 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *70208858474420
35
+ version_requirements: *70170795602880
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: rake
38
- requirement: &70208858473940 !ruby/object:Gem::Requirement
38
+ requirement: &70170795602180 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '0'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *70208858473940
46
+ version_requirements: *70170795602180
47
47
  description: Ruby Client for the Heroku API
48
48
  email:
49
49
  - wesley@heroku.com
@@ -66,6 +66,7 @@ files:
66
66
  - lib/heroku/api/config_vars.rb
67
67
  - lib/heroku/api/domains.rb
68
68
  - lib/heroku/api/errors.rb
69
+ - lib/heroku/api/features.rb
69
70
  - lib/heroku/api/keys.rb
70
71
  - lib/heroku/api/login.rb
71
72
  - lib/heroku/api/logs.rb
@@ -73,10 +74,12 @@ files:
73
74
  - lib/heroku/api/mock/addons.rb
74
75
  - lib/heroku/api/mock/apps.rb
75
76
  - lib/heroku/api/mock/cache/get_addons.json
77
+ - lib/heroku/api/mock/cache/get_features.json
76
78
  - lib/heroku/api/mock/cache/get_user.json
77
79
  - lib/heroku/api/mock/collaborators.rb
78
80
  - lib/heroku/api/mock/config_vars.rb
79
81
  - lib/heroku/api/mock/domains.rb
82
+ - lib/heroku/api/mock/features.rb
80
83
  - lib/heroku/api/mock/keys.rb
81
84
  - lib/heroku/api/mock/login.rb
82
85
  - lib/heroku/api/mock/logs.rb
@@ -95,6 +98,7 @@ files:
95
98
  - test/test_collaborators.rb
96
99
  - test/test_config_vars.rb
97
100
  - test/test_domains.rb
101
+ - test/test_features.rb
98
102
  - test/test_helper.rb
99
103
  - test/test_keys.rb
100
104
  - test/test_login.rb
@@ -117,7 +121,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
117
121
  version: '0'
118
122
  segments:
119
123
  - 0
120
- hash: 1066627080143481196
124
+ hash: -2481307167296695720
121
125
  required_rubygems_version: !ruby/object:Gem::Requirement
122
126
  none: false
123
127
  requirements:
@@ -126,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
130
  version: '0'
127
131
  segments:
128
132
  - 0
129
- hash: 1066627080143481196
133
+ hash: -2481307167296695720
130
134
  requirements: []
131
135
  rubyforge_project:
132
136
  rubygems_version: 1.8.15
@@ -139,6 +143,7 @@ test_files:
139
143
  - test/test_collaborators.rb
140
144
  - test/test_config_vars.rb
141
145
  - test/test_domains.rb
146
+ - test/test_features.rb
142
147
  - test/test_helper.rb
143
148
  - test/test_keys.rb
144
149
  - test/test_login.rb