lono 7.2.2 → 7.2.3
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/lono/configset/strategy/base.rb +1 -1
- data/lib/lono/version.rb +1 -1
- data/lib/templates/blueprint/%blueprint_name%.gemspec.tt +3 -4
- data/lib/templates/configset/Gemfile +1 -1
- data/lib/templates/extension/%extension_name%.gemspec.tt +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93d21105409fe3d2c1173d636bc7b852c7a02d7846422e6688b064babd591b08
|
|
4
|
+
data.tar.gz: 9e38baab88bb7604187e80e5b6c2071ed52df1bc81762e40885190c19ac088f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a0c0b478ca67fc90289fa0e96bc212f75ffc6b22c6dbd92bc10a80eedf7b3198bd328b75e93ea877622c2d0cd205b3b19ab2eb23442c065ae537e64673ba577
|
|
7
|
+
data.tar.gz: d58eb137d8faf09aef321b413de9a2179858da95a34b3c38861c6ab8ef91c8517599efde1efff432af0c0f1e6a66b2005fc6bd5bfc2a7e745bc5d2c771760466
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [7.2.3]
|
|
7
|
+
- #53 improve configset lookup path lookup
|
|
8
|
+
- cleanup starter blueprint
|
|
9
|
+
|
|
6
10
|
## [7.2.2]
|
|
7
11
|
- #52 configset: content_file helper
|
|
8
12
|
|
|
@@ -41,7 +41,7 @@ module Lono::Configset::Strategy
|
|
|
41
41
|
def load_project_predefined_variables
|
|
42
42
|
paths = [
|
|
43
43
|
"#{Lono.root}/configs/#{@blueprint}/configsets/variables.rb", # global
|
|
44
|
-
"#{Lono.root}/configs/#{@blueprint}/configsets/#{@configset}
|
|
44
|
+
"#{Lono.root}/configs/#{@blueprint}/configsets/variables/#{@configset}.rb", # configset specific
|
|
45
45
|
]
|
|
46
46
|
paths.each do |path|
|
|
47
47
|
evaluate_file(path)
|
data/lib/lono/version.rb
CHANGED
|
@@ -10,18 +10,17 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.summary = "Write a short summary because it's required." # TODO: Change me
|
|
11
11
|
spec.description = "Write a longer description or delete this line." # TODO: Change me
|
|
12
12
|
spec.homepage = "<%= ENV['LONO_ORG'] || "https://github.com/USER" %>/<%= blueprint_name %>"
|
|
13
|
-
spec.license = "<%= ENV['LONO_LICENSE'] || '' %>"
|
|
13
|
+
spec.license = "<%= ENV['LONO_LICENSE'] || 'Nonstandard' %>"
|
|
14
14
|
|
|
15
15
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
16
16
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
17
17
|
if spec.respond_to?(:metadata)
|
|
18
18
|
spec.metadata["lono_type"] = "blueprint"
|
|
19
|
-
<% if @options[:type] != "dsl"
|
|
19
|
+
<% if @options[:type] != "dsl" -%>
|
|
20
20
|
spec.metadata["lono_strategy"] = "erb"
|
|
21
|
-
<% end
|
|
21
|
+
<% end -%>
|
|
22
22
|
|
|
23
23
|
spec.metadata["allowed_push_host"] = "<%= ENV['LONO_ALLOWED_PUSH_HOST'] || "TODO: Set to 'http://mygemserver.com'"%>"
|
|
24
|
-
|
|
25
24
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
26
25
|
<% if ENV['LONO_ORG'] -%>
|
|
27
26
|
spec.metadata["source_code_uri"] = "<%= ENV['LONO_ORG'] %>/<%= blueprint_name %>"
|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["<%= ENV['LONO_EMAIL'] || user_info[:email] %>"]
|
|
11
11
|
spec.summary = "Lono extension: <%= extension_name %>"
|
|
12
12
|
spec.homepage = "<%= ENV['LONO_ORG'] || "https://github.com/USER" %>/<%= extension_name %>"
|
|
13
|
-
spec.license = "<%= ENV['LONO_LICENSE'] || '
|
|
13
|
+
spec.license = "<%= ENV['LONO_LICENSE'] || 'Nonstandard' %>"
|
|
14
14
|
|
|
15
15
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
16
16
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lono
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.2.
|
|
4
|
+
version: 7.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-03-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|