nixenvironment 0.0.125 → 0.0.127

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: 6c61f405fc82491fdca4a95dba2e58e4513dc6bf
4
- data.tar.gz: ba7714d6220778c988bcb460b6f55ec825205477
3
+ metadata.gz: c29924ea82a75b6fbbc3b53464c83540949f57b1
4
+ data.tar.gz: 21d00b89258e1ab131241099ad635df54e7fe34b
5
5
  SHA512:
6
- metadata.gz: 43504764a7f9ae196771b7277a3327ac885058e654fbd38bf94e1c4238de9abd1309750a295f458e1f7b8a0c44fa578ec11241fd97f197bb037fd33da8374231
7
- data.tar.gz: 31253ad8f3d7c55e781ede832ebe98bf48e682b0b01318889297cf732e3a273f2e685f3640143a9ea7daddfde770792ff2b82ec0fd1df67efa546d4e4e5495da
6
+ metadata.gz: cc02430d8f9966c2a8eed56137583049501e88c3ac18447d06e93e9a960153792ae829512dde8c1b4c54ec2ac64f9237107f116409906ed923bc877e1b527e96
7
+ data.tar.gz: 8b4788481b1eaa572e627f53f63a61f11e73fd62b4c81d8f7b027740b05d9081c7ce671c4fceb3caca988ad5689db18d181ad862627eae209eae67e523eba783
data/bin/Config CHANGED
@@ -1,19 +1,18 @@
1
1
  ---
2
2
  # set these vars if you have multiple projects in the root directory:
3
- PROJECT_TO_BUILD:
3
+ PROJECT_TO_BUILD: NIXProject.xcodeproj
4
4
  PROJECT_TARGET_TO_BUILD:
5
5
  PROJECT_TARGET_TO_TEST:
6
6
 
7
7
  # OR set these vars if you want to build the workspace instead of the project:
8
8
  WORKSPACE_TO_BUILD: NIXProject.xcworkspace
9
9
  WORKSPACE_SCHEME_TO_BUILD: Application
10
- WORKSPACE_SCHEME_TO_TEST: Tests
10
+ WORKSPACE_SCHEME_TO_TEST: Application
11
11
 
12
12
  # for osx projects sdk should be macosx (or more specific, f. e.: macosx10.10)
13
13
  SDK: iphoneos
14
14
  SDK_FOR_TESTS: iphonesimulator
15
15
 
16
- EXCLUDE_PATTERN_FOR_CODE_COVERAGE: ".*/Vendor/.*|.*/Tests/.*"
17
16
  EXCLUDE_PATTERN_FOR_CODE_DUPLICATION: "**/Vendor|**/Scripts|**/Pods"
18
17
 
19
18
  # you shouldn't touch these variables, because they will be defined on the CI server:
@@ -31,6 +30,7 @@ XCTEST_DESTINATION_DEVICE: platform=iOS Simulator,name=iPhone 5,OS=latest
31
30
  # configuration of code coverage
32
31
  CONFIGURATION_FILES_PATH: ./Scripts/ConfigurationFiles
33
32
  CODE_COVERAGE_CONFIGURATION: /CodeCoverage/CodeCoverageConfiguration.xcconfig
33
+ CODE_COVERAGE_IGNORE_FILE: /CodeCoverage/ignore
34
34
  CODE_COVERAGE_OUTPUT_DIRECTORY: ./Coverage/
35
35
 
36
36
  ENV_VAR_PREFIX: NIXENV_
