origen_core_support 0.1.0 → 0.1.1
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/config/application.rb +1 -0
- data/config/environment.rb +3 -4
- data/config/shared_commands.rb +1 -4
- data/config/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 576606e8a4c3e5675737845ec7dd9d09e0b54301
|
|
4
|
+
data.tar.gz: e02e43cb80910c6965805a5eaf2dec60ed9ad1bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 089471107c4f2f8bea24e3c551de5176701fe0d5e372e4d03aa18dc7dbda8f3621cc783f1e5e235586edc0f9de754950fdd164f03af227e1a081d36e3d6634ac
|
|
7
|
+
data.tar.gz: 9ca3d025b35dbe304d7445bb642c8067d16e57dbdf47dbc45011ffccdb30a29dba3b660d3ef11b7245a9026d0a881fc195c692da81e2333cb6785449238da095
|
data/config/application.rb
CHANGED
|
@@ -12,6 +12,7 @@ class OrigenCoreSupportApplication < Origen::Application
|
|
|
12
12
|
#:templates => "templates",
|
|
13
13
|
#:programs => "program"
|
|
14
14
|
}
|
|
15
|
+
config.release_externally = true
|
|
15
16
|
|
|
16
17
|
# Versioning is based on a timestamp by default, if you would rather use semantic
|
|
17
18
|
# versioning, i.e. v1.0.0 format, then set this to true.
|
data/config/environment.rb
CHANGED
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
|
|
14
14
|
#autoload :Pioneer, "pioneer" # Only loads the file whenever Pioneer is referenced
|
|
15
15
|
#require "pioneer" # Loads the file always
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
require "c99/block"
|
|
16
|
+
require_relative "../lib/c99/soc"
|
|
17
|
+
require_relative "../lib/c99/nvm"
|
|
18
|
+
require_relative "../lib/c99/block"
|
data/config/shared_commands.rb
CHANGED
|
@@ -24,9 +24,6 @@ when "test"
|
|
|
24
24
|
# before handing control back to Origen. Un-comment the example below to get started.
|
|
25
25
|
else
|
|
26
26
|
@plugin_commands ||= []
|
|
27
|
-
@plugin_commands
|
|
28
|
-
[
|
|
29
|
-
" test Test command from plugin core_support plugin"
|
|
30
|
-
]
|
|
27
|
+
@plugin_commands << " test Test command from plugin core_support plugin"
|
|
31
28
|
end
|
|
32
29
|
|
data/config/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: origen_core_support
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen McGinty
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-07-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: origen
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 0.0.6
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
26
|
+
version: 0.0.6
|
|
27
27
|
description:
|
|
28
28
|
email:
|
|
29
29
|
- stephen.f.mcginty@gmail.com
|
|
@@ -63,8 +63,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
63
63
|
version: 1.8.11
|
|
64
64
|
requirements: []
|
|
65
65
|
rubyforge_project:
|
|
66
|
-
rubygems_version: 2.
|
|
66
|
+
rubygems_version: 2.4.8
|
|
67
67
|
signing_key:
|
|
68
68
|
specification_version: 4
|
|
69
69
|
summary: A simple plugin that is used to test the Origen SDK plugin system
|
|
70
70
|
test_files: []
|
|
71
|
+
has_rdoc:
|