qb 0.1.58 → 0.1.59

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
  SHA1:
3
- metadata.gz: 606592a4cf57d632a7086ad866d08a88865d5441
4
- data.tar.gz: 9789b4044a5900679b5e3a7390dcaaaf86aecc57
3
+ metadata.gz: 525b8fc6f33af17395fee3864440f87e84d1a304
4
+ data.tar.gz: 75799c477c38aa0f829f5a2959f861f69ace5f29
5
5
  SHA512:
6
- metadata.gz: 8f20a7599a35d0329f68dc348396f0dbf9f0b6c0ef7a5613b74c61c1b2792453ad0fa09443ae453a803241f55d675aa79e323464891c9d90757a92ab5a0989f0
7
- data.tar.gz: 84a12c5d0cacc04d9e1edecd6f2c6735c8fa75dec671941a11fb32e09867661d0f987b6969f1075600b97d2448b5e17433c8f7e9342124b9bfa5855681e1e183
6
+ metadata.gz: ba313fc1a24ef0492e8e99819bf0cc99e622a6986e919e84254d1eea9186787f9b2572775d6c27711fee82b806e5a6ab85de7bf4bd08548c02bc4e12eb77a73e
7
+ data.tar.gz: d031167eff96da58faeac5ab03ac30897e0718d2b9acf43b2caf4d873dbde7076846a271b0968fa8f928efc8f850d6045f3a65b882782f8743e0cb6be931e7d3
@@ -1,7 +1,7 @@
1
1
  module QB
2
2
  GEM_NAME = 'qb'
3
3
 
4
- VERSION = "0.1.58"
4
+ VERSION = "0.1.59"
5
5
 
6
6
  def self.gemspec
7
7
  Gem.loaded_specs[GEM_NAME]
@@ -3,10 +3,10 @@
3
3
 
4
4
  dependencies:
5
5
  - role: qb.gitignore
6
- gitignore_name: Global/OSX
6
+ gitignore_name: Global/macOS
7
7
  gitignore_dest: "{{ git_repo_dest }}"
8
8
  when: ansible_distribution == "MacOSX"
9
9
 
10
10
  - role: qb.gitignore
11
- gitignore_name: Qb
11
+ gitignore_name: QB
12
12
  gitignore_dest: "{{ git_repo_dest }}"
@@ -5,6 +5,7 @@
5
5
  *.rar
6
6
  *.zip
7
7
  *.gz
8
+ *.tgz
8
9
  *.bzip
9
10
  *.bz2
10
11
  *.xz
@@ -19,6 +19,9 @@
19
19
  .idea/**/gradle.xml
20
20
  .idea/**/libraries
21
21
 
22
+ # CMake
23
+ cmake-build-debug/
24
+
22
25
  # Mongo Explorer plugin:
23
26
  .idea/**/mongoSettings.xml
24
27
 
@@ -13,4 +13,4 @@
13
13
  ~$*.ppt*
14
14
 
15
15
  # Visio autosave temporary files
16
- *.~vsdx
16
+ *.~vsd*
@@ -3,14 +3,41 @@
3
3
  #--------------------------#
4
4
 
5
5
  /app/etc/local.xml
6
+
6
7
  /media/*
7
8
  !/media/.htaccess
9
+
10
+ !/media/customer
11
+ /media/customer/*
8
12
  !/media/customer/.htaccess
13
+
14
+ !/media/dhl
15
+ /media/dhl/*
9
16
  !/media/dhl/logo.jpg
17
+
18
+ !/media/downloadable
19
+ /media/downloadable/*
10
20
  !/media/downloadable/.htaccess
21
+
22
+ !/media/xmlconnect
23
+ /media/xmlconnect/*
24
+
25
+ !/media/xmlconnect/custom
26
+ /media/xmlconnect/custom/*
11
27
  !/media/xmlconnect/custom/ok.gif
28
+
29
+ !/media/xmlconnect/original
30
+ /media/xmlconnect/original/*
12
31
  !/media/xmlconnect/original/ok.gif
32
+
33
+ !/media/xmlconnect/system
34
+ /media/xmlconnect/system/*
13
35
  !/media/xmlconnect/system/ok.gif
36
+
14
37
  /var/*
15
38
  !/var/.htaccess
39
+
40
+ !/var/package
41
+ /var/package/*
16
42
  !/var/package/*.xml
43
+
@@ -89,6 +89,7 @@ ENV/
89
89
 
90
90
  # Spyder project settings
91
91
  .spyderproject
92
+ .spyproject
92
93
 
93
94
  # Rope project settings
94
95
  .ropeproject
@@ -20,6 +20,7 @@
20
20
  *.qbs.user.*
21
21
  *.moc
22
22
  moc_*.cpp
23
+ moc_*.h
23
24
  qrc_*.cpp
24
25
  ui_*.h
25
26
  Makefile*
@@ -54,6 +54,11 @@ Binaries/*
54
54
  # Builds
55
55
  Build/*
56
56
 
57
+ # Whitelist PakBlacklist-<BuildConfiguration>.txt files
58
+ !Build/*/
59
+ Build/*/**
60
+ !Build/*/PakBlacklist*.txt
61
+
57
62
  # Don't ignore icon files in Build
58
63
  !Build/**/*.ico
59
64
 
@@ -49,12 +49,3 @@
49
49
  args:
50
50
  chdir: "{{ project_dest }}"
51
51
  when: project_hub
52
-
53
- # qb artifacts
54
- # ============
55
-
56
- - name: ignore .qb-playbook.yml
57
- lineinfile:
58
- line: .qb-playbook.yml
59
- dest: "{{ project_dest }}/.gitignore"
60
- when: project_tmp
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.58
4
+ version: 0.1.59
5
5
  platform: ruby
6
6
  authors:
7
7
  - nrser
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-04-18 00:00:00.000000000 Z
11
+ date: 2017-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -436,7 +436,6 @@ files:
436
436
  - roles/qb.gitignore/files/gitignore/Global/NetBeans.gitignore
437
437
  - roles/qb.gitignore/files/gitignore/Global/Ninja.gitignore
438
438
  - roles/qb.gitignore/files/gitignore/Global/NotepadPP.gitignore
439
- - roles/qb.gitignore/files/gitignore/Global/OSX.gitignore
440
439
  - roles/qb.gitignore/files/gitignore/Global/Otto.gitignore
441
440
  - roles/qb.gitignore/files/gitignore/Global/README.md
442
441
  - roles/qb.gitignore/files/gitignore/Global/Redcar.gitignore
@@ -501,7 +500,7 @@ files:
501
500
  - roles/qb.gitignore/files/gitignore/Processing.gitignore
502
501
  - roles/qb.gitignore/files/gitignore/PureScript.gitignore
503
502
  - roles/qb.gitignore/files/gitignore/Python.gitignore
504
- - roles/qb.gitignore/files/gitignore/Qb.gitignore
503
+ - roles/qb.gitignore/files/gitignore/QB.gitignore
505
504
  - roles/qb.gitignore/files/gitignore/Qooxdoo.gitignore
506
505
  - roles/qb.gitignore/files/gitignore/Qt.gitignore
507
506
  - roles/qb.gitignore/files/gitignore/R.gitignore
@@ -1 +0,0 @@
1
- roles/qb.gitignore/files/gitignore/Global/macOS.gitignore