publican_creators 1.0.3 → 1.0.4

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: b6bb4ccb2cd3bd8040a2bd057011e32ced5f107f
4
- data.tar.gz: 89de5b43540316d0ce276b223730b6f9af508efc
3
+ metadata.gz: c59f7baa0d153f9e67cdf1642a3385c33ad4f0bf
4
+ data.tar.gz: ddcb513dd669842bab284a8bad72969f92a57d72
5
5
  SHA512:
6
- metadata.gz: dae97c3210d73a9f9c721996a4ab84b6fb59e9ec6dcfe8456ce65a48d7a7ffac1afaa9ec2fa66bbd4124e79c945f60351ad29467d3f3ad992fe41c6087394132
7
- data.tar.gz: aab29b5704823665d9fad6ff7eb9e678d95089b628246ecd085ab231f798386cf2089d8a2f030eb5f8124a24a00e81a1a51f674aa8930d0680ab233c52525e40
6
+ metadata.gz: 44620c6f0038612786c5b703e25d6b16aeeb6ea86773d10fbc8b4f1a116e3c360aa6e991f037405e72f72072dcbf8b6fd08675db093f54a6bcfb2c1dd242ea4a
7
+ data.tar.gz: 42bf186ba084993b10af3caa736e9ccafbdc985d9e29ddf3d33587c03964e1f0128ef4796fabf9e1736e1debc8d675a1f758c824a6d2552de890d0f90169ceca
data/.coveralls.yml CHANGED
@@ -1 +1,2 @@
1
- service_name: travis-ci
1
+ service_name: travis-ci
2
+ repo_token: 9CMCCcz9vDkockhQPsGJOhVGeBQjla6CQ
data/.rubocop.yml CHANGED
@@ -2,11 +2,11 @@ AllCops:
2
2
 
3
3
  Include:
4
4
  - 'lib/**/*.rb'
5
- - 'test/**/*.rb'
5
+ - 'spec/**/*.rb'
6
6
 
7
7
  Exclude:
8
8
  - 'Rakefile'
9
- - 'test/The_holy_Bible/*'
9
+ - 'spec/The_holy_Bible/*'
10
10
 
11
11
  DisplayCopNames: true
12
12
 
data/.scrutinizer.yml CHANGED
@@ -14,4 +14,4 @@ checks:
14
14
 
15
15
  filter:
16
16
  excluded_paths:
17
- - 'test/*'
17
+ - 'spec/*'
data/CONTRIBUTING.md CHANGED
@@ -12,7 +12,7 @@ The develop branch is the current edge of development.
12
12
 
13
13
  ## Pull requests
14
14
 
15
- * https://gitlab.com/saigkill/publican_creators/merge_requests
15
+ * https://github.com/saigkill/publican_creators/pulls
16
16
 
17
17
  Please base all pull requests off the `develop` branch. Merges to
18
18
  `master` only occur through the `develop` branch. Pull requests
@@ -22,4 +22,4 @@ based on `master` will likely be cherry picked.
22
22
 
23
23
  Need to report an issue? Use that issue tracker:
24
24
 
25
- * https://gitlab.com/saigkill/publican_creators/issues
25
+ * https://saigkill.myjetbrains.com/youtrack/issues?q=project%3A+PublicanCreator
data/Gemfile CHANGED
@@ -5,7 +5,7 @@
5
5
  source "https://rubygems.org/"
6
6
 
7
7
  gem "setup", "~>5.2"
8
- gem "nokogiri", "~>1.6.7"
8
+ gem "nokogiri", "~>1.6"
9
9
  gem "parseconfig", "~>1.0"
10
10
  gem "rainbow", "~>2.1"
11
11
  gem "notifier", "~>0.5"
@@ -13,23 +13,20 @@ gem "notifier", "~>0.5"
13
13
  gem "hoe-highline", "~>0.2", :group => [:development, :test]
14
14
  gem "rdoc", "~>4.0", :group => [:development, :test]
15
15
  gem "coveralls", "~>0.8", :group => [:development, :test]
16
- gem "hoe-bundler", "~>1.2", :group => [:development, :test]
17
- gem "hoe-gemspec", "~>1.0", :group => [:development, :test]
16
+ gem "hoe-bundler", "~>1.3", :group => [:development, :test]
18
17
  gem "hoe-git", "~>1.6", :group => [:development, :test]
19
18
  gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
20
- gem "hoe-manns", "~>1.4", :group => [:development, :test]
19
+ gem "hoe-manns", "~>1.5", :group => [:development, :test]
21
20
  gem "hoe-reek", "~>1.1", :group => [:development, :test]
22
21
  gem "hoe-rubocop", "~>1.0", :group => [:development, :test]
23
22
  gem "hoe-version", "~>1.2", :group => [:development, :test]
24
23
  gem "hoe-seattlerb", "~>1.3", :group => [:development, :test]
25
- gem "hoe", "~>3.14", :group => [:development, :test]
26
- gem "rake", "~>10.5", :group => [:development, :test]
27
- gem "gem-release", "~>0.7", :group => [:development, :test]
28
- gem "indexer", "~>0.3", :group => [:development, :test]
24
+ gem "hoe", "~>3.15", :group => [:development, :test]
25
+ gem "rake", "~>11.2", :group => [:development, :test]
29
26
  gem "manns_shared", "~>1.0", :group => [:development, :test]
30
27
  gem "bundler", "~>1.11", :group => [:development, :test]
