fwtoolkit 2.3.4 → 2.3.5

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
  SHA256:
3
- metadata.gz: 6b39cca81c6acf7d8aed08904d66ef45b1ba61ae9748e4a3c3612ffb073f5479
4
- data.tar.gz: 6a8308c9456e782a137c633127af3e436bbd6983d2a8a2051c4d5270eac02128
3
+ metadata.gz: 7556902d6c40906e6016637d252798a41b96b2ab74ada204cd59d1e3226f997a
4
+ data.tar.gz: 7843f48e49d97dfbd237576608353d3b647545a3b7bffdb1a75cb9c334224212
5
5
  SHA512:
6
- metadata.gz: fa7c48061f0c17980cd75e73cb6745a3fdf7f1e1ca2174081d9750a6730a9e80d8bd6ab4badbd0252347cb350629a7a90875626011d399a66ce3eaac69692b6c
7
- data.tar.gz: 8c96154d1daf03ae9688f78a43566b8d6c734030c5adf6ecce996ff844f86c20b8a9d1ea5cf9b1f696fce6e2a62532819716369fd7ca3996f577529421238586
6
+ metadata.gz: e81f9e923a872eecd116bbc68b0a99840ed8e39efec42a65706cc0ee8a855f24a01d1d547d1c74dea97df8bad6772a7d9f096c3a4f4e4c74b8fb6f357e55cacb
7
+ data.tar.gz: f007d5388bca9c9ad47aa1ebb19251c2a6197a5c39ccee1fe426b98d420623bade72a62280d95b9bc57447eb869fd229ea99a83c082ab6350fae2ac4b149d315
@@ -5,11 +5,13 @@ Given /^a configured installation of FWToolkit for "([^"]*)" working for "([^"]*
5
5
  Given I'm using a clean home directory
6
6
  }
7
7
  steps %Q{
8
- And a directory named ".fwtoolkit" inside the home directory
9
- And a file named "#{File.join(Dir.home, '.fwtoolkit', 'config')}" with:
8
+ And a file named "#{File.join(ENV['CONFIG_PATH'] || Dir.home, '.fwtoolkitconfig')}" with:
10
9
  """
11
10
  developer_name: "#{dev_name}"
12
11
  organization_name: "#{company_name}"
12
+ organization_name: "Future Workshops"
13
+ target_platform: "13.0"
14
+ ci_server_url: "https://app.bitrise.io/dashboard"
13
15
  """
14
16
  }
15
17
  end
@@ -5,12 +5,16 @@ module FWToolkit
5
5
  module Config
6
6
  include FWToolkit::ConfigFile
7
7
 
8
+ def self.base_path
9
+ ENV['CONFIG_PATH'] || ENV['HOME']
10
+ end
11
+
8
12
  def self.config_file
9
- File.join(ENV['HOME'], '.fwtoolkitconfig')
13
+ File.join(base_path, '.fwtoolkitconfig')
10
14
  end
11
15
 
12
16
  def self.old_file
13
- File.join(ENV['HOME'], '.fwtoolkit', 'config')
17
+ File.join(base_path, '.fwtoolkit', 'config')
14
18
  end
15
19
 
16
20
  def self.base_file
@@ -1,3 +1,3 @@
1
1
  module FWToolkit
2
- VERSION = "2.3.4"
2
+ VERSION = "2.3.5"
3
3
  end
@@ -9,6 +9,7 @@ bitrise.yml
9
9
  .bitrise*
10
10
 
11
11
  #CocoaPods
12
+ Pods/
12
13
  Pods/CocoaPodsKeys
13
14
 
14
15
  # Xcode
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fwtoolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.4
4
+ version: 2.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Future Workshops
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-25 00:00:00.000000000 Z
11
+ date: 2020-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec-rails