pah 0.0.22 → 0.0.23

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1baaeefe178390a92b2b147b9fed786f918af531
4
- data.tar.gz: a1f31d22dbc8df6ce2c62a201455dcc2110ddeac
3
+ metadata.gz: 972b6d870ebb28ab6d2961182423d7f80a8a4233
4
+ data.tar.gz: 2fd33d8f15d13884f5504419bb7fa79b4b9e7e47
5
5
  SHA512:
6
- metadata.gz: f9aa48e4000debd8029e2348a308daa8d58467f162da72f270cb2782d420fe7d34966a6d90b4f33d607327287f0f6b7dcd48dde97534ab336f36b907be214200
7
- data.tar.gz: 97e7947fa48abbdf4bd9ce77472f0f78ed2440af60fc9fc91021a5cc934dd527a779abdbc237699442341a86268b143e94d3252a483419710a96a14d0d66ecac
6
+ metadata.gz: 2e34e37fb95cefe7114379a3b3f2f67908c8409f568a035c38453da5d3a10d853fdeb74284b9784d89d46318404fd83a86dfd7c71e9833948206a0a5abf196db
7
+ data.tar.gz: aa3909a76296a02667d7003332347ddbadd6733b6ac4422a7797dc0286d74bea025ed3d41920b15091d9e22f4d5cadba6c9ab8c6c49d8e2fbc278bd045c96299
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.0.23 (Unreleased)
3
+ ## 0.0.24 (Unreleased)
4
4
 
5
5
  ### features
6
6
 
@@ -8,6 +8,14 @@
8
8
 
9
9
  ### bug fixes
10
10
 
11
+ ## 0.0.23 (June 12,2015)
12
+
13
+ ### improvements
14
+ - Change command that add Heroku add-ons from `addons:add` to `addons:create`
15
+
16
+ ### bug fixes
17
+ - Changed NewRelic Add-on plan from stark to wayne
18
+
11
19
  ## 0.0.22 (April 20,2015)
12
20
 
13
21
  ### features
@@ -4,7 +4,7 @@ Feature: Commands
4
4
  When I run `pah --version`
5
5
  Then the output should contain:
6
6
  """
7
- Pah version: 0.0.22
7
+ Pah version: 0.0.23
8
8
  Rails version: 4.2.0
9
9
  Ruby version: 2.2.1
10
10
  """
@@ -12,7 +12,7 @@ Feature: Commands
12
12
  When I run `pah -v`
13
13
  Then the output should contain:
14
14
  """
15
- Pah version: 0.0.22
15
+ Pah version: 0.0.23
16
16
  Rails version: 4.2.0
17
17
  Ruby version: 2.2.1
18
18
  """
@@ -30,27 +30,27 @@ Feature: Run without errors
30
30
  """
31
31
  Then the stdout should contain:
32
32
  """
33
- running heroku addons:add heroku-postgresql:dev --app myapponheroku
33
+ running heroku addons:create heroku-postgresql:dev --app myapponheroku
34
34
  """
35
35
  Then the stdout should contain:
36
36
  """
37
- running heroku addons:add logentries --app myapponheroku
37
+ running heroku addons:create logentries --app myapponheroku
38
38
  """
39
39
  Then the stdout should contain:
40
40
  """
41
- running heroku addons:add mandrill:starter --app myapponheroku
41
+ running heroku addons:create mandrill:starter --app myapponheroku
42
42
  """
43
43
  Then the stdout should contain:
44
44
  """
45
- running heroku addons:add rollbar --app myapponheroku
45
+ running heroku addons:create rollbar --app myapponheroku
46
46
  """
47
47
  Then the stdout should contain:
48
48
  """
49
- running heroku addons:add newrelic:stark --app myapponheroku
49
+ running heroku addons:create newrelic:wayne --app myapponheroku
50
50
  """
51
51
  Then the stdout should contain:
52
52
  """
53
- running heroku addons:add librato --app myapponheroku
53
+ running heroku addons:create librato --app myapponheroku
54
54
  """
55
55
  Then the stdout should contain:
56
56
  """
@@ -12,9 +12,9 @@ class Heroku < Thor
12
12
  puts "running heroku config:set #{config.join(' ')}"
13
13
  end
14
14
 
15
- desc 'addons:add', 'stub of heroku addons:add'
16
- define_method 'addons:add' do |*addon|
17
- puts "running heroku addons:add #{addon.join(' ')}"
15
+ desc 'addons:create', 'stub of heroku addons:create'
16
+ define_method 'addons:create' do |*addon|
17
+ puts "running heroku addons:create #{addon.join(' ')}"
18
18
  end
19
19
 
20
20
  desc 'domains:add', 'stub of heroku domains:add'
@@ -1,6 +1,6 @@
1
1
  class HerokuApp < Rails::Generators::AppGenerator
2
2
  DEFAULT_ADDONS = %w(heroku-postgresql:dev logentries
3
- mandrill:starter rollbar newrelic:stark librato)
3
+ mandrill:starter rollbar newrelic:wayne librato)
4
4
 
5
5
  attr_reader :name, :description, :config
6
6
 
@@ -35,7 +35,7 @@ class HerokuApp < Rails::Generators::AppGenerator
35
35
 
36
36
  def add_heroku_addon(addon)
37
37
  say "Adding heroku addon [#{addon}] to '#{name}'.".green
38
- run "heroku addons:add #{addon} --app #{name}"
38
+ run "heroku addons:create #{addon} --app #{name}"
39
39
  end
40
40
 
41
41
  def add_canonical_domain(domain)
@@ -1,5 +1,5 @@
1
1
  module Pah
2
- VERSION = '0.0.22'
2
+ VERSION = '0.0.23'
3
3
  RUBY_VERSION = '2.2.1'
4
4
  RAILS_VERSION = '4.2.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pah
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.22
4
+ version: 0.0.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - HE:labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-20 00:00:00.000000000 Z
11
+ date: 2015-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails