dopstick 0.0.5 → 0.0.6
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 17fe9695f451b433549bf25b5d8d5484388771739fc32333c4d3a4a6bcfa9348
|
|
4
|
+
data.tar.gz: 4791e172a00147a6e7e920eff00e15b26c6ec73d3964a4854e91847989049da3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65edec1f5c5d373b5ead2dd1631fe4b5638cd396a11d10ad727e35ac6fc8f010134a06f9fb0c4b27b4b95ef62fb9d4556abfe2123252e3d933a07a36348065f1
|
|
7
|
+
data.tar.gz: df7abe336abf35acaea9cc3e295cd547a5c376f448ffe80e9862d909d78b15d3ad300930c376c50c0a0ee2d5f3415b9a18b595ec75e9ff2ee94a7752aaf86ada
|
data/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,11 @@ Prefix your message with one of the following:
|
|
|
11
11
|
- [Security] in case of vulnerabilities.
|
|
12
12
|
-->
|
|
13
13
|
|
|
14
|
+
## Unreleased
|
|
15
|
+
|
|
16
|
+
- [Fixed] Babel loader's order is backwards, so TypeScript first, then
|
|
17
|
+
JavaScript.
|
|
18
|
+
|
|
14
19
|
## v0.0.5 - 2020-11-14
|
|
15
20
|
|
|
16
21
|
- [Fixed] Jest configuration wasn't considering the full import path.
|
data/dopstick.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ["Nando Vieira"]
|
|
9
9
|
spec.email = ["me@fnando.com"]
|
|
10
10
|
|
|
11
|
-
spec.summary = "Generate a project skeleton for creating a Ruby/
|
|
11
|
+
spec.summary = "Generate a project skeleton for creating a Ruby/NPM " \
|
|
12
12
|
"package."
|
|
13
13
|
spec.description = spec.summary
|
|
14
14
|
spec.license = "MIT"
|
|
@@ -111,7 +111,7 @@ module Dopstick
|
|
|
111
111
|
end
|
|
112
112
|
|
|
113
113
|
no_commands do
|
|
114
|
-
def render_tree(skip_content_spaces = false
|
|
114
|
+
def render_tree(skip_content_spaces = false)
|
|
115
115
|
content = []
|
|
116
116
|
|
|
117
117
|
options.namespace_names.each_with_index do |name, count|
|
|
@@ -120,7 +120,7 @@ module Dopstick
|
|
|
120
120
|
|
|
121
121
|
spacer = skip_content_spaces ? "" : " "
|
|
122
122
|
|
|
123
|
-
content << (spacer * options.namespace_size) +
|
|
123
|
+
content << (spacer * options.namespace_size) + yield
|
|
124
124
|
|
|
125
125
|
(options.namespace_size - 1).downto(0) do |count|
|
|
126
126
|
content << "#{' ' * count}end"
|
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.required_ruby_version = Gem::Requirement.new(">= <%= options.oldest_ruby_version %>")
|
|
15
15
|
|
|
16
16
|
github_url = <%= options.github_url.inspect %>
|
|
17
|
-
github_tree_url = "#{
|
|
17
|
+
github_tree_url = "#{github_url}/tree/v#{spec.version}"
|
|
18
18
|
|
|
19
19
|
spec.homepage = github_url
|
|
20
20
|
spec.metadata["homepage_uri"] = spec.homepage
|
data/lib/dopstick/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dopstick
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nando Vieira
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-12-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -122,7 +122,7 @@ dependencies:
|
|
|
122
122
|
- - ">="
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '0'
|
|
125
|
-
description: Generate a project skeleton for creating a Ruby/
|
|
125
|
+
description: Generate a project skeleton for creating a Ruby/NPM package.
|
|
126
126
|
email:
|
|
127
127
|
- me@fnando.com
|
|
128
128
|
executables:
|
|
@@ -208,10 +208,10 @@ licenses:
|
|
|
208
208
|
metadata:
|
|
209
209
|
homepage_uri: https://github.com/fnando/dopstick
|
|
210
210
|
bug_tracker_uri: https://github.com/fnando/dopstick/issues
|
|
211
|
-
source_code_uri: https://github.com/fnando/dopstick/tree/v0.0.
|
|
212
|
-
changelog_uri: https://github.com/fnando/dopstick/tree/v0.0.
|
|
213
|
-
documentation_uri: https://github.com/fnando/dopstick/tree/v0.0.
|
|
214
|
-
license_uri: https://github.com/fnando/dopstick/tree/v0.0.
|
|
211
|
+
source_code_uri: https://github.com/fnando/dopstick/tree/v0.0.6
|
|
212
|
+
changelog_uri: https://github.com/fnando/dopstick/tree/v0.0.6/CHANGELOG.md
|
|
213
|
+
documentation_uri: https://github.com/fnando/dopstick/tree/v0.0.6/README.md
|
|
214
|
+
license_uri: https://github.com/fnando/dopstick/tree/v0.0.6/LICENSE.md
|
|
215
215
|
post_install_message:
|
|
216
216
|
rdoc_options: []
|
|
217
217
|
require_paths:
|
|
@@ -230,5 +230,5 @@ requirements: []
|
|
|
230
230
|
rubygems_version: 3.1.4
|
|
231
231
|
signing_key:
|
|
232
232
|
specification_version: 4
|
|
233
|
-
summary: Generate a project skeleton for creating a Ruby/
|
|
233
|
+
summary: Generate a project skeleton for creating a Ruby/NPM package.
|
|
234
234
|
test_files: []
|