origen 0.52.2 → 0.52.3

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
2
  SHA256:
3
- metadata.gz: 14dd86e4cf7d0c68da3c17a12039a0c21940ee18bcc626e2e7760d579a2d0de4
4
- data.tar.gz: c89c653091efcaac225fe571ad0b7bca95571d5eb9a3422baff4eb1d93c8ac61
3
+ metadata.gz: 6b900b1cea172703c5a4057a93b35ccb5f85305972b05b1939fa4a793553a98d
4
+ data.tar.gz: 5bc67cfa0fd368351600ec6e11f7ad927825ad604e1ed02c555441c1ffde8ddb
5
5
  SHA512:
6
- metadata.gz: fd653255d19b1d2ba30eeeffa4644492d139820482922ccdb6b87b331ae53bf802f540b137d292544cdab8e696458b6fdc04f05841af499a5f81eb3d10e5aaa9
7
- data.tar.gz: 8a92fada1cf959389ea888185b4a135f6aa052ce1fa8c17772bdc96577638fc712880e9260f8f80d2b6db519eb6a5c9ae1ab69d752753b989674c7c3d0fdd4f1
6
+ metadata.gz: ab397dafe249184e5d64115f06451a5ff3dab3a6688dc243e85e23a55075d8b14685cac0f7f2cea62827aa2bbd9abd69232697e121833ad060b4c0ff4d421ac6
7
+ data.tar.gz: 878c11b33cbfa5f9e0a4d584a7a7058dddf905168a1f54397f2e5e8967875f558430a9cce744bf0e25a80998d9911ea1194be151e82be2f27e4d38429af51916
@@ -40,7 +40,7 @@ class OrigenCoreApplication < Origen::Application
40
40
 
41
41
  config.web_directory = "https://github.com/Origen-SDK/Origen-SDK.github.io.git/origen"
42
42
  #config.web_directory = "git@github.com:Origen-SDK/Origen-SDK.github.io.git/origen"
43
- config.web_domain = "http://origen-sdk.org/origen"
43
+ config.web_domain = "https://origen-sdk.org/origen"
44
44
 
45
45
  config.pattern_prefix = "nvm"
46
46
 
@@ -1,7 +1,7 @@
1
1
  module Origen
2
2
  MAJOR = 0
3
3
  MINOR = 52
4
- BUGFIX = 2
4
+ BUGFIX = 3
5
5
  DEV = nil
6
6
  VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '')
7
7
  end
@@ -68,7 +68,7 @@ module Origen
68
68
  end
69
69
 
70
70
  # Returns any path attached to the domain, for example will return "/jtag"
71
- # for "http://origen-sdk.org/jtag"
71
+ # for "https://origen-sdk.org/jtag"
72
72
  def root_path # :nodoc:
73
73
  if domain =~ /\/\/[^\/]*(\/.*)/ # http://rubular.com/r/UY06Z6DXUS
74
74
  $1
@@ -21,7 +21,7 @@ generators regardless of the base Origen version that this command is being laun
21
21
 
22
22
  See the website for more details:
23
23
 
24
- http://origen-sdk.org/origen_app_generators
24
+ https://origen-sdk.org/origen_app_generators
25
25
 
26
26
  Usage: origen new [APP_NAME] [options]
27
27
  END
@@ -165,7 +165,7 @@ module Origen
165
165
 
166
166
  # Returns a private global Origen session store (stored in the user's home directory and only readable
167
167
  # by them).
168
- # See - http://origen-sdk.org/origen/guides/misc/session/#Global_Sessions
168
+ # See - https://origen-sdk.org/origen/guides/misc/session/#Global_Sessions
169
169
  def auth_session
170
170
  @session ||= begin
171
171
  @session = Origen.session.user
@@ -16,7 +16,7 @@ module Origen
16
16
  attr_reader :_methods_
17
17
 
18
18
  # Creates a new Collector object and creates a Hash out of the methods names and values in the given block.
19
- # @see http://origen-sdk.org/origen/guides/misc/utilities/#Collector
19
+ # @see https://origen-sdk.org/origen/guides/misc/utilities/#Collector
20
20
  # @example Create a collector to transform a block into a Hash
21
21
  # Origen::Utility::Collector.new { |c| c.my_param 'My Parameter'}.to_h #=> {my_param: 'My Parameter'}
22
22
  # @yield [self] Passes the collector to the given block.
@@ -57,7 +57,7 @@ module Origen
57
57
  alias_method :to_h, :to_hash
58
58
 
59
59
  # Using the method name, creates a key in the Collector with argument given to the method.
