nixenvironment 0.0.148 → 0.0.150

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: e3e51a667213bd4240f0d130d7348f42e518dd724deca14b6be4e746bd4d0098
4
- data.tar.gz: a1309d0b398cd59c6fbf5186ef0feb395024e6a63f1b6df44ee23430830d8990
3
+ metadata.gz: eebecb5d984b392bf1b9f87288de171f1f2121e4929c7785bdeae4c145ee551d
4
+ data.tar.gz: 56dca44fd9adfc61f47f8cdaaf29d2bd14565d3d7e86f80a7b148dcd832edf9b
5
5
  SHA512:
6
- metadata.gz: 4269d732531d1586a5e17b88dab6d5705f5808a4831c728b3cc685624a7adbc3912d5c584183e584b09f0566dbb51d19dc479642e2669daf6a749dcdaed21b6d
7
- data.tar.gz: f61c010b429584ba87cf3d25ad08a536ff6e6b993d676f74c5d8765ac90c151b9ffc2314860751000a6229ade969638ad55c991a1a792dff1a0831817366f6df
6
+ metadata.gz: '081e252736e148f1611222008e5cb2b132d8cff53c0faf3280d8b7c6d51bdeba351e385761273d4e7863500967d91713d92fb8c2a1e1a2940659da59f1577350'
7
+ data.tar.gz: 6a1980398f29abf62725439570e6c53b839f5abd63a707fb1b473cf1f2ad1015db4fffdb8b3afaf2335040476aa8529ae4741b9168a2d08b9ae5716b40059107
@@ -1,10 +1,10 @@
1
1
  module Nixenvironment
2
2
  # template peojects repositories
3
3
  TEMPLATES_REPO_LIST = {
4
- 'objc' => 'https://gitlab.nixdev.co/NIX_iPhone_Internal/NP.git',
5
- 'swift' => 'https://gitlab.nixdev.co/NIX_iPhone_Internal/nps.git',
4
+ 'objc' => 'git@gitlab.nixdev.co:nix_iphone_internal/np.git',
5
+ 'swift' => 'git@gitlab.nixdev.co:nix_iphone_internal/nps.git',
6
6
  'unity' => 'https://gitlab.nixdev.co/NIX_Unity_Internal/NUP.git',
7
- 'macos' => 'https://gitlab.nixdev.co/NIX_iPhone_Internal/nmp.git'
7
+ 'macos' => 'git@gitlab.nixdev.co:nix_iphone_internal/nmp.git'
8
8
  }
9
9
 
10
10
  # config
@@ -14,8 +14,8 @@ module GitHelper
14
14
  FileUtils.mkdir_p(path_to_environment)
15
15
 
16
16
  Dir.chdir(path_to_environment) do
17
- unless system('git clone git@gitlab.nixdev.co.write:NIX_iPhone_Internal/IJE.git .')
18
- if system('git clone https://gitlab.nixdev.co/NIX_iPhone_Internal/IJE.git .')
17
+ unless system('git clone git@gitlab.nixdev.co:NIX_iPhone_Internal/IJE.git .')
18
+ if system('git clone git@gitlab.nixdev.co:NIX_iPhone_Internal/IJE.git .')
19
19
  `git remote set-url origin git@gitlab.nixdev.co.write:NIX_iPhone_Internal/IJE.git`
20
20
  end
21
21
  end
@@ -27,7 +27,7 @@ module GitHelper
27
27
 
28
28
  Dir.chdir(path_to_provisioning_updater) do
29
29
  unless system('git clone git@gitlab.nixdev.co:NIX_iPhone_Internal/NPU.git .')
30
- if system('git clone https://gitlab.nixdev.co/NIX_iPhone_Internal/NPU.git .')
30
+ if system('git clone git@gitlab.nixdev.co:NIX_iPhone_Internal/NPU.git .')
31
31
  `git remote set-url origin git@gitlab.nixdev.co:NIX_iPhone_Internal/NPU.git`
32
32
  end
33
33
  end
@@ -1,3 +1,3 @@
1
1
  module Nixenvironment
2
- VERSION = '0.0.148'
2
+ VERSION = '0.0.150'
3
3
  end
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
  spec.add_dependency 'xcodeproj'
32
32
  spec.add_dependency 'commander'
33
33
  spec.add_dependency 'fuzzy_match'
34
- spec.add_dependency 'fastlane_core'
34
+ spec.add_dependency 'fastlane_core', '~> 1.0.0'
35
35
  spec.add_dependency 'slather', '~> 2.4.2'
36
36
 
37
37
  # Development only
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nixenvironment
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.148
4
+ version: 0.0.150
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karen
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-02-14 00:00:00.000000000 Z
12
+ date: 2019-03-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cocoapods
@@ -183,16 +183,16 @@ dependencies:
183
183
  name: fastlane_core
184
184
  requirement: !ruby/object:Gem::Requirement
185
185
  requirements:
186
- - - ">="
186
+ - - "~>"
187
187
  - !ruby/object:Gem::Version
188
- version: '0'
188
+ version: 1.0.0
189
189
  type: :runtime
190
190
  prerelease: false
191
191
  version_requirements: !ruby/object:Gem::Requirement
192
192
  requirements:
193
- - - ">="
193
+ - - "~>"
194
194
  - !ruby/object:Gem::Version
195
- version: '0'
195
+ version: 1.0.0
196
196
  - !ruby/object:Gem::Dependency
197
197
  name: slather
198
198
  requirement: !ruby/object:Gem::Requirement