31
- gem "rspec", "~>3.4", :group => [:development, :test]
32
- gem "rubocop", "~>0.37", :group => [:development, :test]
33
- gem "simplecov", "~>0.11", :group => [:development, :test]
28
+ gem "rspec", "~>3.5", :group => [:development, :test]
29
+ gem "rubocop", "~>0.42", :group => [:development, :test]
30
+ gem "simplecov", "~>0.12", :group => [:development, :test]
34
31
 
35
32
  # vim: syntax=ruby
data/Gemfile.lock CHANGED
@@ -1,41 +1,34 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- ast (2.2.0)
5
- bundler-audit (0.4.0)
4
+ ast (2.3.0)
5
+ bundler-audit (0.5.0)
6
6
  bundler (~> 1.2)
7
7
  thor (~> 0.18)
8
- coveralls (0.8.10)
9
- json (~> 1.8)
10
- rest-client (>= 1.6.8, < 2)
11
- simplecov (~> 0.11.0)
8
+ coveralls (0.8.15)
9
+ json (>= 1.8, < 3)
10
+ simplecov (~> 0.12.0)
12
11
  term-ansicolor (~> 1.3)
13
12
  thor (~> 0.19.1)
14
- tins (~> 1.6.0)
13
+ tins (>= 1.6.0, < 2)
15
14
  diff-lcs (1.2.5)
16
15
  docile (1.1.5)
17
- domain_name (0.5.20160128)
18
- unf (>= 0.0.5, < 1.0.0)
19
- gem-release (0.7.4)
20
16
  highline (1.7.8)
21
- hoe (3.14.2)
22
- rake (>= 0.8, < 11.0)
23
- hoe-bundler (1.2.0)
24
- hoe (>= 2.2.0)
25
- hoe-gemspec (1.0.0)
17
+ hoe (3.15.1)
18
+ rake (>= 0.8, < 12.0)
19
+ hoe-bundler (1.3.0)
26
20
  hoe (>= 2.2.0)
27
21
  hoe-git (1.6.0)
28
22
  hoe-highline (0.2.1)
29
23
  highline (~> 1.6)
30
24
  hoe (~> 3.11)
31
- hoe-manns (1.4.7)
25
+ hoe-manns (1.5.0)
32
26
  bundler-audit (~> 0.4)
33
- hoe (~> 3.14)
34
- indexer (~> 0.3)
27
+ hoe (~> 3.15)
35
28
  pandoc-ruby (~> 1.0)
36
29
  parseconfig (~> 1.0)
37
30
  rainbow (~> 2.1)
38
- hoe-reek (1.1.3)
31
+ hoe-reek (1.1.5)
39
32
  bundler (~> 1.11)
40
33
  setup (~> 5.2)
41
34
  hoe-rubocop (1.0.6)
@@ -43,68 +36,58 @@ GEM
43
36
  hoe (~> 3.14)
44
37
  rubocop (~> 0.37)
45
38
  hoe-rubygems (1.0.0)
46
- hoe-seattlerb (1.3.4)
39
+ hoe-seattlerb (1.3.5)
47
40
  hoe-version (1.2.0)
48
- http-cookie (1.0.2)
49
- domain_name (~> 0.5)
50
- indexer (0.3.1)
51
41
  json (1.8.3)
52
- manns_shared (1.0.4)
53
- nokogiri (~> 1.6.7)
42
+ manns_shared (1.0.7)
43
+ nokogiri (~> 1.6)
54
44
  setup (~> 5.2)
55
- mime-types (2.99)
56
- mini_portile2 (2.0.0)
57
- netrc (0.11.0)
58
- nokogiri (1.6.7.2)
59
- mini_portile2 (~> 2.0.0.rc2)
60
- notifier (0.5.1)
45
+ mini_portile2 (2.1.0)
46
+ nokogiri (1.6.8)
47
+ mini_portile2 (~> 2.1.0)
48
+ pkg-config (~> 1.1.7)
49
+ notifier (0.5.2)
61
50
  pandoc-ruby (1.0.0)
62
51
  parseconfig (1.0.8)
63
- parser (2.3.0.3)
52
+ parser (2.3.1.2)
64
53
  ast (~> 2.2)
54
+ pkg-config (1.1.7)
65
55
  powerpack (0.1.1)
66
56
  rainbow (2.1.0)
67
- rake (10.5.0)
68
- rdoc (4.2.1)
57
+ rake (11.2.2)
58
+ rdoc (4.2.2)
69
59
  json (~> 1.4)
70
- rest-client (1.8.0)
71
- http-cookie (>= 1.0.2, < 2.0)
72
- mime-types (>= 1.16, < 3.0)
73
- netrc (~> 0.7)
74
- rspec (3.4.0)
75
- rspec-core (~> 3.4.0)
76
- rspec-expectations (~> 3.4.0)
77
- rspec-mocks (~> 3.4.0)
78
- rspec-core (3.4.2)
79
- rspec-support (~> 3.4.0)
80
- rspec-expectations (3.4.0)
60
+ rspec (3.5.0)
61
+ rspec-core (~> 3.5.0)
62
+ rspec-expectations (~> 3.5.0)
63
+ rspec-mocks (~> 3.5.0)
64
+ rspec-core (3.5.2)
65
+ rspec-support (~> 3.5.0)
66
+ rspec-expectations (3.5.0)
81
67
  diff-lcs (>= 1.2.0, < 2.0)
82
- rspec-support (~> 3.4.0)
83
- rspec-mocks (3.4.1)
68
+ rspec-support (~> 3.5.0)
69
+ rspec-mocks (3.5.0)
84
70
  diff-lcs (>= 1.2.0, < 2.0)