60
- # @see http://origen-sdk.org/origen/guides/misc/utilities/#Collector
60
+ # @see https://origen-sdk.org/origen/guides/misc/utilities/#Collector
61
61
  # @note If no args are given, the method key is set to <code>nil</code>.
62
62
  # @raise [ArgumentError] Raised when a method attempts to use both arguments and a block in the same line.
63
63
  # E.g.: <code>collector.my_param 'my_param' { 'MyParam' }</code>
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 1.8.11".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
10
10
  s.authors = ["Stephen McGinty".freeze]
11
- s.date = "2019-06-11"
11
+ s.date = "2019-07-30"
12
12
  s.email = ["stephen.f.mcginty@gmail.com".freeze]
13
13
  s.files = ["bin/boot.rb".freeze, "config/application.rb".freeze, "config/boot.rb".freeze, "config/commands.rb".freeze, "config/shared_commands.rb".freeze, "config/version.rb".freeze, "lib/origen_app_generators.rb".freeze, "lib/origen_app_generators/application.rb".freeze, "lib/origen_app_generators/base.rb".freeze, "lib/origen_app_generators/empty_application.rb".freeze, "lib/origen_app_generators/empty_plugin.rb".freeze, "lib/origen_app_generators/new.rb".freeze, "lib/origen_app_generators/new_app_tests.rb".freeze, "lib/origen_app_generators/origen_infrastructure/app_generator_plugin.rb".freeze, "lib/origen_app_generators/plugin.rb".freeze, "lib/origen_app_generators/test_engineering/common.rb".freeze, "lib/origen_app_generators/test_engineering/stand_alone_application.rb".freeze, "lib/origen_app_generators/test_engineering/test_block.rb".freeze, "templates/app_generators".freeze, "templates/app_generators/application".freeze, "templates/app_generators/application/.gitignore".freeze, "templates/app_generators/application/.irbrc".freeze, "templates/app_generators/application/.rspec".freeze, "templates/app_generators/application/.travis.yml".freeze, "templates/app_generators/application/Gemfile".freeze, "templates/app_generators/application/Rakefile".freeze, "templates/app_generators/application/app".freeze, "templates/app_generators/application/app/blocks".freeze, "templates/app_generators/application/app/blocks/top_level.rb".freeze, "templates/app_generators/application/app/lib".freeze, "templates/app_generators/application/app/lib/module.rb".freeze, "templates/app_generators/application/app/templates".freeze, "templates/app_generators/application/app/templates/web".freeze, "templates/app_generators/application/app/templates/web/index.md.erb".freeze, "templates/app_generators/application/app/templates/web/layouts".freeze, "templates/app_generators/application/app/templates/web/layouts/_basic.html.erb".freeze, "templates/app_generators/application/app/templates/web/partials".freeze, "templates/app_generators/application/app/templates/web/partials/_navbar.html.erb".freeze, "templates/app_generators/application/app/templates/web/release_notes.md.erb".freeze, "templates/app_generators/application/config".freeze, "templates/app_generators/application/config/application.rb".freeze, "templates/app_generators/application/config/boot.rb".freeze, "templates/app_generators/application/config/commands.rb".freeze, "templates/app_generators/application/config/maillist_dev.txt".freeze, "templates/app_generators/application/config/maillist_prod.txt".freeze, "templates/app_generators/application/config/version.rb".freeze, "templates/app_generators/application/doc".freeze, "templates/app_generators/application/doc/history".freeze, "templates/app_generators/application/dot_keep".freeze, "templates/app_generators/application/origen_core_session".freeze, "templates/app_generators/application/spec".freeze, "templates/app_generators/application/spec/spec_helper.rb".freeze, "templates/app_generators/application/target".freeze, "templates/app_generators/application/target/debug.rb".freeze, "templates/app_generators/application/target/default.rb".freeze, "templates/app_generators/application/target/production.rb".freeze, "templates/app_generators/new".freeze, "templates/app_generators/new/generator.rb".freeze, "templates/app_generators/new/info.md.erb".freeze, "templates/app_generators/origen_infrastructure".freeze, "templates/app_generators/origen_infrastructure/app_generator_plugin".freeze, "templates/app_generators/origen_infrastructure/app_generator_plugin/app".freeze, "templates/app_generators/origen_infrastructure/app_generator_plugin/app/lib".freeze, "templates/app_generators/origen_infrastructure/app_generator_plugin/app/lib/application.rb".freeze, "templates/app_generators/origen_infrastructure/app_generator_plugin/app/lib/base.rb".freeze, "templates/app_generators/origen_infrastructure/app_generator_plugin/app/lib/module.rb".freeze, "templates/app_generators/origen_infrastructure/app_generator_plugin/app/lib/plugin.rb".freeze, "templates/app_generators/origen_infrastructure/app_generator_plugin/config".freeze, "templates/app_generators/origen_infrastructure/app_generator_plugin/config/load_generators.rb".freeze, "templates/app_generators/plugin".freeze, "templates/app_generators/plugin/Gemfile".freeze, "templates/app_generators/plugin/Rakefile".freeze, "templates/app_generators/plugin/app".freeze, "templates/app_generators/plugin/app/templates".freeze, "templates/app_generators/plugin/app/templates/web".freeze, "templates/app_generators/plugin/app/templates/web/index.md.erb".freeze, "templates/app_generators/plugin/app/templates/web/partials".freeze, "templates/app_generators/plugin/app/templates/web/partials/_navbar_external.html.erb".freeze, "templates/app_generators/plugin/app/templates/web/partials/_navbar_internal.html.erb".freeze, "templates/app_generators/plugin/config".freeze, "templates/app_generators/plugin/config/boot.rb".freeze, "templates/app_generators/plugin/gemspec.rb".freeze, "templates/app_generators/test_engineering".freeze, "templates/app_generators/test_engineering/environment".freeze, "templates/app_generators/test_engineering/environment/j750.rb".freeze, "templates/app_generators/test_engineering/environment/uflex.rb".freeze, "templates/app_generators/test_engineering/environment/v93k.rb".freeze, "templates/app_generators/test_engineering/stand_alone_application".freeze, "templates/app_generators/test_engineering/stand_alone_application/.keep".freeze, "templates/app_generators/test_engineering/test_block".freeze, "templates/app_generators/test_engineering/test_block/.keep".freeze]
