cross_platform_csproj 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/cross_platform_csproj.rb +19 -0
  3. metadata +6 -8
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4b34527457f9972b0815e9c37c472217a74ba733
4
+ data.tar.gz: df68858b3b6493ce90608eb88b860d981246f811
5
+ SHA512:
6
+ metadata.gz: 981736657b2435b7228b50ba7d558c9085d77a717e614300360b6149868ed27bf30707fa2fb4dc22e459d3dc49ecf26c18dcccf8d24bc128ed968d6f086568e9
7
+ data.tar.gz: d4dc113a53954c2a4ed7fba3f918a4ea2d79ade5c1ab8117a48095e296a0ddb5e6f04e56b49280b797edf5ba73418f5fb23b2822064e10ca47cb18af321e557e
@@ -177,4 +177,23 @@ class CrossPlatformCSProj
177
177
  return fileList;
178
178
  end
179
179
 
180
+ def self.getVoidFiles(path = '.')
181
+ fileList = getCoreFiles(path);
182
+
183
+ fileList.exclude("#{path}/**/Android/**/*.cs")
184
+ fileList.exclude("#{path}/**/iOS/**/*.cs")
185
+ fileList.exclude("#{path}/**/IOS/**/*.cs")
186
+ fileList.exclude("#{path}/**/Windows/**/*.cs")
187
+
188
+ fileList.exclude("#{path}/**/*.Android.cs")
189
+ fileList.exclude("#{path}/**/*.iOS.cs")
190
+ fileList.exclude("#{path}/**/*.IOS.cs")
191
+ fileList.exclude("#{path}/**/*.Windows.cs")
192
+
193
+ fileList.exclude("#{path}/**/Resource.Designer.cs")
194
+ fileList.exclude("#{path}/**/Resource.designer.cs")
195
+
196
+ return fileList;
197
+ end
198
+
180
199
  end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cross_platform_csproj
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
5
- prerelease:
4
+ version: 0.1.4
6
5
  platform: ruby
7
6
  authors:
8
7
  - Tyler Hamilton, Mark Wong
@@ -26,26 +25,25 @@ files:
26
25
  - LICENSE.txt
27
26
  homepage: http://github.com/markslwong/CrossPlatformCSProj
28
27
  licenses: []
28
+ metadata: {}
29
29
  post_install_message:
30
30
  rdoc_options: []
31
31
  require_paths:
32
32
  - lib
33
33
  required_ruby_version: !ruby/object:Gem::Requirement
34
- none: false
35
34
  requirements:
36
- - - ! '>='
35
+ - - ">="
37
36
  - !ruby/object:Gem::Version
38
37
  version: '0'
39
38
  required_rubygems_version: !ruby/object:Gem::Requirement
40
- none: false
41
39
  requirements:
42
- - - ! '>='
40
+ - - ">="
43
41
  - !ruby/object:Gem::Version
44
42
  version: '0'
45
43
  requirements: []
46
44
  rubyforge_project:
47
- rubygems_version: 1.8.25
45
+ rubygems_version: 2.0.3
48
46
  signing_key:
49
- specification_version: 3
47
+ specification_version: 4
50
48
  summary: Tools for creating cross platform CSharp projects.
51
49
  test_files: []