openc3-enterprise 5.0.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.
Files changed (6) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +5 -0
  3. data/LICENSE.txt +2 -0
  4. data/README.md +3 -0
  5. data/Rakefile +16 -0
  6. metadata +49 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 60064da0aeb68fd7450777a16d7da4d809f3127d8c6aa252f6b111d63bf67caf
4
+ data.tar.gz: 92f5e0229a5717f7bd2d25af69d10d30cb65d8053e2590ce092132ecac6d16a9
5
+ SHA512:
6
+ metadata.gz: 0d3b731feaa8e31d066178217288a6b7bf56897aad1b0b981540321bd1d6c38c73c110932bec42f9690240026381c6181239722b880d465573b38a1d8eba33e5
7
+ data.tar.gz: 9bd750da59efb8d0aa11e85372dca1854666b044834cd2f2e949c99863378c0ae04aea7f7287a8f1f9abeed948c000f04f55b11351bf475a8a9279c57c89c367
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ # encoding: ascii-8bit
2
+
3
+ source ENV['RUBYGEMS_URL'] || "https://rubygems.org"
4
+
5
+ gemspec :name => 'openc3-enterprise'
data/LICENSE.txt ADDED
@@ -0,0 +1,2 @@
1
+ # This work may only be used under the terms of a commercial license
2
+ # purchased from OpenC3, Inc.
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # OpenC3 Enterprise Gem
2
+
3
+ This gem is a placeholder to prevent spoofing in RubyGems. Contact support@openc3.com to purchase OpenC3 COSMOS Enterprise Edition.
data/Rakefile ADDED
@@ -0,0 +1,16 @@
1
+ # encoding: ascii-8bit
2
+
3
+ # Copyright 2022 OpenC3, Inc.
4
+ # All Rights Reserved.
5
+ #
6
+ # This file may only be used under the terms of a commercial license
7
+ # purchased from OpenC3, Inc.
8
+
9
+ task :gem do
10
+ _, platform, *_ = RUBY_PLATFORM.split("-")
11
+ if platform == 'mswin32' or platform == 'mingw32'
12
+ raise "Building gem is not supported on Windows because file permissions are lost"
13
+ end
14
+
15
+ system('gem build openc3-enterprise.gemspec')
16
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: openc3-enterprise
3
+ version: !ruby/object:Gem::Version
4
+ version: 5.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Ryan Melton
8
+ - Jason Thomas
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2023-05-17 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: " OpenC3 Enterprise Edition adds enterprise features to the base OpenC3.\n"
15
+ email:
16
+ - ryan@openc3.com
17
+ - jason@openc3.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - Gemfile
23
+ - LICENSE.txt
24
+ - README.md
25
+ - Rakefile
26
+ homepage: https://openc3.com
27
+ licenses:
28
+ - Nonstandard
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '2.7'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.3.7
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: OpenC3 Enterprise
49
+ test_files: []