14
14
  s.homepage = "http://origen-sdk.org/origen_app_generators".freeze
@@ -29,7 +29,7 @@
29
29
  <meta property="og:url" content="<%= @item[:url] %>">
30
30
  <meta name="twitter:url" content="<%= @item[:url] %>">
31
31
  <% end %>
32
- <% image = @item[:image] || "http://origen-sdk.org/favicon-260x260.png" %>
32
+ <% image = @item[:image] || "https://origen-sdk.org/favicon-260x260.png" %>
33
33
  <meta property="og:image" content="<%= image %>">
34
34
  <meta name="twitter:image" content="<%= image %>">
35
35
  <meta itemprop="image" content="<%= image %>">
@@ -48,7 +48,7 @@
48
48
  <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
49
49
  <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
50
50
  <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
51
- <link rel="stylesheet" href="http://origen-sdk.org/css/bootstrap_custom.css"></script>
51
+ <link rel="stylesheet" href="https://origen-sdk.org/css/bootstrap_custom.css"></script>
52
52
  <!-- Load this up top to allow pages to execute JQuery snippets -->
53
53
  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
54
54
 
@@ -71,20 +71,20 @@
71
71
  <% end %>
72
72
 
73
73
  <!-- Fav and touch icons -->
74
- <link rel="apple-touch-icon" sizes="57x57" href="http://origen-sdk.org/apple-touch-icon-57x57.png">
75
- <link rel="apple-touch-icon" sizes="60x60" href="http://origen-sdk.org/apple-touch-icon-60x60.png">
76
- <link rel="apple-touch-icon" sizes="72x72" href="http://origen-sdk.org/apple-touch-icon-72x72.png">
77
- <link rel="apple-touch-icon" sizes="76x76" href="http://origen-sdk.org/apple-touch-icon-76x76.png">
78
- <link rel="apple-touch-icon" sizes="114x114" href="http://origen-sdk.org/apple-touch-icon-114x114.png">
79
- <link rel="apple-touch-icon" sizes="120x120" href="http://origen-sdk.org/apple-touch-icon-120x120.png">
80
- <link rel="apple-touch-icon" sizes="144x144" href="http://origen-sdk.org/apple-touch-icon-144x144.png">
81
- <link rel="apple-touch-icon" sizes="152x152" href="http://origen-sdk.org/apple-touch-icon-152x152.png">
82
- <link rel="apple-touch-icon" sizes="180x180" href="http://origen-sdk.org/apple-touch-icon-180x180.png">
83
- <link rel="icon" type="image/png" href="http://origen-sdk.org/favicon-32x32.png" sizes="32x32">
84
- <link rel="icon" type="image/png" href="http://origen-sdk.org/android-chrome-192x192.png" sizes="192x192">
85
- <link rel="icon" type="image/png" href="http://origen-sdk.org/favicon-96x96.png" sizes="96x96">
86
- <link rel="icon" type="image/png" href="http://origen-sdk.org/favicon-16x16.png" sizes="16x16">
87
- <link rel="manifest" href="http://origen-sdk.org/manifest.json">
74
+ <link rel="apple-touch-icon" sizes="57x57" href="https://origen-sdk.org/apple-touch-icon-57x57.png">
75
+ <link rel="apple-touch-icon" sizes="60x60" href="https://origen-sdk.org/apple-touch-icon-60x60.png">
76
+ <link rel="apple-touch-icon" sizes="72x72" href="https://origen-sdk.org/apple-touch-icon-72x72.png">
77
+ <link rel="apple-touch-icon" sizes="76x76" href="https://origen-sdk.org/apple-touch-icon-76x76.png">
78
+ <link rel="apple-touch-icon" sizes="114x114" href="https://origen-sdk.org/apple-touch-icon-114x114.png">
79
+ <link rel="apple-touch-icon" sizes="120x120" href="https://origen-sdk.org/apple-touch-icon-120x120.png">
80
+ <link rel="apple-touch-icon" sizes="144x144" href="https://origen-sdk.org/apple-touch-icon-144x144.png">
81
+ <link rel="apple-touch-icon" sizes="152x152" href="https://origen-sdk.org/apple-touch-icon-152x152.png">
82
+ <link rel="apple-touch-icon" sizes="180x180" href="https://origen-sdk.org/apple-touch-icon-180x180.png">
83
+ <link rel="icon" type="image/png" href="https://origen-sdk.org/favicon-32x32.png" sizes="32x32">
84
+ <link rel="icon" type="image/png" href="https://origen-sdk.org/android-chrome-192x192.png" sizes="192x192">
85
+ <link rel="icon" type="image/png" href="https://origen-sdk.org/favicon-96x96.png" sizes="96x96">
86
+ <link rel="icon" type="image/png" href="https://origen-sdk.org/favicon-16x16.png" sizes="16x16">
87
+ <link rel="manifest" href="https://origen-sdk.org/manifest.json">
88
88
  <meta name="msapplication-TileColor" content="#da532c">
