pah 0.0.25 → 0.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9a7c2a07a90f8cfa6a2f3986ab579f800c2ea59f
4
- data.tar.gz: ae2933a7b1e5f251853393a85f3b317a1a7501a8
3
+ metadata.gz: 17be47e225ea6a2abd9fbd5c0b4eb568c8356252
4
+ data.tar.gz: eb4602498a03c170f6616504189615be717f0ab9
5
5
  SHA512:
6
- metadata.gz: 618f75b0722af9cb43c397e90b05357c8adab66f8840f09556a16b4fadb22b88639008fa0ec1476c09386fa70041e8f82514c9ec8821e6063dc4d9c81d167c06
7
- data.tar.gz: a4b6861f7b8baa8a1d31506cfabf142511de99b5bda9edabf79195b4dd62178535b6e2281093750fd8ee366b8bf5b8ec1d3f4943d7a0fcd0b5bcaec6c6795a18
6
+ metadata.gz: 05cd0695679d99414cec9e4c1338399a9de2325882fe1eff88985f657c15ac2b5ecf75536cd174d4a1c9ed7920db9ff5221729129a6736ff20cea423ae7041e9
7
+ data.tar.gz: b9a347fe5c806b09870b046768f95a00034583d9b24d870ef6a06f6d50c8376ce7a92d93019195dcdd1407f74eee627207ee351c311d7cfb058c33856a508805
@@ -1,6 +1,8 @@
1
1
  # Changelog
2
2
 
3
- ## 0.0.26 (Unreleased)
3
+ ## 0.0.26 (May 26, 2016)
4
+ - Fix Heroku sharing command, changed from sharing:add to access:add
5
+ - Changed Rollbar version to 2.11.3
4
6
 
5
7
  ## 0.0.25
6
8
  - Remove web-console gem
@@ -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.24
7
+ Pah version: 0.0.25
8
8
  Rails version: 4.2.5
9
9
  Ruby version: 2.2.3
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.24
15
+ Pah version: 0.0.25
16
16
  Rails version: 4.2.5
17
17
  Ruby version: 2.2.3
18
18
  """
@@ -7,6 +7,7 @@ Feature: Rails works
7
7
  Scenario: The rails works
8
8
  When I run `cp -r myapp myapp_with_controller`
9
9
  And I cd to "myapp_with_controller"
10
+ And I run `ruby -e "Bundler.with_clean_env { system 'bundle exec spring stop' }"`
10
11
  And I run `ruby -e "Bundler.with_clean_env { system 'bundle exec rails g controller welcome index' }"`
11
12
  And I run `ruby -e "Bundler.with_clean_env { system 'bundle exec rails s' }"` interactively
12
13
  And I run `ruby -e "Bundler.with_clean_env { system 'sleep 15' }"`
@@ -4,6 +4,7 @@ Feature: Run without errors
4
4
  In order to use pah, I need this to run
5
5
  without any error
6
6
 
7
+ @no-travis
7
8
  Scenario: Running pah with heroku
8
9
  When I run `pah myapp_on_heroku` interactively
9
10
  And I type "y"
@@ -21,8 +22,8 @@ Feature: Run without errors
21
22
  """
22
23
  Then the stdout should contain:
23
24
  """
24
- running heroku sharing:add jondoe@example.com --app myapponheroku
25
- running heroku sharing:add janedoe@example.com --app myapponheroku
25
+ running heroku access:add jondoe@example.com --app myapponheroku
26
+ running heroku access:add janedoe@example.com --app myapponheroku
26
27
  """
27
28
  Then the stdout should contain:
28
29
  """
@@ -22,9 +22,9 @@ class Heroku < Thor
22
22
  puts "running heroku domains:add #{domain.join(' ')}"
23
23
  end
24
24
 
25
- desc 'sharing:add', 'stub of heroku sharing:add'
26
- define_method 'sharing:add' do |*domain|
27
- puts "running heroku sharing:add #{domain.join(' ')}"
25
+ desc 'access:add', 'stub of heroku access:add'
26
+ define_method 'access:add' do |*domain|
27
+ puts "running heroku access:add #{domain.join(' ')}"
28
28
  end
29
29
 
30
30
  desc 'pg:backups', 'stub of heroku pg:backups'
@@ -0,0 +1,3 @@
1
+ Before('@no-travis') do
2
+ skip_this_scenario if ENV['CI']
3
+ end
@@ -19,7 +19,7 @@ gem 'neat', '1.7.2'
19
19
  gem 'bitters', '1.1.0'
20
20
  gem 'refills', '0.1.0'
21
21
  gem 'normalize-rails', '3.0.3'
22
- gem 'rollbar', '2.7.0'
22
+ gem 'rollbar', '2.11.3'
23
23
 
24
24
  group :production, :staging do
25
25
  gem 'rails_12factor', '0.0.3'
@@ -43,7 +43,7 @@ class HerokuApp < Rails::Generators::AppGenerator
43
43
  end
44
44
 
45
45
  def add_collaborator(email)
46
- run "heroku sharing:add #{email} --app #{name}"
46
+ run "heroku access:add #{email} --app #{name}"
47
47
  end
48
48
 
49
49
  def add_timezone_config
@@ -1,5 +1,5 @@
1
1
  module Pah
2
- VERSION = '0.0.25'
2
+ VERSION = '0.0.26'
3
3
  RUBY_VERSION = '2.2.3'
4
4
  RAILS_VERSION = '4.2.5'
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.25
4
+ version: 0.0.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - HE:labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-13 00:00:00.000000000 Z
11
+ date: 2016-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -166,6 +166,7 @@ files:
166
166
  - features/support/bin/heroku
167
167
  - features/support/env.rb
168
168
  - features/support/file_helpers.rb
169
+ - features/support/hooks.rb
169
170
  - lib/pah.rb
170
171
  - lib/pah/cli.rb
171
172
  - lib/pah/commands.rb
@@ -302,3 +303,4 @@ test_files:
302
303
  - features/support/bin/heroku
303
304
  - features/support/env.rb
304
305
  - features/support/file_helpers.rb
306
+ - features/support/hooks.rb