85
- rspec-support (~> 3.4.0)
86
- rspec-support (3.4.1)
87
- rubocop (0.37.0)
88
- parser (>= 2.3.0.2, < 3.0)
71
+ rspec-support (~> 3.5.0)
72
+ rspec-support (3.5.0)
73
+ rubocop (0.42.0)
74
+ parser (>= 2.3.1.1, < 3.0)
89
75
  powerpack (~> 0.1)
90
76
  rainbow (>= 1.99.1, < 3.0)
91
77
  ruby-progressbar (~> 1.7)
92
- unicode-display_width (~> 0.3)
93
- ruby-progressbar (1.7.5)
78
+ unicode-display_width (~> 1.0, >= 1.0.1)
79
+ ruby-progressbar (1.8.1)
94
80
  setup (5.2.0)
95
- simplecov (0.11.2)
81
+ simplecov (0.12.0)
96
82
  docile (~> 1.1.0)
97
- json (~> 1.8)
83
+ json (>= 1.8, < 3)
98
84
  simplecov-html (~> 0.10.0)
99
85
  simplecov-html (0.10.0)
100
86
  term-ansicolor (1.3.2)
101
87
  tins (~> 1.0)
102
88
  thor (0.19.1)
103
- tins (1.6.0)
104
- unf (0.1.4)
105
- unf_ext
106
- unf_ext (0.0.7.2)
107
- unicode-display_width (0.3.1)
89
+ tins (1.12.0)
90
+ unicode-display_width (1.1.0)
108
91
 
109
92
  PLATFORMS
110
93
  ruby
@@ -112,30 +95,27 @@ PLATFORMS
112
95
  DEPENDENCIES
113
96
  bundler (~> 1.11)
114
97
  coveralls (~> 0.8)
115
- gem-release (~> 0.7)
116
- hoe (~> 3.14)
117
- hoe-bundler (~> 1.2)
118
- hoe-gemspec (~> 1.0)
98
+ hoe (~> 3.15)
99
+ hoe-bundler (~> 1.3)
119
100
  hoe-git (~> 1.6)
120
101
  hoe-highline (~> 0.2)
121
- hoe-manns (~> 1.4)
102
+ hoe-manns (~> 1.5)
122
103
  hoe-reek (~> 1.1)
123
104
  hoe-rubocop (~> 1.0)
124
105
  hoe-rubygems (~> 1.0)
125
106
  hoe-seattlerb (~> 1.3)
126
107
  hoe-version (~> 1.2)
127
- indexer (~> 0.3)
128
108
  manns_shared (~> 1.0)
129
- nokogiri (~> 1.6.7)
109
+ nokogiri (~> 1.6)
130
110
  notifier (~> 0.5)
131
111
  parseconfig (~> 1.0)
132
112
  rainbow (~> 2.1)
133
- rake (~> 10.5)
113
+ rake (~> 11.2)
134
114
  rdoc (~> 4.0)
135
- rspec (~> 3.4)
136
- rubocop (~> 0.37)
115
+ rspec (~> 3.5)
116
+ rubocop (~> 0.42)
137
117
  setup (~> 5.2)
138
- simplecov (~> 0.11)
118
+ simplecov (~> 0.12)
139
119
 
140
120
  BUNDLED WITH
141
- 1.11.2
121
+ 1.12.5
data/History.rdoc CHANGED
@@ -1,3 +1,9 @@
1
+ === 1.0.4 / 2016-08-06
2
+
3
+ * 1 minor enhancement
4
+
5
+ * updated dependencies from gemnasium
6
+
1
7
  === 1.0.3 / 2016-02-08
2
8
 
3
9
  * 1 minor enhancement
data/LICENSE.rdoc CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  (The MIT License)
4
4
 
5
- Copyright (c) 2015 Sascha Manns <samannsml@directbox.com>
5
+ Copyright (c) 2015-2016 Sascha Manns <samannsml@directbox.com>
6
6
 
7
7
  Permission is hereby granted, free of charge, to any person obtaining
8
8
  a copy of this software and associated documentation files (the
data/Manifest.txt CHANGED
@@ -2,9 +2,6 @@
2
2
  .codeclimate.yml
3
3
  .coveralls.yml
4
4
  .gemnasium.yml
5
- .gemrelease
6
- .gemtest
7
- .index
8
5
  .rspec
9
6
  .rubocop.yml
10
7
  .scrutinizer.yml
@@ -15,12 +12,10 @@ CONTRIBUTING.md
15
12
  Gemfile
16
13
  Gemfile.lock
17
14
  History.rdoc
18
- Index.yml
19
15
  LICENSE.rdoc
20
16
  Manifest.txt
21
17
  README.rdoc
22
18
  Rakefile
23
- VERSION
24
19
  bin/publican_creators.rb
25
20
  bin/revision_creator.rb
26
21
  config.reek
data/README.rdoc CHANGED
@@ -1,13 +1,11 @@
1
1
  = publican_creators
2
2
 
3
3
  home :: http://saigkill.github.io
4
- code :: https://gitlab.com/saigkill/publican_creators
5
- docs :: https://gitlab.com/saigkill/publican_creators/wikis/home
6
- bugs :: https://gitlab.com/saigkill/publican_creators/issues
7
- mailinglist :: https://groups.google.com/forum/#!forum/publicancreators
4
+ code :: https://github.com/saigkill/publican_creators
5
+ docs :: https://saigkill.github.io/docs/publicancreators/en-US/html/
6
+ bugs :: https://saigkill.myjetbrains.com/youtrack/issues?q=project%3A+PublicanCreator
8
7
  openhub statistics :: https://www.openhub.net/p/publican_creators
9
8
  openhatch :: http://openhatch.org/projects/publicancreators
10
- mailinglist :: https://groups.google.com/forum/#!forum/publicancreators
11
9
  license :: {<img src="http://img.shields.io/:license-mit-blue.svg" />}[https://gitlab.com/saigkill/publican_creators/blob/master/LICENSE.rdoc]
12
10
  last public version :: {<img src="https://badge.fury.io/rb/publican_creators.png" alt="Build Status" />}[http://rubygems.org/gems/publican_creators]
13
11
  downloads latest :: {<img src="https://img.shields.io/gem/dtv/publican_creators.svg" alt="Build Status" />}[http://rubygems.org/gems/publican_creators]
@@ -65,7 +63,7 @@ The installation is very easy.
65
63
  cd /path/to/gem (In case of using RVM ~/.rvm/gems/ruby-2.2.1/gems/publican_creators)
66
64
  rake
67
65
 
68
- Read the documentation at: https://gitlab.com/saigkill/publican_creators/wikis/home
66
+ Read the documentation at: https://saigkill.github.io/docs/publicancreators/en-US/html/
69
67
 
70
68
  You have to run the setup after each gem update.
71
69
 
@@ -80,13 +78,13 @@ After checking out the source, run:
80
78
  This task will install any missing dependencies, run the tests/specs,
81
79
  and generate the RDoc.
82
80
 
83
- Read https://gitlab.com/saigkill/publican_creators/blob/master/CONTRIBUTING.md
81
+ Read https://github.com/saigkill/publican_creators/blob/master/CONTRIBUTING.md
84
82
 
85
83
  == LICENSE:
86
84
 
87
85
  (The MIT License)
88
86
 
89
- Copyright (c) 2015 Sascha Manns <samannsml@directbox.com>
87
+ Copyright (c) 2015-2016 Sascha Manns <samannsml@directbox.com>
90
88
 
91
89
  Permission is hereby granted, free of charge, to any person obtaining
92
90
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -16,9 +16,8 @@ require 'hoe'
16
16
  Hoe.plugin :bundler
17
17
  Hoe.plugin :doofus
18
18
  Hoe.plugin :email
19
- #Hoe.plugin :gemspec
20
19
  # Hoe.plugin :gem_prelude_sucks
21
- Hoe.plugins.delete :git
20
+ #Hoe.plugins.delete :git
22
21
  #Hoe.plugin :git
23
22
  Hoe.plugin :highline
24
23
  #Hoe.plugin :inline
@@ -41,33 +40,30 @@ Hoe.spec 'publican_creators' do
41
40
  self.history_file = 'History.rdoc'
42
41
  self.readme_file = 'README.rdoc'
43
42
  self.extra_rdoc_files = FileList['*.rdoc'].to_a
44
- self.post_install_message = '*** Run rake setup to finish the installation *** Please file bugreports and feature requests on: https://gitlab.com/saigkill/publican_creators/issue'
43
+ self.post_install_message = '*** Run rake setup to finish the installation *** Please file bugreports and feature requests on: https://saigkill.myjetbrains.com/youtrack/issues?q=project%3A+PublicanCreator'
45
44
 
46
45
  dependency 'setup', '~> 5.2'
47
- dependency 'nokogiri', '~> 1.6.7'
46
+ dependency 'nokogiri', '~> 1.6'
48
47
  dependency 'parseconfig', '~> 1.0'
49
48
  dependency 'rainbow', '~> 2.1'
50
49
  dependency 'notifier', '~> 0.5'
51
50
 
52
51
  extra_dev_deps << ['coveralls', '~> 0.8']
53
- extra_dev_deps << ['hoe-bundler', '~> 1.2']
54
- extra_dev_deps << ['hoe-gemspec', '~> 1.0']
52
+ extra_dev_deps << ['hoe-bundler', '~> 1.3']
55
53
  extra_dev_deps << ['hoe-git', '~> 1.6']
56
54
  extra_dev_deps << ['hoe-rubygems', '~> 1.0']
57
- extra_dev_deps << ['hoe-manns', '~> 1.4']
55
+ extra_dev_deps << ['hoe-manns', '~> 1.5']
58
56
  extra_dev_deps << ['hoe-reek', '~> 1.1']
59
57
  extra_dev_deps << ['hoe-rubocop', '~> 1.0']
60
58
  extra_dev_deps << ['hoe-version', '~> 1.2']
61
59
  extra_dev_deps << ['hoe-seattlerb', '~> 1.3']
62
- extra_dev_deps << ['hoe', '~> 3.14']
63
- extra_dev_deps << ['rake', '~> 10.5']
64
- extra_dev_deps << ['gem-release', '~> 0.7']
65
- extra_dev_deps << ['indexer', '~> 0.3']
60
+ extra_dev_deps << ['hoe', '~> 3.15']
61
+ extra_dev_deps << ['rake', '~> 11.2']
66
62
  extra_dev_deps << ['manns_shared', '~> 1.0']
67
63
  extra_dev_deps << ['bundler', '~> 1.11']
68
- extra_dev_deps << ['rspec', '~> 3.4']
69
- extra_dev_deps << ['rubocop', '~> 0.37']
70
- extra_dev_deps << ['simplecov', '~> 0.11']
64
+ extra_dev_deps << ['rspec', '~> 3.5']
65
+ extra_dev_deps << ['rubocop', '~> 0.42']
66
+ extra_dev_deps << ['simplecov', '~> 0.12']
71
67
  end
72
68
 
73
69
  ###################################### SETUP ZONE #####################################################################
@@ -2,7 +2,7 @@
2
2
  # @author Sascha Manns
3
3
  # @abstract Main Class for PublicanCreators
4
4
  #
5
- # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
5
+ # Copyright (C) 2015-2016 Sascha Manns <samannsml@directbox.com>
6
6
  # License: MIT
7
7
 
8
8
  # Dependencies
@@ -22,7 +22,7 @@ require 'manns_shared'
22
22
  # @return [String] true or false
23
23
  class PublicanCreators
24
24
  # Versionizing
25
- VERSION = '1.0.3'
25
+ VERSION = '1.0.4'
26
26
 
27
27
  my_name = File.basename($PROGRAM_NAME)
28
28
 
@@ -3,7 +3,7 @@
3
3
  # @author Sascha Manns
4
4
  # @abstract Class for all file changes
5
5
  #
6
- # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
6
+ # Copyright (C) 2015-2016 Sascha Manns <samannsml@directbox.com>
7
7
  # License: MIT
8
8
 
9
9
  # Dependencies
@@ -2,7 +2,7 @@
2
2
  # @author Sascha Manns
3
3
  # @abstract Class for checking directories and creating them
4
4
  #
5
- # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
5
+ # Copyright (C) 2015-2016 Sascha Manns <samannsml@directbox.com>
6
6
  # License: MIT
7
7
 
8
8
  # Dependencies
@@ -3,7 +3,7 @@
3
3
  # @author Sascha Manns
4
4
  # @abstract Class for all file changes
5
5
  #
6
- # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
6
+ # Copyright (C) 2015-2016 Sascha Manns <samannsml@directbox.com>
7
7
  # License: MIT
8
8
 
9
9
  # Dependencies
@@ -2,7 +2,7 @@
2
2
  # @author Sascha Manns
3
3
  # @abstract Class for exporting bash scripts
4
4
  #
5
- # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
5
+ # Copyright (C) 2015-2016 Sascha Manns <samannsml@directbox.com>
6
6
  # License: MIT
7
7
 
8
8
  # Dependencies
@@ -2,7 +2,7 @@
2
2
  # @author Sascha Manns
3
3
  # @abstract Class for gathering information from config file and user input
4
4
  #
5
- # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
5
+ # Copyright (C) 2015-2016 Sascha Manns <samannsml@directbox.com>
6
6
  # License: MIT
7
7
 
8
8
  # Dependencies
@@ -3,7 +3,7 @@
3
3
  # @author Sascha Manns
4
4
  # @abstract Notifier Module for latex_curriculum_vitae
5
5
  #
6
- # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
6
+ # Copyright (C) 2015-2016 Sascha Manns <samannsml@directbox.com>
7
7
  # License: MIT
8
8
 
9
9
  # Dependencies
@@ -2,7 +2,7 @@
2
2
  # @author Sascha Manns
3
3
  # @abstract Class for preparing the configuration
4
4
  #
5
- # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
5
+ # Copyright (C) 2015-2016 Sascha Manns <samannsml@directbox.com>
6
6
  # License: MIT
7
7
 
8
8
  # Dependencies
@@ -1,7 +1,7 @@
1
1
  # @author Sascha Manns
2
2
  # @abstract Class RevisionCreator for PublicanCreator
3
3
  #
4
- # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
4
+ # Copyright (C) 2015-2016 Sascha Manns <samannsml@directbox.com>
5
5
  # License: MIT
6
6
  #
7
7
  # Dependencies
@@ -3,7 +3,7 @@
3
3
  # @author Sascha Manns
4
4
  # @abstract Class for all file changes
5
5
  #
6
- # Copyright (C) 2015 Sascha Manns <samannsml@directbox.com>
6
+ # Copyright (C) 2015-2016 Sascha Manns <samannsml@directbox.com>
7
7
  # License: MIT
8
8
 
9
9
  # Dependencies
metadata CHANGED
@@ -1,36 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: publican_creators
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sascha Manns
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain:
11
- - |
12
- -----BEGIN CERTIFICATE-----
13
- MIIDhTCCAm2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMRIwEAYDVQQDDAlzYW1h
14
- bm5zbWwxGTAXBgoJkiaJk/IsZAEZFglkaXJlY3Rib3gxEzARBgoJkiaJk/IsZAEZ
15
- FgNjb20wHhcNMTUwOTE1MTAwOTQwWhcNMTYwOTE0MTAwOTQwWjBEMRIwEAYDVQQD
16
- DAlzYW1hbm5zbWwxGTAXBgoJkiaJk/IsZAEZFglkaXJlY3Rib3gxEzARBgoJkiaJ
17
- k/IsZAEZFgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQChvBUV
18
- qkj1as15E6mSt42Vf+bwwn6y5IINU8WyMByK85WPENyWpOTOsrwTSpai3b/fO6JE
19
- RzGyC/IDQXy5IcnWAXIRG/lRy4MOHeReShVH0TWP9e63jhsjffb3oiE9WyVMyp6j
20
- 7mBDsYQlpd9dzIxBjhOuezqHTats1Zx3YmgTKqcxIGagw+91taJE3eXQRh9OTply
21
- 6nFe4EeEDZIDkpGxgWPdPXhdEOh70z9if0Li0iuwzKD7nI2YDrQPZ6yzohwJSCxJ
22
- G1cvwyew70s9xneJ63C+EoBDdSzjYOi9ov08sLYm6XphYmXkansZX9XLvlkm7oNU
23
- RauozHFRkVgou2yPAgMBAAGjgYEwfzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAd
24
- BgNVHQ4EFgQU2Z0THCX7uI/mtn0lN5RlIUhQHkMwIgYDVR0RBBswGYEXc2FtYW5u
25
- c21sQGRpcmVjdGJveC5jb20wIgYDVR0SBBswGYEXc2FtYW5uc21sQGRpcmVjdGJv
26
- eC5jb20wDQYJKoZIhvcNAQEFBQADggEBABcwHO1C0EOos6v4jYYqcxMqryJnGH9O
27
- ZOGyesU4BsVuVfKznMZ2hMnb5UW1JgxcZgTdhh4LuZ5NuDUd4DJyUGVKKVIxPFzs
28
- T1YreFIygjNZDlF338gY4R8OgzgM7j/k5mxg1gL0/4zgHVNRFsb4lB0xN+b/9iY4
29
- OQ2nBbEye41AtFzskC/Qdsj5uvG/g2wy8fMDZ6+VI4nNb/bHJahShz2kqRap461j
30
- cEuJ8AWKUjdkdt1Nba7qmareRtc2+pEiITV5ANv24b8vsmq9/8nbxQckdO7+NQRP
31
- pTQZhJ4mX28Qe1F9IE4F4UDeo8gQSPHJOttZA33sRLC19sH67dLq4pM=
32
- -----END CERTIFICATE-----
33
- date: 2016-02-08 00:00:00.000000000 Z
10
+ cert_chain: []
11
+ date: 2016-08-06 00:00:00.000000000 Z
34
12
  dependencies:
35
13
  - !ruby/object:Gem::Dependency
36
14
  name: setup
@@ -52,14 +30,14 @@ dependencies:
52
30
  requirements:
53
31
  - - "~>"
54
32
  - !ruby/object:Gem::Version
55
- version: 1.6.7
33
+ version: '1.6'
56
34
  type: :runtime
57
35
  prerelease: false
58
36
  version_requirements: !ruby/object:Gem::Requirement
59
37
  requirements:
60
38
  - - "~>"
61
39
  - !ruby/object:Gem::Version
62
- version: 1.6.7
40
+ version: '1.6'
63
41
  - !ruby/object:Gem::Dependency
64
42
  name: parseconfig
65
43
  requirement: !ruby/object:Gem::Requirement
@@ -150,28 +128,14 @@ dependencies:
150
128
  requirements:
151
129
  - - "~>"
152
130
  - !ruby/object:Gem::Version
153
- version: '1.2'
154
- type: :development
155
- prerelease: false
156
- version_requirements: !ruby/object:Gem::Requirement
157
- requirements:
158
- - - "~>"
159
- - !ruby/object:Gem::Version
160
- version: '1.2'
161
- - !ruby/object:Gem::Dependency
162
- name: hoe-gemspec
163
- requirement: !ruby/object:Gem::Requirement
164
- requirements:
165
- - - "~>"
166
- - !ruby/object:Gem::Version
167
- version: '1.0'
131
+ version: '1.3'
168
132
  type: :development
169
133
  prerelease: false
170
134
  version_requirements: !ruby/object:Gem::Requirement
171
135
  requirements:
172
136
  - - "~>"
173
137
  - !ruby/object:Gem::Version
174
- version: '1.0'
138
+ version: '1.3'
175
139
  - !ruby/object:Gem::Dependency
176
140
  name: hoe-git
177
141
  requirement: !ruby/object:Gem::Requirement
@@ -206,14 +170,14 @@ dependencies:
206
170
  requirements:
207
171
  - - "~>"
208
172
  - !ruby/object:Gem::Version
209
- version: '1.4'
173
+ version: '1.5'
210
174
  type: :development
211
175
  prerelease: false
212
176
  version_requirements: !ruby/object:Gem::Requirement
213
177
  requirements:
214
178
  - - "~>"
215
179
  - !ruby/object:Gem::Version
216
- version: '1.4'
180
+ version: '1.5'
217
181
  - !ruby/object:Gem::Dependency
218
182
  name: hoe-reek
219
183
  requirement: !ruby/object:Gem::Requirement
@@ -276,56 +240,28 @@ dependencies:
276
240
  requirements:
277
241
  - - "~>"
278
242
  - !ruby/object:Gem::Version
279
- version: '3.14'
243
+ version: '3.15'
280
244
  type: :development
281
245
  prerelease: false
282
246
  version_requirements: !ruby/object:Gem::Requirement
283
247
  requirements:
284
248
  - - "~>"
285
249
  - !ruby/object:Gem::Version
286
- version: '3.14'
250
+ version: '3.15'
287
251
  - !ruby/object:Gem::Dependency
288
252
  name: rake
289
253
  requirement: !ruby/object:Gem::Requirement
290
254
  requirements:
291
255
  - - "~>"
292
256
  - !ruby/object:Gem::Version
293
- version: '10.5'
294
- type: :development
295
- prerelease: false
296
- version_requirements: !ruby/object:Gem::Requirement
297
- requirements:
298
- - - "~>"
299
- - !ruby/object:Gem::Version
300
- version: '10.5'
301
- - !ruby/object:Gem::Dependency
302
- name: gem-release
303
- requirement: !ruby/object:Gem::Requirement
304
- requirements:
305
- - - "~>"
306
- - !ruby/object:Gem::Version
307
- version: '0.7'
308
- type: :development
309
- prerelease: false
310
- version_requirements: !ruby/object:Gem::Requirement
311
- requirements:
312
- - - "~>"
313
- - !ruby/object:Gem::Version
314
- version: '0.7'
315
- - !ruby/object:Gem::Dependency
316
- name: indexer
317
- requirement: !ruby/object:Gem::Requirement
318
- requirements:
319
- - - "~>"
320
- - !ruby/object:Gem::Version
321
- version: '0.3'
257
+ version: '11.2'
322
258
  type: :development
323
259
  prerelease: false
324
260
  version_requirements: !ruby/object:Gem::Requirement
325
261
  requirements:
326
262
  - - "~>"
327
263
  - !ruby/object:Gem::Version
328
- version: '0.3'
264
+ version: '11.2'
329
265
  - !ruby/object:Gem::Dependency
330
266
  name: manns_shared
331
267
  requirement: !ruby/object:Gem::Requirement
@@ -360,42 +296,42 @@ dependencies:
360
296
  requirements:
361
297
  - - "~>"
362
298
  - !ruby/object:Gem::Version
363
- version: '3.4'
299
+ version: '3.5'
364
300
  type: :development
365
301
  prerelease: false
366
302
  version_requirements: !ruby/object:Gem::Requirement
367
303
  requirements:
368
304
  - - "~>"
369
305
  - !ruby/object:Gem::Version
370
- version: '3.4'
306
+ version: '3.5'
371
307
  - !ruby/object:Gem::Dependency
372
308
  name: rubocop
373
309
  requirement: !ruby/object:Gem::Requirement
374
310
  requirements:
375
311
  - - "~>"
376
312
  - !ruby/object:Gem::Version
377
- version: '0.37'
313
+ version: '0.42'
378
314
  type: :development
379
315
  prerelease: false
380
316
  version_requirements: !ruby/object:Gem::Requirement
381
317
  requirements:
382
318
  - - "~>"
383
319
  - !ruby/object:Gem::Version
384
- version: '0.37'
320
+ version: '0.42'
385
321
  - !ruby/object:Gem::Dependency
386
322
  name: simplecov
387
323
  requirement: !ruby/object:Gem::Requirement
388
324
  requirements:
389
325
  - - "~>"
390
326
  - !ruby/object:Gem::Version
391
- version: '0.11'
327
+ version: '0.12'
392
328
  type: :development
393
329
  prerelease: false
394
330
  version_requirements: !ruby/object:Gem::Requirement
395
331
  requirements:
396
332
  - - "~>"
397
333
  - !ruby/object:Gem::Version
398
- version: '0.11'
334
+ version: '0.12'
399
335
  description: |-
400
336
  PublicanCreators are a small tool for daily DocBook writers who are using the Redhat publican tool https://fedorahosted.org/publican/. PublicanCreators asks after
401
337
  launching which title, type and environment should be used. Then it starts publican with that settings and works then with the produced files.
@@ -421,9 +357,6 @@ files:
421
357
  - ".codeclimate.yml"
422
358
  - ".coveralls.yml"
423
359
  - ".gemnasium.yml"
424
- - ".gemrelease"
425
- - ".gemtest"
426
- - ".index"
427
360
  - ".rspec"
428
361
  - ".rubocop.yml"
429
362
  - ".scrutinizer.yml"
@@ -434,12 +367,10 @@ files:
434
367
  - Gemfile
435
368
  - Gemfile.lock
436
369
  - History.rdoc
437
- - Index.yml
438
370
  - LICENSE.rdoc
439
371
  - Manifest.txt
440
372
  - README.rdoc
441
373
  - Rakefile
442
- - VERSION
443
374
  - bin/publican_creators.rb
444
375
  - bin/revision_creator.rb
445
376
  - config.reek
@@ -463,7 +394,7 @@ licenses:
463
394
  - MIT
464
395
  metadata: {}
465
396
  post_install_message: "*** Run rake setup to finish the installation *** Please file
466
- bugreports and feature requests on: https://gitlab.com/saigkill/publican_creators/issue"
397
+ bugreports and feature requests on: https://saigkill.myjetbrains.com/youtrack/issues?q=project%3A+PublicanCreator"
467
398
  rdoc_options:
468
399
  - "--main"
469
400
  - README.rdoc
@@ -481,7 +412,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
481
412
  version: '0'
482
413
  requirements: []
483
414
  rubyforge_project:
484
- rubygems_version: 2.4.8
415
+ rubygems_version: 2.6.6
485
416
  signing_key:
486
417
  specification_version: 4
487
418
  summary: PublicanCreators are a small tool for daily DocBook writers who are using
checksums.yaml.gz.sig DELETED
@@ -1 +0,0 @@
1
- �Ta�V�C3'4~0�,8yy��<��o�XGH:8�،��aߡ�yGt�i�����($M�������9N���Q���gS�]G�q��oS�%<��G�7Pr�����c�7�H�"���KL�����ǰU��Vq����-)[��8ƪ���wF�T��Ge�PCa�"ŎM*h8Fk6���<A,�I7%��V4���!h�ȵZ�ŏ0q�2,cP��!Nsȸ�������(S����ι�ar����a�/��
data.tar.gz.sig DELETED
Binary file
data/.gemrelease DELETED
@@ -1,4 +0,0 @@
1
- bump:
2
- tag: true
3
- version: true
4
- bump: true
data/.gemtest DELETED
File without changes
data/.index DELETED
@@ -1,121 +0,0 @@
1
- ---
2
- revision: 2013
3
- type: ruby
4
- sources:
5
- - VERSION
6
- - Index.yml
7
- authors:
8
- - name: Sascha Manns
9
- email: samannsml@directbox.com
10
- organizations: []
11
- requirements:
12
- - name: nokogiri
13
- - name: parseconfig
14
- - name: rainbow
15
- - name: MannsShared
16
- - name: setup
17
- - name: notifier
18
- - groups:
19
- - build
20
- development: true
21
- name: rake
22
- - groups:
23
- - build
24
- development: true
25
- name: bundler
26
- - groups:
27
- - build
28
- development: true
29
- name: rdoc
30
- - groups:
31
- - build
32
- development: true
33
- name: yard
34
- - groups:
35
- - build
36
- development: true
37
- name: gem-release
38
- - groups:
39
- - build
40
- development: true
41
- name: rubocop
42
- - groups:
43
- - build
44
- development: true
45
- name: reek
46
- - groups:
47
- - build
48
- development: true
49
- name: ruby-lint
50
- - groups:
51
- - build
52
- development: true
53
- name: indexer
54
- - groups:
55
- - build
56
- development: true
57
- name: mast
58
- - groups:
59
- - test
60
- development: true
61
- name: test
62
- - groups:
63
- - test
64
- development: true
65
- name: coveralls
66
- - groups:
67
- - test
68
- development: true
69
- name: rspec
70
- - groups:
71
- - test
72
- development: true
73
- name: shoulda
74
- - groups:
75
- - test
76
- development: true
77
- name: simplecov
78
- conflicts: []
79
- alternatives: []
80
- resources:
81
- - type: home
82
- uri: http://saigkill.github.io
83
- label: Homepage
84
- - type: code
85
- uri: https://github.com/saigkill/PublicanCreators
86
- label: Source Code
87
- - type: bugs
88
- uri: http://saigkill-bugs.myjetbrains.com/youtrack
89
- label: Issue Tracker
90
- - type: issues
91
- uri: http://saigkill-bugs.myjetbrains.com/youtrack
92
- label: Issue Tracker
93
- repositories:
94
- - name: upstream
95
- scm: git
96
- uri: https://github.com/saigkill/PublicanCreators.git
97
- categories:
98
- - publican
99
- - docbook
100
- copyrights:
101
- - holder: Sascha Manns
102
- year: '2015'
103
- license: GPL3
104
- customs: []
105
- paths:
106
- lib:
107
- - lib
108
- version: 0.4.14
109
- name: publicancreators
110
- title: Publicancreators
111
- summary: Program for controlling Publican
112
- description: PublicanCreators are a small tool for daily DocBook writers who are using
113
- the Redhat publican tool [https://fedorahosted.org/publican/]. PublicanCreators
114
- asks after launching which title, type and environment should be used. Then it starts
115
- publican with that settings and works then with the produced files. It will work
116
- inside the Article_Info.xml, Book_Info.xml, TITLE.ent, Author_Group.xml and Revision_History.xml
117
- and will replace the default values with your name, you company, your company_divison
118
- and your private or your business email address, depending on your chosen environment.
119
- Also you can set inside your config fil that you want to remove the Title Logo or
120
- the Legal Notice. As a feature it ships a build script for each project.
121
- date: '2015-09-10'
data/Index.yml DELETED
@@ -1,60 +0,0 @@
1
- ---
2
- name: latex_curriculum_vitae
3
- title: Latex_curriculum_vitae
4
- summary: A program for creating an application
5
-
6
- description:
7
- PublicanCreators are a small tool for daily DocBook writers who are using the Redhat publican tool https://fedorahosted.org/publican/. PublicanCreators asks after
8
- launching which title, type and environment should be used. Then it starts publican with that settings and works then with the produced files.
9
- It will work inside the Article_Info.xml, Book_Info.xml, TITLE.ent, Author_Group.xml and Revision_History.xml and
10
- will replace the default values with your name, your company, your company_divison and your private or your business
11
- email address, depending on your chosen environment. Also you can set inside your config file that you want to remove
12
- the Title Logo or the Legal Notice. As a feature it ships a build script for each project.
13
-
14
- authors:
15
- - Sascha Manns <samannsml@directbox.com>
16
-
17
- requirements:
18
- - setup
19
- - notifier
20
- - nokogiri
21
- - parseconfig
22
- - rainbow
23
- - manns_shared
24
- - bundler (build)
25
- - hoe (build)
26
- - hoe-bundler (build
27
- - hoe-gemspec (build)
28
- - hoe-git (build)
29
- - hoe-rubygems (build)
30
- - hoe-manns (build)
31
- - hoe-reek (build)
32
- - hoe-rubocop (build)
33
- - hoe-seattlerb (build)
34
- - coveralls (build)
35
- - indexer (build)
36
- - rdoc (build)
37
- - gem-release (build)
38
- - rspec (build)
39
- - simplecov (build)
40
- - rake (build)
41
- - test (test)
42
- - rubocp (test)
43
-
44
- repositories:
45
- upstream: https://gitlab.com/saigkill/publican_creators.git
46
-
47
- resources:
48
- home: http://saigkill.github.io
49
- code: https://gitlab.com/saigkill/publican_creators
50
- bugs: https://gitlab.com/saigkill/publican_creators/issues
51
-
52
- categories:
53
- - docbook
54
- - linux
55
- - ruby
56
- - publican
57
-
58
- copyrights:
59
- - 2015 Sascha Manns (MIT)
60
-
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 1.0.3
metadata.gz.sig DELETED
Binary file