sambot 0.1.87 → 0.1.88

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: 2aefa84930f284968607d02bf4cdb7a5e95da151
4
- data.tar.gz: fc8e561abd7b67e6585bda6dc9f87b5b08c58fb8
3
+ metadata.gz: c3ef0eb0b9deaaf2366330e7e22498d6c8b1e522
4
+ data.tar.gz: a0c208c91c5d1fa1420a32cbe9de75e8a0a68cb2
5
5
  SHA512:
6
- metadata.gz: c64b5eb72b76e322ae6b481890788d352bb53b6684f88d85ac3e0f26ce6c733e4683530dd3b531576c17a161fadc053219660d4db8fb038e34df30fe6d3693e5
7
- data.tar.gz: 8bb3c8561e572409e855b652e73ed11efb20d5937b8dc9562348a92819dd117ad8f23405f4a18b8587685f80c1dc8465dc1a8093014b37fe0f0da20da910118a
6
+ metadata.gz: e84b7f532874d5184ae01f81966d446487237bed1ac4788a8d8fd957ff702085a1970b4cc65e32572c182121f26b7017d6b5097a2c743d2e407d7c94b255d855
7
+ data.tar.gz: 32cbf37144a1f96f62f3a46e6ec53322690c15e70250e21381e92e017e761ee31974e30c04a017f218df4c5c8b3cced0dd18410700f9c1688bde6e39cd55804e
@@ -18,16 +18,16 @@ Berksfile.lock
18
18
  Gemfile.lock
19
19
  bin/*
20
20
  .bundle/*
21
- .kitchen/
22
- .kitchen.local.yml
21
+ ./.kitchen/
22
+ ./.kitchen.local.yml
23
23
  berks-cookbooks
24
- Berksfile
25
- teamcity.sh
26
- metadata.rb
27
- .kitchen.rackspace.yml
28
- .kitchen.gcp.yml
29
- .kitchen.yml
30
- .rubocop.yml
31
- chefignore
32
- teamcity.sh
33
- winrm_config
24
+ ./Berksfile
25
+ ./teamcity.sh
26
+ ./metadata.rb
27
+ ./.kitchen.rackspace.yml
28
+ ./.kitchen.gcp.yml
29
+ ./.kitchen.yml
30
+ ./.rubocop.yml
31
+ ./chefignore
32
+ ./teamcity.sh
33
+ ./winrm_config
@@ -0,0 +1,11 @@
1
+ Metrics/LineLength:
2
+ Max: 200
3
+
4
+ Style/MutableConstant:
5
+ Description: 'Do not assign mutable objects to constants.'
6
+ Enabled: true
7
+ Exclude:
8
+ - recipes/linux_chefdk_setup.rb
9
+
10
+ Style/EmptyLinesAroundBlockBody:
11
+ Enabled: false
@@ -0,0 +1,4 @@
1
+ source :chef_server
2
+ source 'https://supermarket.chef.io'
3
+
4
+ metadata
@@ -0,0 +1,112 @@
1
+ # Put files/directories that should be ignored in this file when uploading
2
+ # to a chef-server or supermarket.
3
+ # Lines that start with '# ' are comments.
4
+
5
+ # OS generated files #
6
+ ######################
7
+ .DS_Store
8
+ Icon?
9
+ nohup.out
10
+ ehthumbs.db
11
+ Thumbs.db
12
+
13
+ # SASS #
14
+ ########
15
+ .sass-cache
16
+
17
+ # EDITORS #
18
+ ###########
19
+ \#*
20
+ .#*
21
+ *~
22
+ *.sw[a-z]
23
+ *.bak
24
+ REVISION
25
+ TAGS*
26
+ tmtags
27
+ *_flymake.*
28
+ *_flymake
29
+ *.tmproj
30
+ .project
31
+ .settings
32
+ mkmf.log
33
+
34
+ ## COMPILED ##
35
+ ##############
36
+ a.out
37
+ *.o
38
+ *.pyc
39
+ *.so
40
+ *.com
41
+ *.class
42
+ *.dll
43
+ *.exe
44
+ */rdoc/
45
+
46
+ # Testing #
47
+ ###########
48
+ .watchr
49
+ .rspec
50
+ spec/*
51
+ spec/fixtures/*
52
+ test/*
53
+ features/*
54
+ examples/*
55
+ Guardfile
56
+ Procfile
57
+ .kitchen*
58
+ .rubocop.yml
59
+ specs/*
60
+ tests/*
61
+ Rakefile
62
+ .travis.yml
63
+ .foodcritic
64
+ .codeclimate.yml
65
+
66
+ # SCM #
67
+ #######
68
+ .git
69
+ */.git
70
+ .gitignore
71
+ .gitmodules
72
+ .gitconfig
73
+ .gitattributes
74
+ .svn
75
+ */.bzr/*
76
+ */.hg/*
77
+ */.svn/*
78
+
79
+ # Berkshelf #
80
+ #############
81
+ Berksfile
82
+ Berksfile.lock
83
+ cookbooks/*
84
+ tmp
85
+
86
+ # Cookbooks #
87
+ #############
88
+ CONTRIBUTING*
89
+ CHANGELOG*
90
+ TESTING*
91
+ MAINTAINERS.toml
92
+
93
+ # Strainer #
94
+ ############
95
+ Colanderfile
96
+ Strainerfile
97
+ .colander
98
+ .strainer
99
+
100
+ # Vagrant #
101
+ ###########
102
+ .vagrant
103
+ Vagrantfile
104
+
105
+ Makefile
106
+ packer_specs.json
107
+ knife.rb
108
+
109
+ teamcity.sh
110
+ id_rsa
111
+ id_rsa.pub
112
+ recipes/test_setup.rb
@@ -0,0 +1,5 @@
1
+ winrm quickconfig -q
2
+ winrm set winrm/config/winrs @{MaxMemoryPerShellMB="300"}
3
+ winrm set winrm/config @{MaxTimeoutms="1800000"}
4
+ winrm set winrm/config/service @{AllowUnencrypted="true"}
5
+ winrm set winrm/config/service/auth @{Basic="true"}
@@ -1,3 +1,3 @@
1
1
  module Sambot
2
- VERSION = '0.1.87'.freeze
2
+ VERSION = '0.1.88'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sambot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.87
4
+ version: 0.1.88
5
5
  platform: ruby
6
6
  authors:
7
7
  - Olivier Kouame
@@ -315,12 +315,16 @@ files:
315
315
  - lib/sambot/templates/.kitchen.gcp.yml.erb
316
316
  - lib/sambot/templates/.kitchen.rackspace.yml.erb
317
317
  - lib/sambot/templates/.kitchen.yml.erb
318
+ - lib/sambot/templates/.rubocop.yml
319
+ - lib/sambot/templates/Berksfile
320
+ - lib/sambot/templates/chefignore
318
321
  - lib/sambot/templates/metadata.rb.erb
319
322
  - lib/sambot/templates/packer.linux.json
320
323
  - lib/sambot/templates/packer.windows.json
321
324
  - lib/sambot/templates/pre-push
322
325
  - lib/sambot/templates/startup-script.ps1
323
326
  - lib/sambot/templates/teamcity.sh.erb
327
+ - lib/sambot/templates/winrm_config
324
328
  - lib/sambot/version.rb
325
329
  - sambot.gemspec
326
330
  homepage: http://github.com/okouam/sambot