rainforest-cli 1.1.1 → 1.1.2

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: 48a539abecbbf5852c83cb75860eb0bd65c2a170
4
- data.tar.gz: 6817f88911705aced2f341cce3da08ea51929822
3
+ metadata.gz: 145d2ab611a9abd9f1ce16389a459d514a84cd74
4
+ data.tar.gz: a8ac1150a5a839c24a842e8497f6685a2fc7d009
5
5
  SHA512:
6
- metadata.gz: df5ec7740f83ed4c6444243d7f11ebfac479fec428a428c26daa3df50001819235cfc139e385c7662cb6d5b2bcc79ea7527c9bc02ff3c219ce76c4321b575836
7
- data.tar.gz: 12aabc05824c282f45240f2d4b3fedf93a4d8e429f8bdb52d0c17939fa9f3c09d0d5d516ad33c1c11143e1afd8fa6f4ca0492224611d60fe4c3492990e4638a0
6
+ metadata.gz: 32e07df74e7e7129a1346ad9b121d01c81e4983c42b2803ac4b2851aad225d15c0d0ae336e5cd99bff06ae7b0d204b23a09d23eaf33f1b165dddf63edbca1b8d
7
+ data.tar.gz: 8832cc387bed3a61cc5af82dd96ce3cf094ecfe7b6e154dd26fd9cb550843c024ae366d4e41d0e74c36822ba7413f9eb2e074a1895906da5891ff856034c0cb8
data/.travis.yml CHANGED
@@ -2,8 +2,7 @@ language: ruby
2
2
  rvm:
3
3
  - 2.3.0
4
4
  - 2.2.3
5
- - 2.1.2
5
+ - 2.1.8
6
6
  - 2.0.0
7
- - 1.9.3
8
7
 
9
8
  script: bundle exec rspec spec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Rainforest CLI Changelog
2
2
 
3
+ ## 1.1.2 - 15th January 2016
4
+ - Fixed specs (7c4af508d8cfa95363ee9976f1fa6f01f7c8d27b, @ukd1)
5
+ - Fixed a bug for users of Pivotal which caused tags to be incorrectly parsed (82966e7e739b590b396266d12d72605d6e19c12b, @chaselee)
6
+
3
7
  ## 1.1.0 - 6th January 2016
4
8
  - Added support for tests stored in plain text format, so you can store them locally
5
9
 
@@ -36,10 +36,6 @@ module RainforestCli
36
36
  when 'upload'
37
37
  t = TestImporter.new(options)
38
38
  t.upload
39
-
40
- # options.tags = ['ro']
41
- # runner = Runner.new(options)
42
- # runner.run
43
39
  when 'export'
44
40
  t = TestImporter.new(options)
45
41
  t.export
@@ -7,7 +7,7 @@ module RainforestCli
7
7
  end
8
8
 
9
9
  def self.extract_hashtags(commit_message)
