origen 0.35.1 → 0.36.0
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/bin/origen +4 -0
- data/config/version.rb +2 -2
- data/lib/origen/model/exporter.rb +4 -2
- data/origen_site_config.yml +7 -0
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf61c021058415fdb5fe0aa76a1e66ed3c142803e1ebf29b4f3905ce4bbb1384
|
4
|
+
data.tar.gz: dcc822d38c0fcdeea4686729c285d50f1d4a6ed9d5a9e2065f2ac5423a66bf88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b68ce80e155cec23d5b6639f3037126eebf7da4bb9d19b4ce80616a48884f6f2fe7ada074c2e9080d21341e95b801f2b439886d00cf69afd6a58e3ffbb9345d
|
7
|
+
data.tar.gz: d6544cd0270caa0e71161a1a12e0231409fc60a7395387dac05811c1ca602b686ceb688d40d4b43cab00c990a70f6c7bdf71cf756c802aed2d27b54c21492c9d
|
data/bin/origen
CHANGED
@@ -170,6 +170,10 @@ if origen_root && File.exist?(ENV['BUNDLE_GEMFILE']) && Origen.site_config.gem_m
|
|
170
170
|
end
|
171
171
|
end
|
172
172
|
require 'bundler/setup'
|
173
|
+
if Origen.site_config.use_bootsnap && !Origen.os.windows?
|
174
|
+
ENV["BOOTSNAP_CACHE_DIR"] ||= "#{origen_root}/tmp/cache"
|
175
|
+
require 'bootsnap/setup'
|
176
|
+
end
|
173
177
|
require 'origen'
|
174
178
|
else
|
175
179
|
$LOAD_PATH.unshift "#{File.expand_path(File.dirname(__FILE__))}/../lib"
|
data/config/version.rb
CHANGED
@@ -261,8 +261,10 @@ module Origen
|
|
261
261
|
unless bits.access == :rw
|
262
262
|
line << ", access: :#{bits.access}"
|
263
263
|
end
|
264
|
-
|
265
|
-
line << ", reset:
|
264
|
+
if bits.reset_val.is_a?(Symbol)
|
265
|
+
line << ", reset: :#{bits.reset_val}"
|
266
|
+
else
|
267
|
+
line << ", reset: #{bits.reset_val.to_hex}" unless bits.reset_val == 0
|
266
268
|
end
|
267
269
|
lines << line
|
268
270
|
end
|
data/origen_site_config.yml
CHANGED
@@ -21,6 +21,13 @@
|
|
21
21
|
# user (recommended)
|
22
22
|
gem_manage_bundler: true
|
23
23
|
|
24
|
+
# Use the bootsnap gem (https://github.com/Shopify/bootsnap) to speed up the boot time of
|
25
|
+
# your Origen applications.
|
26
|
+
# This creates an offline cache in your app's tmp/cache directory and it can also increase
|
27
|
+
# the memory consumption of your app. As a reward, your app will load Ruby files significantly
|
28
|
+
# faster, often taking many seconds off the time it takes your app to start up.
|
29
|
+
use_bootsnap: true
|
30
|
+
|
24
31
|
# WORKSPACE DIRECTORY SETUP
|
25
32
|
|
26
33
|
# Defines where the home directory is
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: origen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.36.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen McGinty
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -360,6 +360,20 @@ dependencies:
|
|
360
360
|
- - "~>"
|
361
361
|
- !ruby/object:Gem::Version
|
362
362
|
version: 2.10.0
|
363
|
+
- !ruby/object:Gem::Dependency
|
364
|
+
name: bootsnap
|
365
|
+
requirement: !ruby/object:Gem::Requirement
|
366
|
+
requirements:
|
367
|
+
- - ">="
|
368
|
+
- !ruby/object:Gem::Version
|
369
|
+
version: 1.3.2
|
370
|
+
type: :runtime
|
371
|
+
prerelease: false
|
372
|
+
version_requirements: !ruby/object:Gem::Requirement
|
373
|
+
requirements:
|
374
|
+
- - ">="
|
375
|
+
- !ruby/object:Gem::Version
|
376
|
+
version: 1.3.2
|
363
377
|
description:
|
364
378
|
email:
|
365
379
|
- stephen.f.mcginty@gmail.com
|