89
89
  <meta name="msapplication-TileImage" content="/mstile-144x144.png">
90
90
  <meta name="theme-color" content="#ffffff">
@@ -102,7 +102,7 @@
102
102
  <footer class="footer">
103
103
  <div class="container">
104
104
  <p class="pull-left text-muted">
105
- Generated with the <a href="http://origen-sdk.org">Origen Semiconductor Developer's Kit</a>
105
+ Generated with the <a href="https://origen-sdk.org">Origen Semiconductor Developer's Kit</a>
106
106
  </p>
107
107
  <p class="pull-right text-muted">Origen is released under the terms of the <a href="https://choosealicense.com/licenses/mit/">MIT license</a></p>
108
108
  </div>
@@ -111,9 +111,9 @@
111
111
  ================================================== -->
112
112
  <!-- Placed at the end of the document so the pages load faster -->
113
113
  <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
114
- <script src="http://origen-sdk.org/js/lunr.min.js"></script>
115
- <script src="http://origen-sdk.org/js/highlight.js"></script>
116
- <script src="http://origen-sdk.org/js/custom.js"></script>
114
+ <script src="https://origen-sdk.org/js/lunr.min.js"></script>
115
+ <script src="https://origen-sdk.org/js/highlight.js"></script>
116
+ <script src="https://origen-sdk.org/js/custom.js"></script>
117
117
  <% if @item[:gitter_chat] %>
118
118
  <script>
119
119
  ((window.gitter = {}).chat = {}).options = {
@@ -1,4 +1,4 @@
1
- <a href="http://origen-sdk.org" class=" pull-right">
2
- <img src="http://origen-sdk.org/img/origen-device.png" style="height:30px; margin-top: 10px;">
3
- <img src="http://origen-sdk.org/img/origen-text.png" style="height:15px; margin-top: 10px; margin-left: 5px;">
1
+ <a href="https://origen-sdk.org" class=" pull-right">
2
+ <img src="https://origen-sdk.org/img/origen-device.png" style="height:30px; margin-top: 10px;">
3
+ <img src="https://origen-sdk.org/img/origen-text.png" style="height:15px; margin-top: 10px; margin-left: 5px;">
4
4
  </a>
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.52.2
4
+ version: 0.52.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen McGinty
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-14 00:00:00.000000000 Z
11
+ date: 2019-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -716,7 +716,7 @@ files:
716
716
  - vendor/lib/models/origen/export1/block1.rb
717
717
  - vendor/lib/models/origen/export1/block1/x.rb
718
718
  - vendor/lib/models/origen/non_origen_meta_data.md
719
- homepage: http://origen-sdk.org
719
+ homepage: https://origen-sdk.org
720
720
  licenses:
721
721
  - MIT
722
722
  metadata: {}