10
- commit_message.scan(/#([\w_-]+)/).flatten.map {|s| s.gsub('#','') }
10
+ commit_message.partition('@rainforest').last.scan(/#([\w_-]+)/).flatten.map {|s| s.gsub('#','') }
11
11
  end
12
12
 
13
13
  def self.last_commit_message
@@ -1,3 +1,3 @@
1
1
  module RainforestCli
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
data/spec/cli_spec.rb CHANGED
@@ -6,7 +6,7 @@ describe RainforestCli do
6
6
  end
7
7
 
8
8
  describe ".start" do
9
- let(:valid_args) { %w(--token foo run --fg all) }
9
+ let(:valid_args) { %w(run --token foo run --fg all) }
10
10
  let(:ok_progress) do
11
11
  {
12
12
  "state" => "in_progress",
@@ -27,7 +27,7 @@ describe RainforestCli do
27
27
 
28
28
  context "with bad parameters" do
29
29
  context "no token" do
30
- let(:params) { %w(--custom-url http://ad-hoc.example.com) }
30
+ let(:params) { %w(run --custom-url http://ad-hoc.example.com) }
31
31
  it 'errors out' do
32
32
  expect_any_instance_of(Logger).to receive(:fatal).with('You must pass your API token using: --token TOKEN')
33
33
  expect {
@@ -40,7 +40,7 @@ describe RainforestCli do
40
40
  end
41
41
 
42
42
  context "git-trigger" do
43
- let(:params) { %w(--token x --git-trigger) }
43
+ let(:params) { %w(run --token x --git-trigger) }
44
44
  let(:commit_message) { 'a test commit message' }
45
45
 
46
46
  def start_with_params(params, expected_exit_code = 2)
@@ -56,7 +56,7 @@ describe RainforestCli do
56
56
  end
57
57
 
58
58
  describe "with tags parameter passed" do
59
- let(:params) { %w(--token x --tag x --git-trigger) }
59
+ let(:params) { %w(run --token x --tag x --git-trigger) }
60
60
 
61
61
  it "warns about the parameter being ignored" do
62
62
  expect_any_instance_of(Logger).to receive(:warn).with("Specified tags are ignored when using --git-trigger")
@@ -66,7 +66,7 @@ describe RainforestCli do
66
66
  end
67
67
 
68
68
  describe "without tags parameter passed" do
69
- let(:params) { %w(all --token x --git-trigger) }
69
+ let(:params) { %w(run all --token x --git-trigger) }
70
70
 
71
71
  it "warns about the parameter being ignored" do
72
72
  expect_any_instance_of(Logger).to receive(:warn).with("Specified tests are ignored when using --git-trigger")
@@ -109,7 +109,7 @@ describe RainforestCli do
109
109
  end
110
110
 
111
111
  context "with site-id and custom-url" do
112
- let(:params) { %w(--token x --site 3 --custom-url http://ad-hoc.example.com) }
112
+ let(:params) { %w(run --token x --site 3 --custom-url http://ad-hoc.example.com) }
113
113
  it "creates a new environment" do
114
114
  http_client.should_receive(:post).with("/environments",
115
115
  {
@@ -145,7 +145,7 @@ describe RainforestCli do
145
145
  end
146
146
 
147
147
  context "with environment-id" do
148
- let(:params) { %w(--token x --environment 123) }
148
+ let(:params) { %w(run --token x --environment 123) }
149
149
 
150
150
  it "starts the run with environment_id" do
151
151
  RainforestCli::Runner.any_instance.stub(get_environment_id: 333)
@@ -159,7 +159,7 @@ describe RainforestCli do
159
159
  end
160
160
 
161
161
  context "with smart_folder_id" do
162
- let(:params) { %w(--token x --folder 123) }
162
+ let(:params) { %w(run --token x --folder 123) }
163
163
 
164
164
  it "starts the run with smart folder" do
165
165
  http_client.should_receive(:post).with(
@@ -33,9 +33,11 @@ describe RainforestCli::GitTrigger do
33
33
  describe ".extract_hashtags" do
34
34
  it "returns a list of hashtags" do
35
35
  expect(described_class.extract_hashtags('hello, world')).to eq []
36
- expect(described_class.extract_hashtags('#hello, #world')).to eq ['hello', 'world']
37
- expect(described_class.extract_hashtags('#hello,#world')).to eq ['hello', 'world']
38
- expect(described_class.extract_hashtags('#dashes-work, #underscores_work #007')).to eq ['dashes-work', 'underscores_work', '007']
36
+ expect(described_class.extract_hashtags('#hello, #world')).to eq []
37
+ expect(described_class.extract_hashtags('@rainforest #hello, #world')).to eq ['hello', 'world']
38
+ expect(described_class.extract_hashtags('#notForRainforest @rainforest #hello, #world')).to eq ['hello', 'world']
39
+ expect(described_class.extract_hashtags('@rainforest #hello,#world')).to eq ['hello', 'world']
40
+ expect(described_class.extract_hashtags('@rainforest #dashes-work, #underscores_work #007')).to eq ['dashes-work', 'underscores_work', '007']
39
41
  end
40
42
  end
41
43
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rainforest-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Mathieu
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-01-06 00:00:00.000000000 Z
12
+ date: 2016-01-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty
@@ -115,7 +115,6 @@ files:
115
115
  - README.md
116
116
  - Rakefile
117
117
  - bin/rainforest
118
- - certs/ukd1.pem
119
118
  - lib/rainforest/cli.rb
120
119
  - lib/rainforest/cli/csv_importer.rb
121
120
  - lib/rainforest/cli/git_trigger.rb
data/certs/ukd1.pem DELETED
@@ -1,22 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIDljCCAn6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBIMR0wGwYDVQQDDBRydXNz
3
- ZWxsLmhvd2FyZC5zbWl0aDESMBAGCgmSJomT8ixkARkWAm1lMRMwEQYKCZImiZPy
4
- LGQBGRYDY29tMB4XDTE0MDgxNDA1Mzc0NloXDTE1MDgxNDA1Mzc0NlowSDEdMBsG
5
- A1UEAwwUcnVzc2VsbC5ob3dhcmQuc21pdGgxEjAQBgoJkiaJk/IsZAEZFgJtZTET
6
- MBEGCgmSJomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
7
- ggEBAKSK3Sfhs+miX1jdDywi9Khl1QjIn2DUM1U+bou6WLkQaOUtqhX/T2jHltQ9
8
- Olc7jaz4XO5g+YngELX2tGFA6zbUnvaHXnPz23hPsP5TUErFAI1VJYl9fmQY6sEd
9
- komCT8jZwB09Re20iyZtNsEMa8gagR7qX1wgPVqxAncE7OJ5stwHxcSQABfGrInF
10
- sdZyjqNE2D0NxWZoWTC7CERaRNUm12y4NpHm6fdvtbgsB14WQjaqOYYUmFffT89Y
11
- c0TOOGUV1aMbjpRUZFhu/tAaWGW+GfZnln9F3GWYJMRzC5k8+awB1vXgnfqZH007
12
- ef85jyOutXfKKYyXcWlvrDMoTTUCAwEAAaOBijCBhzAJBgNVHRMEAjAAMAsGA1Ud
13
- DwQEAwIEsDAdBgNVHQ4EFgQUFws4YIAtrBiQdbpWgqwcYd/+Hh4wJgYDVR0RBB8w
14
- HYEbcnVzc2VsbC5ob3dhcmQuc21pdGhAbWUuY29tMCYGA1UdEgQfMB2BG3J1c3Nl
15
- bGwuaG93YXJkLnNtaXRoQG1lLmNvbTANBgkqhkiG9w0BAQUFAAOCAQEADHQJiURU
16
- PJbfReV/MgIum917Vktz9Zv1GPzKzY5EkIL34FylaSernkITWe6GcsMb8yNrdG/1
17
- eSyAvx32v/L3ef2mp7kHXbtzcXBq3xyCewfH6AfX3dm65CfgaeGx+qK/F/bl0iiZ
18
- SQpNWk3RB/7deQThk3SYD8jS8n1d7KSRLogpXnSNWRyaSHtZ2x7T2qVpn4lp1PIi
19
- /4Hg5bJrO0VqDlVG8UvsFbFB24ZNDQVq73MLZFNez0UBhOZVo4kBlSUvyEv5YLlA
20
- wWdLLpBZZ1O4GE0uzQovmTiis4iyCF+8tFIgjbM/FVwKUBV6OZpxs4FOBtR1mK6L
21
- lj0cPcKRm/FZUw==
22
- -----END CERTIFICATE-----