tddium-preview 0.6.3 → 0.6.4

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.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tddium-preview (0.6.2)
4
+ tddium-preview (0.6.4)
5
5
  bundler
6
6
  highline
7
7
  json
@@ -57,15 +57,15 @@ module TddiumConstant
57
57
  PASSWORD_CONFIRMATION = "Confirm your password: "
58
58
  INVITATION_TOKEN = "Enter your invitation token:"
59
59
  USE_EXISTING_SUITE = "A suite exists '%%s' (branch %s). Enter '#{Response::YES}' to use it, or enter a new repo name:"
60
- TEST_PATTERN = "Default test pattern: "
60
+ TEST_PATTERN = "Enter a test pattern or press 'Return'. Using '%s' by default:"
61
61
  ENABLE_CI = "Do you want to configure Hosted Continuous Integration?"
62
62
  UPDATE_SUITE = "Do you want to edit settings for this suite?"
63
- CI_PULL_URL = "git URL to pull from:"
64
- CI_PUSH_URL = "git URL to push on passing tests (blank to disable):"
63
+ CI_PULL_URL = "Enter a git URL to pull from:"
64
+ CI_PUSH_URL = "Enter a git URL to push when tests pass (blank to disable):"
65
65
  ENABLE_CAMPFIRE = "Setup Campfire CI notifications?"
66
- CAMPFIRE_SUBDOMAIN = "Campfire Subdomain:"
67
- CAMPFIRE_ROOM = "Campfire Room:"
68
- CAMPFIRE_TOKEN = "Campfire API Token:"
66
+ CAMPFIRE_SUBDOMAIN = "Enter your Campfire subdomain:"
67
+ CAMPFIRE_ROOM = "Enter the Campfire room name:"
68
+ CAMPFIRE_TOKEN = "Enter your Campfire API Token:"
69
69
  end
70
70
 
71
71
  module Process
@@ -3,5 +3,5 @@ Copyright (c) 2011 Solano Labs All Rights Reserved
3
3
  =end
4
4
 
5
5
  module TddiumVersion
6
- VERSION = "0.6.3"
6
+ VERSION = "0.6.4"
7
7
  end
data/spec/tddium_spec.rb CHANGED
@@ -1483,7 +1483,7 @@ describe Tddium do
1483
1483
  context "interactive mode" do
1484
1484
  before do
1485
1485
  tddium.stub(:ask).with(Tddium::Text::Prompt::USE_EXISTING_SUITE % SAMPLE_BRANCH_NAME % SAMPLE_APP_NAME).and_return("foobar")
1486
- tddium.stub(:ask).with(Tddium::Text::Prompt::TEST_PATTERN).and_return(SAMPLE_SUITE_PATTERN)
1486
+ tddium.stub(:ask).with(Tddium::Text::Prompt::TEST_PATTERN % Tddium::Default::SUITE_TEST_PATTERN).and_return(SAMPLE_SUITE_PATTERN)
1487
1487
  stub_default_suite_name
1488
1488
  end
1489
1489
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: tddium-preview
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.6.3
5
+ version: 0.6.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Solano Labs