data/bin/nixenvironment CHANGED
@@ -30,7 +30,6 @@ global_option ('--workspace_scheme_to_build VALUE') { |value
30
30
  global_option ('--workspace_scheme_to_test VALUE') { |value| $workspace_scheme_to_test = value }
31
31
  global_option ('--sdk VALUE') { |value| $sdk = value }
32
32
  global_option ('--sdk_for_tests VALUE') { |value| $sdk_for_tests = value }
33
- global_option ('--exclude_pattern_for_code_coverage VALUE') { |value| $exclude_pattern_for_code_coverage = value }
34
33
  global_option ('--exclude_pattern_for_code_duplication VALUE') { |value| $exclude_pattern_for_code_duplication = value }
35
34
  global_option ('--deploy_host VALUE') { |value| $deploy_host = value }
36
35
  global_option ('--deploy_path VALUE') { |value| $deploy_path = value }
@@ -42,6 +41,7 @@ global_option ('--icons_path VALUE') { |value
42
41
  global_option ('--xctest_destination_device VALUE') { |value| $xctest_destination_device = value }
43
42
  global_option (['-cfp', '--configuration_files_path VALUE']) { |value| $configuration_files_path = value }
44
43
  global_option ('--code_coverage_configuration VALUE') { |value| $code_coverage_configuration = value }
44
+ global_option ('--code_coverage_ignore_file VALUE') { |value| $code_coverage_ignore_file = value }
45
45
  global_option ('--code_coverage_output_directory VALUE') { |value| $code_coverage_output_directory = value }
46
46
  global_option ('--env_var_prefix VALUE') { |value| $env_var_prefix = value }
47
47
  global_option ('--bundle_id VALUE') { |value| $bundle_id = value }
@@ -438,7 +438,6 @@ def read_config_settings
438
438
  update_config_settings(WORKSPACE_SCHEME_TO_TEST_KEY, $workspace_scheme_to_test, table, true)
439
439
  update_config_settings(SDK_KEY, $sdk, table, true)
440
440
  update_config_settings(SDK_FOR_TESTS_KEY, $sdk_for_tests, table, true)
441
- update_config_settings(EXCLUDE_PATTERN_FOR_CODE_COVERAGE_KEY, $exclude_pattern_for_code_coverage, table, true)
442
441
  update_config_settings(EXCLUDE_PATTERN_FOR_CODE_DUPLICATION_KEY, $exclude_pattern_for_code_duplication, table, true)
443
442
  update_config_settings(DEPLOY_HOST_KEY, $deploy_host, table, true)
444
443
  update_config_settings(DEPLOY_PATH_KEY, $deploy_path, table, true)
@@ -450,6 +449,7 @@ def read_config_settings
450
449
  update_config_settings(XCTEST_DESTINATION_DEVICE_KEY, $xctest_destination_device, table, true)
451
450
  update_config_settings(CONFIGURATION_FILES_PATH_KEY, $configuration_files_path, table, true)
452
451
  update_config_settings(CODE_COVERAGE_CONFIGURATION_KEY, $code_coverage_configuration, table, true)
452
+ update_config_settings(CODE_COVERAGE_IGNORE_FILE_KEY, $code_coverage_ignore_file, table, true)
453
453
  update_config_settings(CODE_COVERAGE_OUTPUT_DIRECTORY_KEY, $code_coverage_output_directory, table, true)
454
454
  update_config_settings(ENV_VAR_PREFIX_KEY, $env_var_prefix, table, true)
455
455
  update_config_settings(BUNDLE_ID_KEY, $bundle_id, table, true)
@@ -760,19 +760,13 @@ def test
760
760
  end
761
761
 
762
762
  def code_coverage
763
- code_coverage_config = File.join(@config_settings[CONFIGURATION_FILES_PATH_KEY], @config_settings[CODE_COVERAGE_CONFIGURATION_KEY])
763
+ code_coverage_ignore_file = File.join(@config_settings[CONFIGURATION_FILES_PATH_KEY], @config_settings[CODE_COVERAGE_IGNORE_FILE_KEY])
764
+ code_coverage_ignore_lines = File.readlines(code_coverage_ignore_file)
765
+
766
+ Slather.coverage(@config_settings[WORKSPACE_TO_BUILD_KEY], @config_settings[WORKSPACE_SCHEME_TO_TEST_KEY], "Debug",
767
+ @config_settings[CODE_COVERAGE_OUTPUT_DIRECTORY_KEY], code_coverage_ignore_lines, @config_settings[PROJECT_TO_BUILD_KEY])
764
768
 
765
- # TODO: move to Xcodebuild class
766
- report_success = system("#{CODE_COVERAGE_REPORT_SCRIPT_PATH} -workspace \"#{@config_settings[WORKSPACE_TO_BUILD_KEY]}\"\
767
- -scheme \"#{@config_settings[WORKSPACE_SCHEME_TO_TEST_KEY]}\"\
768
- -configuration \"Debug\"\
769
- -sdk \"#{@config_settings[SDK_FOR_TESTS_KEY]}\"\
770
- -xcconfig \"#{code_coverage_config}\"\
771
- -exclude \"#{@config_settings[EXCLUDE_PATTERN_FOR_CODE_COVERAGE_KEY]}\"\
772
- -output \"#{@config_settings[CODE_COVERAGE_OUTPUT_DIRECTORY_KEY]}\"\
773
- -destination-timeout \"#{TESTS_AND_COVERAGE_TIMEOUT}\"\
774
- -destination \"#{@config_settings[XCTEST_DESTINATION_DEVICE_KEY]}\"")
775
- error('Code coverage error!') unless report_success
769
+ error('Code coverage error!') unless Slather.last_cmd_success?
776
770
  end
777
771
 
778
772
  def code_duplication_report
@@ -13,7 +13,6 @@ module Nixenvironment
13
13
  # ninbas legacy
14
14
  BUILD_SCRIPTS_PATH = File.expand_path('../../../legacy', __FILE__)
15
15
  UNITY_BUILD_ANDROID_SCRIPT_PATH = File.join(BUILD_SCRIPTS_PATH, 'UnityBuildAndroid.py')
16
- CODE_COVERAGE_REPORT_SCRIPT_PATH = File.join(BUILD_SCRIPTS_PATH, 'GenerateCodeCoverageForXCTests.sh')
17
16
  CODE_DUPLICATION_REPORT_SCRIPT_PATH = File.join(BUILD_SCRIPTS_PATH, 'GenerateCodeDuplicationReport.sh')
18
17
  DEPLOY_SCRIPT_PATH = File.join(BUILD_SCRIPTS_PATH, 'Deploy.sh')
19
18
  DEPLOY_APK_SCRIPT_PATH = File.join(BUILD_SCRIPTS_PATH, 'DeployAPK.py')
@@ -102,7 +101,6 @@ module Nixenvironment
102
101
  SDK_KEY = 'SDK'
103
102
  SDK_FOR_TESTS_KEY = 'SDK_FOR_TESTS'
104
103
 
105
- EXCLUDE_PATTERN_FOR_CODE_COVERAGE_KEY = 'EXCLUDE_PATTERN_FOR_CODE_COVERAGE'
106
104
  EXCLUDE_PATTERN_FOR_CODE_DUPLICATION_KEY = 'EXCLUDE_PATTERN_FOR_CODE_DUPLICATION'
107
105
 
108
106
  DEPLOY_HOST_KEY = 'DEPLOY_HOST'
@@ -117,6 +115,7 @@ module Nixenvironment
117
115
  CONFIGURATION_FILES_PATH_KEY = 'CONFIGURATION_FILES_PATH'
118
116
 
119
117
  CODE_COVERAGE_CONFIGURATION_KEY = 'CODE_COVERAGE_CONFIGURATION'
118
+ CODE_COVERAGE_IGNORE_FILE_KEY = 'CODE_COVERAGE_IGNORE_FILE'
120
119
  CODE_COVERAGE_OUTPUT_DIRECTORY_KEY = 'CODE_COVERAGE_OUTPUT_DIRECTORY'
121
120
 
122
121
  ENV_VAR_PREFIX_KEY = 'ENV_VAR_PREFIX'
@@ -0,0 +1,29 @@
1
+
2
+ require_relative 'cmd_executor'
3
+
4
+ module Nixenvironment
5
+ class Slather < CmdExecutor
6
+ @binary_name = 'slather'
7
+
8
+ @config_settings = {}
9
+ @info = {}
10
+
11
+ def self.coverage(workspace = nil, scheme = nil, config = nil, destination = nil, ignore_paths = nil, project = nil)
12
+ build_args = []
13
+ build_args << "--workspace '#{workspace}'" if workspace.present?
14
+ build_args << "--scheme '#{scheme}'" if scheme.present?
15
+ build_args << "--configuration '#{config}'" if config.present?
16
+ build_args << "--output-directory '#{destination}'" if destination.present?
17
+
18
+ ignore_paths.each { |path|
19
+ build_args << "--ignore \"#{path.rstrip}\"" # path contains \n at the end, we need to get rid of it
20
+ }
21
+
22
+ build_args << "--cobertura-xml"
23
+ build_args << "--jenkins"
24
+ build_args << "'#{project}'"
25
+
26
+ execute('coverage', build_args)
27
+ end
28
+ end
29
+ end
@@ -1,3 +1,3 @@
1
1
  module Nixenvironment
2
- VERSION = '0.0.125'
2
+ VERSION = '0.0.127'
3
3
  end
@@ -32,16 +32,17 @@ module Nixenvironment
32
32
  build_args << "-configuration '#{config}'" if config.present?
33
33
  build_args << "-xcconfig '#{xcconfig}'" if xcconfig.present?
34
34
 
35
- if project.present?
36
- build_args << "-project '#{project}'"
37
- elsif workspace.present?
35
+ if workspace.present?
38
36
  build_args << "-workspace '#{workspace}'"
37
+ elsif project.present?
38
+ build_args << "-project '#{project}'"
39
39
  end
40
+ # TODO: if not workspace or project present, search automatically. Probably not in this class
40
41
 
41
- if target.present?
42
- build_args << "-target '#{target}'"
43
- elsif scheme.present?
42
+ if scheme.present?
44
43
  build_args << "-scheme '#{scheme}'"
44
+ elsif target.present?
45
+ build_args << "-target '#{target}'"
45
46
  end
46
47
 
47
48
  if env_var_prefix.present?
@@ -72,7 +73,7 @@ module Nixenvironment
72
73
  build_args << "-xcconfig '#{code_coverage_config}'" if code_coverage_config.present?
73
74
  build_args << "-destination-timeout '#{timeout}'" if timeout.present?
74
75
  build_args << "-destination '#{destination}'" if destination.present?
75
- build_args << "| ocunit2junit"
76
+ build_args << "| ocunit2junit" # generates test result xmls
76
77
 
77
78
  execute('test', build_args)
78
79
  end
@@ -90,16 +91,17 @@ module Nixenvironment
90
91
  build_args << "-configuration '#{config}'" if config.present?
91
92
  build_args << "-xcconfig '#{xcconfig}'" if xcconfig.present?
92
93
 
93
- if project.present?
94
- build_args << "-project '#{project}'"
95
- elsif workspace.present?
94
+ if workspace.present?
96
95
  build_args << "-workspace '#{workspace}'"
96
+ elsif project.present?
97
+ build_args << "-project '#{project}'"
97
98
  end
99
+ # TODO: if not workspace or project present, search automatically. Probably not in this class
98
100
 
99
- if target.present?
100
- build_args << "-target '#{target}'"
101
- elsif scheme.present?
101
+ if scheme.present?
102
102
  build_args << "-scheme '#{scheme}'"
103
+ elsif target.present?
104
+ build_args << "-target '#{target}'"
103
105
  end
104
106
 
105
107
  build_args << 'clean'
@@ -2,6 +2,7 @@ require 'nixenvironment/version'
2
2
  require 'nixenvironment/config'
3
3
  require 'nixenvironment/git'
4
4
  require 'nixenvironment/xcodebuild'
5
+ require 'nixenvironment/slather'
5
6
  require 'nixenvironment/archiver'
6
7
  require 'nixenvironment/build_env_vars_loader'
7
8
  require 'nixenvironment/plist'
@@ -32,6 +32,7 @@ Gem::Specification.new do |spec|
32
32
  spec.add_dependency 'commander'
33
33
  spec.add_dependency 'fuzzy_match'
34
34
  spec.add_dependency 'fastlane_core'
35
+ spec.add_dependency 'slather', '~> 2.4.2'
35
36
 
36
37
  # Development only
37
38
  spec.add_development_dependency 'bundler'
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.125
4
+ version: 0.0.127
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karen
@@ -9,230 +9,244 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-07-11 00:00:00.000000000 Z
12
+ date: 2017-07-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cocoapods
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - '>='
18
+ - - ">="
19
19
  - !ruby/object:Gem::Version
20
20
  version: '0'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - '>='
25
+ - - ">="
26
26
  - !ruby/object:Gem::Version
27
27
  version: '0'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: xcpretty
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - '>='
32
+ - - ">="
33
33
  - !ruby/object:Gem::Version
34
34
  version: '0'
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - '>='
39
+ - - ">="
40
40
  - !ruby/object:Gem::Version
41
41
  version: '0'
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: ocunit2junit
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - '>='
46
+ - - ">="
47
47
  - !ruby/object:Gem::Version
48
48
  version: '0'
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - '>='
53
+ - - ">="
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: terminal-table
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - '>='
60
+ - - ">="
61
61
  - !ruby/object:Gem::Version
62
62
  version: '0'
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - '>='
67
+ - - ">="
68
68
  - !ruby/object:Gem::Version
69
69
  version: '0'
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: colored
72
72
  requirement: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - '>='
74
+ - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  type: :runtime
78
78
  prerelease: false
79
79
  version_requirements: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - '>='
81
+ - - ">="
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  - !ruby/object:Gem::Dependency
85
85
  name: pilot
86
86
  requirement: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - '>='
88
+ - - ">="
89
89
  - !ruby/object:Gem::Version
90
90
  version: '0'
91
91
  type: :runtime
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - '>='
95
+ - - ">="
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: nokogiri
100
100
  requirement: !ruby/object:Gem::Requirement
101
101
  requirements:
102
- - - '>='
102
+ - - ">="
103
103
  - !ruby/object:Gem::Version
104
104
  version: '0'
105
105
  type: :runtime
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
- - - '>='
109
+ - - ">="
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
112
  - !ruby/object:Gem::Dependency
113
113
  name: net-scp
114
114
  requirement: !ruby/object:Gem::Requirement
115
115
  requirements:
116
- - - '>='
116
+ - - ">="
117
117
  - !ruby/object:Gem::Version
118
118
  version: '0'
119
119
  type: :runtime
120
120
  prerelease: false
121
121
  version_requirements: !ruby/object:Gem::Requirement
122
122
  requirements:
123
- - - '>='
123
+ - - ">="
124
124
  - !ruby/object:Gem::Version
125
125
  version: '0'
126
126
  - !ruby/object:Gem::Dependency
127
127
  name: activesupport
128
128
  requirement: !ruby/object:Gem::Requirement
129
129
  requirements:
130
- - - '>='
130
+ - - ">="
131
131
  - !ruby/object:Gem::Version
132
132
  version: '0'
133
133
  type: :runtime
134
134
  prerelease: false
135
135
  version_requirements: !ruby/object:Gem::Requirement
136
136
  requirements:
137
- - - '>='
137
+ - - ">="
138
138
  - !ruby/object:Gem::Version
139
139
  version: '0'
140
140
  - !ruby/object:Gem::Dependency
141
141
  name: xcodeproj
142
142
  requirement: !ruby/object:Gem::Requirement
143
143
  requirements:
144
- - - '>='
144
+ - - ">="
145
145
  - !ruby/object:Gem::Version
146
146
  version: '0'
147
147
  type: :runtime
148
148
  prerelease: false
149
149
  version_requirements: !ruby/object:Gem::Requirement
150
150
  requirements:
151
- - - '>='
151
+ - - ">="
152
152
  - !ruby/object:Gem::Version
153
153
  version: '0'
154
154
  - !ruby/object:Gem::Dependency
155
155
  name: commander
156
156
  requirement: !ruby/object:Gem::Requirement
157
157
  requirements:
158
- - - '>='
158
+ - - ">="
159
159
  - !ruby/object:Gem::Version
160
160
  version: '0'
161
161
  type: :runtime
162
162
  prerelease: false
163
163
  version_requirements: !ruby/object:Gem::Requirement
164
164
  requirements:
165
- - - '>='
165
+ - - ">="
166
166
  - !ruby/object:Gem::Version
167
167
  version: '0'
168
168
  - !ruby/object:Gem::Dependency
169
169
  name: fuzzy_match
170
170
  requirement: !ruby/object:Gem::Requirement
171
171
  requirements:
172
- - - '>='
172
+ - - ">="
173
173
  - !ruby/object:Gem::Version
174
174
  version: '0'
175
175
  type: :runtime
176
176
  prerelease: false
177
177
  version_requirements: !ruby/object:Gem::Requirement
178
178
  requirements:
179
- - - '>='
179
+ - - ">="
180
180
  - !ruby/object:Gem::Version
181
181
  version: '0'
182
182
  - !ruby/object:Gem::Dependency
183
183
  name: fastlane_core
184
184
  requirement: !ruby/object:Gem::Requirement
185
185
  requirements:
186
- - - '>='
186
+ - - ">="
187
187
  - !ruby/object:Gem::Version
188
188
  version: '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
195
  version: '0'
196
+ - !ruby/object:Gem::Dependency
197
+ name: slather
198
+ requirement: !ruby/object:Gem::Requirement
199
+ requirements:
200
+ - - "~>"
201
+ - !ruby/object:Gem::Version
202
+ version: 2.4.2
203
+ type: :runtime
204
+ prerelease: false
205
+ version_requirements: !ruby/object:Gem::Requirement
206
+ requirements:
207
+ - - "~>"
208
+ - !ruby/object:Gem::Version
209
+ version: 2.4.2
196
210
  - !ruby/object:Gem::Dependency
197
211
  name: bundler
198
212
  requirement: !ruby/object:Gem::Requirement
199
213
  requirements:
200
- - - '>='
214
+ - - ">="
201
215
  - !ruby/object:Gem::Version
202
216
  version: '0'
203
217
  type: :development
204
218
  prerelease: false
205
219
  version_requirements: !ruby/object:Gem::Requirement
206
220
  requirements:
207
- - - '>='
221
+ - - ">="
208
222
  - !ruby/object:Gem::Version
209
223
  version: '0'
210
224
  - !ruby/object:Gem::Dependency
211
225
  name: rake
212
226
  requirement: !ruby/object:Gem::Requirement
213
227
  requirements:
214
- - - '>='
228
+ - - ">="
215
229
  - !ruby/object:Gem::Version
216
230
  version: '0'
217
231
  type: :development
218
232
  prerelease: false
219
233
  version_requirements: !ruby/object:Gem::Requirement
220
234
  requirements:
221
- - - '>='
235
+ - - ">="
222
236
  - !ruby/object:Gem::Version
223
237
  version: '0'
224
238
  - !ruby/object:Gem::Dependency
225
239
  name: rspec
226
240
  requirement: !ruby/object:Gem::Requirement
227
241
  requirements:
228
- - - '>='
242
+ - - ">="
229
243
  - !ruby/object:Gem::Version
230
244
  version: '0'
231
245
  type: :development
232
246
  prerelease: false
233
247
  version_requirements: !ruby/object:Gem::Requirement
234
248
  requirements:
235
- - - '>='
249
+ - - ">="
236
250
  - !ruby/object:Gem::Version
237
251
  version: '0'
238
252
  description: Installs, updates and manages inner environment stuff to make build and
@@ -245,7 +259,7 @@ executables:
245
259
  extensions: []
246
260
  extra_rdoc_files: []
247
261
  files:
248
- - .gitignore
262
+ - ".gitignore"
249
263
  - Gemfile
250
264
  - LICENSE.txt
251
265
  - README.md
@@ -255,7 +269,6 @@ files:
255
269
  - gemify.sh
256
270
  - legacy/Deploy.sh
257
271
  - legacy/DeployAPK.py
258
- - legacy/GenerateCodeCoverageForXCTests.sh
259
272
  - legacy/GenerateCodeDuplicationReport.sh
260
273
  - legacy/UnityBuildAndroid.py
261
274
  - legacy/UnityBuildAutomationScripts/CommandLineReader.cs
@@ -295,6 +308,7 @@ files:
295
308
  - lib/nixenvironment/jenkins/slave/slave_starter.rb
296
309
  - lib/nixenvironment/plist.rb
297
310
  - lib/nixenvironment/scm.rb
311
+ - lib/nixenvironment/slather.rb
298
312
  - lib/nixenvironment/version.rb
299
313
  - lib/nixenvironment/xcodebuild.rb
300
314
  - nixenvironment.gemspec
@@ -303,7 +317,6 @@ files:
303
317
  - utils/XcodeIconTagger/masks/OneLineMask.png
304
318
  - utils/XcodeIconTagger/masks/TwoLineMask.png
305
319
  - utils/aapt
306
- - utils/gcovr
307
320
  - utils/identitieslist
308
321
  - utils/simian-2.3.33.jar
309
322
  homepage: https://rubygems.org/gems/nixenvironment
@@ -316,17 +329,17 @@ require_paths:
316
329
  - lib
317
330
  required_ruby_version: !ruby/object:Gem::Requirement
318
331
  requirements:
319
- - - '>='
332
+ - - ">="
320
333
  - !ruby/object:Gem::Version
321
334
  version: 2.0.0
322
335
  required_rubygems_version: !ruby/object:Gem::Requirement
323
336
  requirements:
324
- - - '>='
337
+ - - ">="
325
338
  - !ruby/object:Gem::Version
326
339
  version: '0'
327
340
  requirements: []
328
341
  rubyforge_project:
329
- rubygems_version: 2.4.8
342
+ rubygems_version: 2.4.5.1
330
343
  signing_key:
331
344
  specification_version: 4
332
345
  summary: NIX projects build and deploy utility