dev 2.1.18 → 2.1.19

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: 43b990113b4bd694e6910a09d0ae8ecb0b67236a
4
- data.tar.gz: 918cec08be71a1b7b5c5ae3bc41edf7a750b66f2
3
+ metadata.gz: c1414b70e024460b01dfc3fa87ec7862740f52e2
4
+ data.tar.gz: af36e657352429c7d2ff0660ce03894ceb2210f5
5
5
  SHA512:
6
- metadata.gz: ef4e0ba85a238b3dfa6ca1ce5adf5b93cd00a6714a382aa7f352f7fd44ebdeb291e15fa9a289ff0019f7db46b79aafc03007e3a95619a66491a3e9f8a7ff697d
7
- data.tar.gz: fe28097a5f5b55fa587af2b33ee933e7a4c6212a1092e1ca0a06eb6128a8ed0e49e6496120d7873d623ea7383b91f1f751775631651ded920b7c9b1f7753a34c
6
+ metadata.gz: 3dc4fd1815ffd18d877de4fb5a848607eb4efbcd9b64f99c2dc3e7220f27ad2b8879bbef0aeb9e318a84ddece556e43175e55797f203de3d2e9fee3d3435b9a5
7
+ data.tar.gz: 0676329522f5a6ce2ab63930c7308ccd77f6298d5126a6584d9d58f97f3c326b5c6d3b6efd4f377097a65a18a5f09941f65b4309881fd0df0f9df37198b176c7
data/lib/base/source.rb CHANGED
@@ -13,7 +13,7 @@ SOURCE.include('**/*.{saproj}')
13
13
  SOURCE.include('**/*.{jpeg,jpg,png,bmp}')
14
14
  SOURCE.include('**/*.{html,htm}')
15
15
  SOURCE.include('**/*.{txt}')
16
- SOURCE.include('**/*.{wxs}')
16
+ SOURCE.include('**/*.{wxs,_wxs}')
17
17
  SOURCE.exclude('bin','obj','lib')
18
18
  SOURCE.exclude('**/obj/**/*.*')
19
19
  SOURCE.exclude('**/bin/**/*.*')
data/lib/tasks/build.rb CHANGED
@@ -13,6 +13,7 @@ SMARTASSEMBLY_FILES=FileList.new('**/*.saproj')
13
13
  class Build < Array
14
14
  def update
15
15
  update_gemspec
16
+ update_dotnet
16
17
  update_sln if Environment.windows?
17
18
  update_smartassembly if Environment.windows?
18
19
  update_nuget if Environment.windows?
@@ -27,6 +28,13 @@ class Build < Array
27
28
  }
28
29
  end
29
30
 
31
+ def update_dotnet
32
+ puts "Build scanning for project.json" if Environment.default.debug?
33
+ if(File.exists?('project.json'))
34
+ add_quiet "dotnet build"
35
+ end
36
+ end
37
+
30
38
  def update_sln
31
39
  puts "Build scanning for sln files" if Environment.default.debug?
32
40
  SLN_FILES.each{|sln_file|
data/lib/tasks/setup.rb CHANGED
@@ -34,6 +34,10 @@ class Setup < Array
34
34
  }
35
35
  end
36
36
 
37
+ if(File.exists?('project.json'))
38
+ add_quiet "dotnet restore"
39
+ end
40
+
37
41
  puts 'Setup checking SVN_EXPORTS...' if env.debug?
38
42
  if(defined?(SVN_EXPORTS))
39
43
  SVN_EXPORTS.each{|k,v|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.18
4
+ version: 2.1.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-05 00:00:00.000000000 Z
11
+ date: 2016-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake