quickstart 0.8.2 → 0.8.11

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
- SHA1:
3
- metadata.gz: 9843d837a3edf1022be59f5719f8eeb75bcc8b1e
4
- data.tar.gz: ce4f4fc1e0139477ba5ecd66aae641ba3485c62f
2
+ SHA256:
3
+ metadata.gz: 3fc1d4073a322928961adfd5b604cc48cc8974d1b215d4aa7884bc2891d98933
4
+ data.tar.gz: cb094f9f94cbb140ebf180c879c3741d6d2a4af6d7a13e07bf2f21d3b0081509
5
5
  SHA512:
6
- metadata.gz: e2cd5e575f3fecda063a0e3e07e3cbeb3967a9ea8c3196c04a22c7dfbf89f21394fc70a1e83b3184d29d7889f5e4938b76b590ec3ad2cdb63063bb7cefd53c90
7
- data.tar.gz: 60ce70209ce68660d6360434234a3e8d08e804f6de43580937b74cc425e40a6182352262374970f54ebd5d05f0e0eda65d1e5cfe83126ca6ae3252bf4ea701a9
6
+ metadata.gz: 005f84e8c251dd1d3817cadde92535b659e514f9bb4d1bbe5052450e97d4b2d34c121a280d10b006e596fb20e5989245b040f75b5f580433290ebb47ad4066b9
7
+ data.tar.gz: 27a735a520e2453bd2954bb0756d06acc2803f1a9b882d6ef89cad24976a4927aa9762da4d4cd8a124bf7c8cca671683a51cf9062e94944545cbac5e78abf182
Binary file
@@ -0,0 +1,2 @@
1
+ B��c�&��]�.$��M��Y,j�<{s���#x!����Xsڄ�r�����KhӪ3-��_u�^���tXe"A�D�cD�|��j�i��Y����7�cs�RN��/<�F��1��$���C�8��d
2
+
@@ -0,0 +1,2 @@
1
+ *.gem
2
+ Gemfile.lock
data/Gemfile CHANGED
@@ -1,19 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'contracts', '~> 0.13', '>= 0.13.0'
4
- gem 'erubis', '~> 2.7', '>= 2.7.0'
5
- gem 'escort', '~> 0.4', '>= 0.4.0'
6
- gem 'tilt', '~> 2.0', '>= 2.0.2'
7
-
8
- group :development do
9
- gem 'bundler', '~> 1.10'
10
- gem 'flog', '~> 4.3'
11
- gem 'inch', '~> 0.7'
12
- gem 'jeweler', '~> 2.0'
13
- gem 'reek', '~> 3.7'
14
- gem 'roodi', '~> 5.0'
15
- gem 'rspec', '~> 3.4'
16
- gem 'rubocop', '~> 0.35'
17
- gem 'simplecov', '~> 0.11'
18
- gem 'yard', '~> 0.8'
19
- end
3
+ gemspec
@@ -0,0 +1,22 @@
1
+
2
+ The MIT License (MIT)
3
+ Copyright © 2015-2018 Chris Olstrom <chris@olstrom.com>
4
+ Copyright © 2015-2018 SUSE LLC
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the “Software”), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.
@@ -0,0 +1,31 @@
1
+ #+TITLE: QuickStart
2
+ #+LATEX: \pagebreak
3
+
4
+ * Installation
5
+
6
+ #+BEGIN_SRC shell
7
+ gem install quickstart
8
+ #+END_SRC
9
+
10
+ * Usage
11
+
12
+ - Create a template directory
13
+ - Set the environment variable =QUICKSTART_TEMPLATES= to that path.
14
+ - Create one or more directories within =QUICKSTART_TEMPLATES=.
15
+
16
+ #+BEGIN_SRC shell
17
+ quickstart -t some_template --name some_name /path/to/output/to
18
+ #+END_SRC
19
+
20
+ * Note
21
+
22
+ All files in a template are parsed as ERB templates.
23
+
24
+ * License
25
+
26
+ ~quickstart~ is available under the [[https://tldrlegal.com/license/mit-license][MIT License]]. See ~LICENSE.txt~ for the
27
+ full text.
28
+
29
+ * Contributors
30
+
31
+ - [[https://colstrom.github.io/][Chris Olstrom]] | [[mailto:chris@olstrom.com][e-mail]] | [[https://twitter.com/ChrisOlstrom][Twitter]]
@@ -1,103 +1,26 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
- # -*- encoding: utf-8 -*-
5
- # stub: quickstart 0.8.2 ruby lib
1
+ Gem::Specification.new do |gem|
2
+ tag = `git describe --tags --abbrev=0`.chomp
6
3
 
7
- Gem::Specification.new do |s|
8
- s.name = "quickstart"
9
- s.version = "0.8.2"
4
+ gem.name = 'quickstart'
5
+ gem.homepage = 'https://github.com/colstrom/quickstart'
6
+ gem.summary = 'Template-driven scaffolding.'
10
7
 
11
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
- s.require_paths = ["lib"]
13
- s.authors = ["Chris Olstrom"]
14
- s.date = "2016-03-09"
15
- s.description = "Quickstart helps you start your next project, quickly."
16
- s.email = "chris@olstrom.com"
17
- s.executables = ["quickstart"]
18
- s.extra_rdoc_files = [
19
- "LICENSE",
20
- "README.md"
21
- ]
22
- s.files = [
23
- "Gemfile",
24
- "Gemfile.lock",
25
- "LICENSE",
26
- "README.md",
27
- "Rakefile",
28
- "VERSION",
29
- "bin/quickstart",
30
- "doc/examples/gem/.document",
31
- "doc/examples/gem/.gitignore",
32
- "doc/examples/gem/.rspec",
33
- "doc/examples/gem/Gemfile",
34
- "doc/examples/gem/LICENSE",
35
- "doc/examples/gem/README.md",
36
- "doc/examples/gem/Rakefile",
37
- "doc/examples/gem/lib/__name__.rb",
38
- "doc/examples/gem/spec/__name___spec.rb",
39
- "doc/examples/gem/spec/spec_helper.rb",
40
- "lib/quickstart.rb",
41
- "lib/quickstart/cli.rb",
42
- "lib/quickstart/template.rb",
43
- "quickstart.gemspec",
44
- "spec/quickstart_spec.rb",
45
- "spec/spec_helper.rb"
46
- ]
47
- s.homepage = "http://github.com/colstrom/quickstart"
48
- s.licenses = ["MIT"]
49
- s.rubygems_version = "2.5.1"
50
- s.summary = "Template-driven scaffolding."
8
+ gem.version = "#{tag}"
9
+ gem.licenses = ['MIT']
10
+ gem.authors = ['Chris Olstrom']
11
+ gem.email = 'chris@olstrom.com'
51
12
 
52
- if s.respond_to? :specification_version then
53
- s.specification_version = 4
13
+ gem.cert_chain = ['trust/certificates/colstrom.pem']
14
+ gem.signing_key = File.expand_path ENV.fetch 'GEM_SIGNING_KEY'
54
15
 
55
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
56
- s.add_runtime_dependency(%q<contracts>, [">= 0.13.0", "~> 0.13"])
57
- s.add_runtime_dependency(%q<erubis>, [">= 2.7.0", "~> 2.7"])
58
- s.add_runtime_dependency(%q<escort>, [">= 0.4.0", "~> 0.4"])
59
- s.add_runtime_dependency(%q<tilt>, [">= 2.0.2", "~> 2.0"])
60
- s.add_development_dependency(%q<bundler>, ["~> 1.10"])
61
- s.add_development_dependency(%q<flog>, ["~> 4.3"])
62
- s.add_development_dependency(%q<inch>, ["~> 0.7"])
63
- s.add_development_dependency(%q<jeweler>, ["~> 2.0"])
64
- s.add_development_dependency(%q<reek>, ["~> 3.7"])
65
- s.add_development_dependency(%q<roodi>, ["~> 5.0"])
66
- s.add_development_dependency(%q<rspec>, ["~> 3.4"])
67
- s.add_development_dependency(%q<rubocop>, ["~> 0.35"])
68
- s.add_development_dependency(%q<simplecov>, ["~> 0.11"])
69
- s.add_development_dependency(%q<yard>, ["~> 0.8"])
70
- else
71
- s.add_dependency(%q<contracts>, [">= 0.13.0", "~> 0.13"])
72
- s.add_dependency(%q<erubis>, [">= 2.7.0", "~> 2.7"])
73
- s.add_dependency(%q<escort>, [">= 0.4.0", "~> 0.4"])
74
- s.add_dependency(%q<tilt>, [">= 2.0.2", "~> 2.0"])
75
- s.add_dependency(%q<bundler>, ["~> 1.10"])
76
- s.add_dependency(%q<flog>, ["~> 4.3"])
77
- s.add_dependency(%q<inch>, ["~> 0.7"])
78
- s.add_dependency(%q<jeweler>, ["~> 2.0"])
79
- s.add_dependency(%q<reek>, ["~> 3.7"])
80
- s.add_dependency(%q<roodi>, ["~> 5.0"])
81
- s.add_dependency(%q<rspec>, ["~> 3.4"])
82
- s.add_dependency(%q<rubocop>, ["~> 0.35"])
83
- s.add_dependency(%q<simplecov>, ["~> 0.11"])
84
- s.add_dependency(%q<yard>, ["~> 0.8"])
85
- end
86
- else
87
- s.add_dependency(%q<contracts>, [">= 0.13.0", "~> 0.13"])
88
- s.add_dependency(%q<erubis>, [">= 2.7.0", "~> 2.7"])
89
- s.add_dependency(%q<escort>, [">= 0.4.0", "~> 0.4"])
90
- s.add_dependency(%q<tilt>, [">= 2.0.2", "~> 2.0"])
91
- s.add_dependency(%q<bundler>, ["~> 1.10"])
92
- s.add_dependency(%q<flog>, ["~> 4.3"])
93
- s.add_dependency(%q<inch>, ["~> 0.7"])
94
- s.add_dependency(%q<jeweler>, ["~> 2.0"])
95
- s.add_dependency(%q<reek>, ["~> 3.7"])
96
- s.add_dependency(%q<roodi>, ["~> 5.0"])
97
- s.add_dependency(%q<rspec>, ["~> 3.4"])
98
- s.add_dependency(%q<rubocop>, ["~> 0.35"])
99
- s.add_dependency(%q<simplecov>, ["~> 0.11"])
100
- s.add_dependency(%q<yard>, ["~> 0.8"])
101
- end
102
- end
16
+ gem.files = `git ls-files -z`.split("\x0")
17
+ gem.test_files = `git ls-files -z -- {test,spec,features}/*`.split("\x0")
18
+ gem.executables = `git ls-files -z -- bin/*`.split("\x0").map { |f| File.basename(f) }
19
+
20
+ gem.require_paths = ['lib']
103
21
 
22
+ gem.add_runtime_dependency 'contracts', '~> 0.13', '>= 0.13.0'
23
+ gem.add_runtime_dependency 'erubis', '~> 2.7', '>= 2.7.0'
24
+ gem.add_runtime_dependency 'escort', '~> 0.4', '>= 0.4.0'
25
+ gem.add_runtime_dependency 'tilt', '~> 2.0', '>= 2.0.2'
26
+ end
@@ -0,0 +1,25 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIENDCCApygAwIBAgIBATANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdjaHJp
3
+ cy9EQz1vbHN0cm9tL0RDPWNvbTAeFw0xODAzMTUxODMxMTdaFw0xOTAzMTUxODMx
4
+ MTdaMCIxIDAeBgNVBAMMF2NocmlzL0RDPW9sc3Ryb20vREM9Y29tMIIBojANBgkq
5
+ hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAp31YmQvpMuQSlgX22B++/rxl4p4LYyaq
6
+ cDDbi8DBro9cm2H60lbpCuAUALiED2CagZEK0vel5W8AnZhhns0OEYAlpQtBSJtN
7
+ 8P/jlNYruuY26aVhfHfyA5j1n7tVecJz3i/awEPGC3zuTfvUq7Ahn5czOy+hIm4M
8
+ epee881dqnJlXjzTX/TKFYQa9tYj4bhsjfJOV+EDMcao/DE3vmNcBKH8XFVv/wQe
9
+ MGC7VY5zBwow00AkCicNmIr0Psy5hLvqphJ/E3Eiu4UpXhiBfM0z7xiBPoPMBqOx
10
+ r1RzgfKm/JbDO7leFmrEi8hLofyMmbuGvrSTE274vS4EnKaW6OtK7QM5R+jOJZbd
11
+ 67KUgSw+LdHNwu8xCuuQOdKPeSfWdNz94KAdczjzHdXUl/SpfmTuN/D+BCZjTxSo
12
+ F1kACSU6uGTBFKZy35XK+yqeny/1l6xRs6j+cON+LSRMKYSt7jdLcKQVk5wH2xLo
13
+ 83njwnumFxKhiWu0oaT5dlDCtyYM85j9AgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYD
14
+ VR0PBAQDAgSwMB0GA1UdDgQWBBQEd3/D0MMj9FHhMZk0QJDlrUtKaTAcBgNVHREE
15
+ FTATgRFjaHJpc0BvbHN0cm9tLmNvbTAcBgNVHRIEFTATgRFjaHJpc0BvbHN0cm9t
16
+ LmNvbTANBgkqhkiG9w0BAQsFAAOCAYEALritM5RkGNZ7cs8hlljSEyuwJrbJYOSX
17
+ 6p1S0D83GlfGZ/5XABy1p4EGQjxiAYuDrnnIw6GLHpgxFEtUNvyNYVfAa6u6yz4Y
18
+ nEjbEF76zAAxoRfivDApGJ3G9wuZ14cHZswFJppf2N4RG14F8bfLtU1OMYDLw8eK
19
+ QJOpynqHtrSj+FfsyNb6d93K8rlNCEd4UHkdRH1m7VnG6M18HvkbQCRMJtOFg/3j
20
+ c66TgdClDMJJXXiktVinfsmpTwxe2IzjGvwo2CZ/S53WPU/jb4uQMUzY0tMw48rl
21
+ S07/1DQNogstTnLYueqkUS1PYEwtavKVnpAtnaOdf0rJ/Rk4hA36BRgAVyQrp0uu
22
+ mSbo3NCvepJNYsTOUM+Df421VuPq713JV0aJDqltyfPptTM7fmNMcukbRh0aRuMT
23
+ EIKh6yDoB+oCRuiTV0uw/lKE2PtbONhJb7uN1qhZqla/iBpmUjiEu8+skI+ygv9n
24
+ 7Krw8FJrV3+VRCiZTPKHeshAfL9yeIZh
25
+ -----END CERTIFICATE-----
metadata CHANGED
@@ -1,250 +1,133 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quickstart
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Olstrom
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain: []
11
- date: 2016-03-09 00:00:00.000000000 Z
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIENDCCApygAwIBAgIBATANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdjaHJp
14
+ cy9EQz1vbHN0cm9tL0RDPWNvbTAeFw0xODAzMTUxODMxMTdaFw0xOTAzMTUxODMx
15
+ MTdaMCIxIDAeBgNVBAMMF2NocmlzL0RDPW9sc3Ryb20vREM9Y29tMIIBojANBgkq
16
+ hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAp31YmQvpMuQSlgX22B++/rxl4p4LYyaq
17
+ cDDbi8DBro9cm2H60lbpCuAUALiED2CagZEK0vel5W8AnZhhns0OEYAlpQtBSJtN
18
+ 8P/jlNYruuY26aVhfHfyA5j1n7tVecJz3i/awEPGC3zuTfvUq7Ahn5czOy+hIm4M
19
+ epee881dqnJlXjzTX/TKFYQa9tYj4bhsjfJOV+EDMcao/DE3vmNcBKH8XFVv/wQe
20
+ MGC7VY5zBwow00AkCicNmIr0Psy5hLvqphJ/E3Eiu4UpXhiBfM0z7xiBPoPMBqOx
21
+ r1RzgfKm/JbDO7leFmrEi8hLofyMmbuGvrSTE274vS4EnKaW6OtK7QM5R+jOJZbd
22
+ 67KUgSw+LdHNwu8xCuuQOdKPeSfWdNz94KAdczjzHdXUl/SpfmTuN/D+BCZjTxSo
23
+ F1kACSU6uGTBFKZy35XK+yqeny/1l6xRs6j+cON+LSRMKYSt7jdLcKQVk5wH2xLo
24
+ 83njwnumFxKhiWu0oaT5dlDCtyYM85j9AgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYD
25
+ VR0PBAQDAgSwMB0GA1UdDgQWBBQEd3/D0MMj9FHhMZk0QJDlrUtKaTAcBgNVHREE
26
+ FTATgRFjaHJpc0BvbHN0cm9tLmNvbTAcBgNVHRIEFTATgRFjaHJpc0BvbHN0cm9t
27
+ LmNvbTANBgkqhkiG9w0BAQsFAAOCAYEALritM5RkGNZ7cs8hlljSEyuwJrbJYOSX
28
+ 6p1S0D83GlfGZ/5XABy1p4EGQjxiAYuDrnnIw6GLHpgxFEtUNvyNYVfAa6u6yz4Y
29
+ nEjbEF76zAAxoRfivDApGJ3G9wuZ14cHZswFJppf2N4RG14F8bfLtU1OMYDLw8eK
30
+ QJOpynqHtrSj+FfsyNb6d93K8rlNCEd4UHkdRH1m7VnG6M18HvkbQCRMJtOFg/3j
31
+ c66TgdClDMJJXXiktVinfsmpTwxe2IzjGvwo2CZ/S53WPU/jb4uQMUzY0tMw48rl
32
+ S07/1DQNogstTnLYueqkUS1PYEwtavKVnpAtnaOdf0rJ/Rk4hA36BRgAVyQrp0uu
33
+ mSbo3NCvepJNYsTOUM+Df421VuPq713JV0aJDqltyfPptTM7fmNMcukbRh0aRuMT
34
+ EIKh6yDoB+oCRuiTV0uw/lKE2PtbONhJb7uN1qhZqla/iBpmUjiEu8+skI+ygv9n
35
+ 7Krw8FJrV3+VRCiZTPKHeshAfL9yeIZh
36
+ -----END CERTIFICATE-----
37
+ date: 2018-03-16 00:00:00.000000000 Z
12
38
  dependencies:
13
39
  - !ruby/object:Gem::Dependency
14
40
  name: contracts
15
41
  requirement: !ruby/object:Gem::Requirement
16
42
  requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: 0.13.0
20
43
  - - "~>"
21
44
  - !ruby/object:Gem::Version
22
45
  version: '0.13'
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: 0.13.0
23
49
  type: :runtime
24
50
  prerelease: false
25
51
  version_requirements: !ruby/object:Gem::Requirement
26
52
  requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- version: 0.13.0
30
53
  - - "~>"
31
54
  - !ruby/object:Gem::Version
32
55
  version: '0.13'
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: 0.13.0
33
59
  - !ruby/object:Gem::Dependency
34
60
  name: erubis
35
61
  requirement: !ruby/object:Gem::Requirement
36
62
  requirements:
37
- - - ">="
38
- - !ruby/object:Gem::Version
39
- version: 2.7.0
40
63
  - - "~>"
41
64
  - !ruby/object:Gem::Version
42
65
  version: '2.7'
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 2.7.0
43
69
  type: :runtime
44
70
  prerelease: false
45
71
  version_requirements: !ruby/object:Gem::Requirement
46
72
  requirements:
47
- - - ">="
48
- - !ruby/object:Gem::Version
49
- version: 2.7.0
50
73
  - - "~>"
51
74
  - !ruby/object:Gem::Version
52
75
  version: '2.7'
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: 2.7.0
53
79
  - !ruby/object:Gem::Dependency
54
80
  name: escort
55
81
  requirement: !ruby/object:Gem::Requirement
56
82
  requirements:
57
- - - ">="
58
- - !ruby/object:Gem::Version
59
- version: 0.4.0
60
83
  - - "~>"
61
84
  - !ruby/object:Gem::Version
62
85
  version: '0.4'
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: 0.4.0
63
89
  type: :runtime
64
90
  prerelease: false
65
91
  version_requirements: !ruby/object:Gem::Requirement
66
92
  requirements:
67
- - - ">="
68
- - !ruby/object:Gem::Version
69
- version: 0.4.0
70
93
  - - "~>"
71
94
  - !ruby/object:Gem::Version
72
95
  version: '0.4'
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: 0.4.0
73
99
  - !ruby/object:Gem::Dependency
74
100
  name: tilt
75
101
  requirement: !ruby/object:Gem::Requirement
76
102
  requirements:
77
- - - ">="
78
- - !ruby/object:Gem::Version
79
- version: 2.0.2
80
103
  - - "~>"
81
104
  - !ruby/object:Gem::Version
82
105
  version: '2.0'
83
- type: :runtime
84
- prerelease: false
85
- version_requirements: !ruby/object:Gem::Requirement
86
- requirements:
87
106
  - - ">="
88
107
  - !ruby/object:Gem::Version
89
108
  version: 2.0.2
90
- - - "~>"
91
- - !ruby/object:Gem::Version
92
- version: '2.0'
93
- - !ruby/object:Gem::Dependency
94
- name: bundler
95
- requirement: !ruby/object:Gem::Requirement
96
- requirements:
97
- - - "~>"
98
- - !ruby/object:Gem::Version
99
- version: '1.10'
100
- type: :development
101
- prerelease: false
102
- version_requirements: !ruby/object:Gem::Requirement
103
- requirements:
104
- - - "~>"
105
- - !ruby/object:Gem::Version
106
- version: '1.10'
107
- - !ruby/object:Gem::Dependency
108
- name: flog
109
- requirement: !ruby/object:Gem::Requirement
110
- requirements:
111
- - - "~>"
112
- - !ruby/object:Gem::Version
113
- version: '4.3'
114
- type: :development
115
- prerelease: false
116
- version_requirements: !ruby/object:Gem::Requirement
117
- requirements:
118
- - - "~>"
119
- - !ruby/object:Gem::Version
120
- version: '4.3'
121
- - !ruby/object:Gem::Dependency
122
- name: inch
123
- requirement: !ruby/object:Gem::Requirement
124
- requirements:
125
- - - "~>"
126
- - !ruby/object:Gem::Version
127
- version: '0.7'
128
- type: :development
129
- prerelease: false
130
- version_requirements: !ruby/object:Gem::Requirement
131
- requirements:
132
- - - "~>"
133
- - !ruby/object:Gem::Version
134
- version: '0.7'
135
- - !ruby/object:Gem::Dependency
136
- name: jeweler
137
- requirement: !ruby/object:Gem::Requirement
138
- requirements:
139
- - - "~>"
140
- - !ruby/object:Gem::Version
141
- version: '2.0'
142
- type: :development
109
+ type: :runtime
143
110
  prerelease: false
144
111
  version_requirements: !ruby/object:Gem::Requirement
145
112
  requirements:
146
113
  - - "~>"
147
114
  - !ruby/object:Gem::Version
148
115
  version: '2.0'
149
- - !ruby/object:Gem::Dependency
150
- name: reek
151
- requirement: !ruby/object:Gem::Requirement
152
- requirements:
153
- - - "~>"
154
- - !ruby/object:Gem::Version
155
- version: '3.7'
156
- type: :development
157
- prerelease: false
158
- version_requirements: !ruby/object:Gem::Requirement
159
- requirements:
160
- - - "~>"
161
- - !ruby/object:Gem::Version
162
- version: '3.7'
163
- - !ruby/object:Gem::Dependency
164
- name: roodi
165
- requirement: !ruby/object:Gem::Requirement
166
- requirements:
167
- - - "~>"
168
- - !ruby/object:Gem::Version
169
- version: '5.0'
170
- type: :development
171
- prerelease: false
172
- version_requirements: !ruby/object:Gem::Requirement
173
- requirements:
174
- - - "~>"
175
- - !ruby/object:Gem::Version
176
- version: '5.0'
177
- - !ruby/object:Gem::Dependency
178
- name: rspec
179
- requirement: !ruby/object:Gem::Requirement
180
- requirements:
181
- - - "~>"
182
- - !ruby/object:Gem::Version
183
- version: '3.4'
184
- type: :development
185
- prerelease: false
186
- version_requirements: !ruby/object:Gem::Requirement
187
- requirements:
188
- - - "~>"
189
- - !ruby/object:Gem::Version
190
- version: '3.4'
191
- - !ruby/object:Gem::Dependency
192
- name: rubocop
193
- requirement: !ruby/object:Gem::Requirement
194
- requirements:
195
- - - "~>"
196
- - !ruby/object:Gem::Version
197
- version: '0.35'
198
- type: :development
199
- prerelease: false
200
- version_requirements: !ruby/object:Gem::Requirement
201
- requirements:
202
- - - "~>"
203
- - !ruby/object:Gem::Version
204
- version: '0.35'
205
- - !ruby/object:Gem::Dependency
206
- name: simplecov
207
- requirement: !ruby/object:Gem::Requirement
208
- requirements:
209
- - - "~>"
210
- - !ruby/object:Gem::Version
211
- version: '0.11'
212
- type: :development
213
- prerelease: false
214
- version_requirements: !ruby/object:Gem::Requirement
215
- requirements:
216
- - - "~>"
217
- - !ruby/object:Gem::Version
218
- version: '0.11'
219
- - !ruby/object:Gem::Dependency
220
- name: yard
221
- requirement: !ruby/object:Gem::Requirement
222
- requirements:
223
- - - "~>"
224
- - !ruby/object:Gem::Version
225
- version: '0.8'
226
- type: :development
227
- prerelease: false
228
- version_requirements: !ruby/object:Gem::Requirement
229
- requirements:
230
- - - "~>"
116
+ - - ">="
231
117
  - !ruby/object:Gem::Version
232
- version: '0.8'
233
- description: Quickstart helps you start your next project, quickly.
118
+ version: 2.0.2
119
+ description:
234
120
  email: chris@olstrom.com
235
121
  executables:
236
122
  - quickstart
237
123
  extensions: []
238
- extra_rdoc_files:
239
- - LICENSE
240
- - README.md
124
+ extra_rdoc_files: []
241
125
  files:
126
+ - ".gitignore"
242
127
  - Gemfile
243
- - Gemfile.lock
244
- - LICENSE
245
- - README.md
128
+ - LICENSE.txt
129
+ - README.org
246
130
  - Rakefile
247
- - VERSION
248
131
  - bin/quickstart
249
132
  - doc/examples/gem/.document
250
133
  - doc/examples/gem/.gitignore
@@ -262,7 +145,8 @@ files:
262
145
  - quickstart.gemspec
263
146
  - spec/quickstart_spec.rb
264
147
  - spec/spec_helper.rb
265
- homepage: http://github.com/colstrom/quickstart
148
+ - trust/certificates/colstrom.pem
149
+ homepage: https://github.com/colstrom/quickstart
266
150
  licenses:
267
151
  - MIT
268
152
  metadata: {}
@@ -282,9 +166,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
282
166
  version: '0'
283
167
  requirements: []
284
168
  rubyforge_project:
285
- rubygems_version: 2.5.1
169
+ rubygems_version: 2.7.6
286
170
  signing_key:
287
171
  specification_version: 4
288
172
  summary: Template-driven scaffolding.
289
- test_files: []
290
- has_rdoc:
173
+ test_files:
174
+ - spec/quickstart_spec.rb
175
+ - spec/spec_helper.rb
Binary file
@@ -1,152 +0,0 @@
1
- GEM
2
- remote: https://rubygems.org/
3
- specs:
4
- addressable (2.4.0)
5
- ast (2.2.0)
6
- axiom-types (0.1.1)
7
- descendants_tracker (~> 0.0.4)
8
- ice_nine (~> 0.11.0)
9
- thread_safe (~> 0.3, >= 0.3.1)
10
- builder (3.2.2)
11
- codeclimate-engine-rb (0.3.1)
12
- virtus (~> 1.0)
13
- coderay (1.1.1)
14
- coercible (1.0.0)
15
- descendants_tracker (~> 0.0.1)
16
- contracts (0.13.0)
17
- descendants_tracker (0.0.4)
18
- thread_safe (~> 0.3, >= 0.3.1)
19
- diff-lcs (1.2.5)
20
- docile (1.1.5)
21
- equalizer (0.0.11)
22
- erubis (2.7.0)
23
- escort (0.4.0)
24
- nesty
25
- faraday (0.9.2)
26
- multipart-post (>= 1.2, < 3)
27
- flog (4.3.2)
28
- ruby_parser (~> 3.1, > 3.1.0)
29
- sexp_processor (~> 4.4)
30
- git (1.3.0)
31
- github_api (0.13.1)
32
- addressable (~> 2.4.0)
33
- descendants_tracker (~> 0.0.4)
34
- faraday (~> 0.8, < 0.10)
35
- hashie (>= 3.4)
36
- multi_json (>= 1.7.5, < 2.0)
37
- oauth2
38
- hashie (3.4.3)
39
- highline (1.7.8)
40
- ice_nine (0.11.2)
41
- inch (0.7.1)
42
- pry
43
- sparkr (>= 0.2.0)
44
- term-ansicolor
45
- yard (~> 0.8.7.5)
46
- jeweler (2.0.1)
47
- builder
48
- bundler (>= 1.0)
49
- git (>= 1.2.5)
50
- github_api
51
- highline (>= 1.6.15)
52
- nokogiri (>= 1.5.10)
53
- rake
54
- rdoc
55
- json (1.8.3)
56
- jwt (1.5.1)
57
- method_source (0.8.2)
58
- mini_portile2 (2.0.0)
59
- multi_json (1.11.2)
60
- multi_xml (0.5.5)
61
- multipart-post (2.0.0)
62
- nesty (1.0.2)
63
- nokogiri (1.6.7.2)
64
- mini_portile2 (~> 2.0.0.rc2)
65
- oauth2 (1.1.0)
66
- faraday (>= 0.8, < 0.10)
67
- jwt (~> 1.0, < 1.5.2)
68
- multi_json (~> 1.3)
69
- multi_xml (~> 0.5)
70
- rack (>= 1.2, < 3)
71
- parser (2.3.0.6)
72
- ast (~> 2.2)
73
- powerpack (0.1.1)
74
- pry (0.10.3)
75
- coderay (~> 1.1.0)
76
- method_source (~> 0.8.1)
77
- slop (~> 3.4)
78
- rack (1.6.4)
79
- rainbow (2.1.0)
80
- rake (10.5.0)
81
- rdoc (4.2.2)
82
- json (~> 1.4)
83
- reek (3.11)
84
- codeclimate-engine-rb (~> 0.3.1)
85
- parser (~> 2.3, >= 2.3.0.6)
86
- rainbow (~> 2.0)
87
- roodi (5.0.0)
88
- ruby_parser (~> 3.2, >= 3.2.2)
89
- rspec (3.4.0)
90
- rspec-core (~> 3.4.0)
91
- rspec-expectations (~> 3.4.0)
92
- rspec-mocks (~> 3.4.0)
93
- rspec-core (3.4.3)
94
- rspec-support (~> 3.4.0)
95
- rspec-expectations (3.4.0)
96
- diff-lcs (>= 1.2.0, < 2.0)
97
- rspec-support (~> 3.4.0)
98
- rspec-mocks (3.4.1)
99
- diff-lcs (>= 1.2.0, < 2.0)
100
- rspec-support (~> 3.4.0)
101
- rspec-support (3.4.1)
102
- rubocop (0.37.2)
103
- parser (>= 2.3.0.4, < 3.0)
104
- powerpack (~> 0.1)
105
- rainbow (>= 1.99.1, < 3.0)
106
- ruby-progressbar (~> 1.7)
107
- unicode-display_width (~> 0.3)
108
- ruby-progressbar (1.7.5)
109
- ruby_parser (3.8.1)
110
- sexp_processor (~> 4.1)
111
- sexp_processor (4.7.0)
112
- simplecov (0.11.2)
113
- docile (~> 1.1.0)
114
- json (~> 1.8)
115
- simplecov-html (~> 0.10.0)
116
- simplecov-html (0.10.0)
117
- slop (3.6.0)
118
- sparkr (0.4.1)
119
- term-ansicolor (1.3.2)
120
- tins (~> 1.0)
121
- thread_safe (0.3.5)
122
- tilt (2.0.2)
123
- tins (1.8.2)
124
- unicode-display_width (0.3.1)
125
- virtus (1.0.5)
126
- axiom-types (~> 0.1)
127
- coercible (~> 1.0)
128
- descendants_tracker (~> 0.0, >= 0.0.3)
129
- equalizer (~> 0.0, >= 0.0.9)
130
- yard (0.8.7.6)
131
-
132
- PLATFORMS
133
- ruby
134
-
135
- DEPENDENCIES
136
- bundler (~> 1.10)
137
- contracts (~> 0.13, >= 0.13.0)
138
- erubis (~> 2.7, >= 2.7.0)
139
- escort (~> 0.4, >= 0.4.0)
140
- flog (~> 4.3)
141
- inch (~> 0.7)
142
- jeweler (~> 2.0)
143
- reek (~> 3.7)
144
- roodi (~> 5.0)
145
- rspec (~> 3.4)
146
- rubocop (~> 0.35)
147
- simplecov (~> 0.11)
148
- tilt (~> 2.0, >= 2.0.2)
149
- yard (~> 0.8)
150
-
151
- BUNDLED WITH
152
- 1.11.2
data/LICENSE DELETED
@@ -1,20 +0,0 @@
1
- Copyright (c) 2015 Chris Olstrom
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md DELETED
@@ -1,35 +0,0 @@
1
- # QuickStart
2
-
3
- Installation
4
- ------------
5
- `gem install quickstart`
6
-
7
- Usage
8
- -----
9
- * Create a template directory
10
- * Set the environment variable `QUICKSTART_TEMPLATES` to that path.
11
- * Create one or more directories within `QUICKSTART_TEMPLATES`.
12
-
13
- `quickstart -t some_template --name some_name /path/to/output/to`
14
-
15
- Note
16
- ----
17
- All files in a template are parsed as ERB templates.
18
-
19
- Contributing to QuickStart
20
- ---------------
21
- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
22
- * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
23
- * Fork the project.
24
- * Start a feature/bugfix branch.
25
- * Commit and push until you are happy with your contribution.
26
- * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
27
- * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
28
-
29
- License
30
- -------
31
- [MIT](https://tldrlegal.com/license/mit-license)
32
-
33
- Contributors
34
- ------------
35
- * [Chris Olstrom](https://colstrom.github.io/) | [e-mail](mailto:chris@olstrom.com) | [Twitter](https://twitter.com/ChrisOlstrom)
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.8.2