atome 0.5.5.7.1 → 0.5.5.7.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/atome.gemspec +69 -0
  3. data/exe/atome +11 -3
  4. data/lib/atome/version.rb +1 -1
  5. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe6f32911d0d8ebfccda16d271a18c5262d0c907228266836edc4322c840962c
4
- data.tar.gz: 575fe8f4cc4567d5fc278309b098e548211699743c316c9bf951d8ca970d5316
3
+ metadata.gz: bb3b76899a7e3ef476e162d96cb3fb13954b8cabf3e1a35cbb5912cff9e1e02c
4
+ data.tar.gz: f446469839b10f992c1305ecd901884777ef24f6bc488ac654c8ea9cfd914e29
5
5
  SHA512:
6
- metadata.gz: f7c2c0aa4620e1ffba7044c8c9814ed252a33f175b0c8b8383ff53e98e94a386718f9d3fe67a0f4c6a4da3d821c7451f56ea164f3518ad7dcd9d2fd06e7b8e22
7
- data.tar.gz: b3be9cf082f54ebeaa2a2d1b4c02072de47a4da5cda088aebdfd4451eec4fcebe3f3cd4cfb29902d08bd7cb82051ab34c4b6b3f7e092b3a90ebb2abfde044153
6
+ metadata.gz: 15d8eb4b6abbf8f07e6c76d7f321852ff227e4a65ff9e46ede6392c72b14d6a8f05186102c8477b36e82c9803b3980e052df0b1807ebd4e17fbddbf090f6907e
7
+ data.tar.gz: '0333628700607772f0b32ce1d8e461a15a117c0b63ce1a860d2d2af64e34bdfb6332eea9eb507cb9c99e4ef738d993f8f9d2a63d2adda11426a050efa93dbee0'
data/atome.gemspec ADDED
@@ -0,0 +1,69 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/atome/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'atome'
7
+ spec.version = Atome::VERSION
8
+ spec.authors = ['Jean-Eric Godard']
9
+ spec.email = ['jeezs@atome.one']
10
+
11
+ spec.summary = 'the creative framework'
12
+ spec.description = 'the creative framework.'
13
+ spec.homepage = 'https://atome.one'
14
+ spec.license = 'MIT'
15
+ spec.required_ruby_version = '>= 3.3'
16
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
17
+
18
+ spec.metadata['homepage_uri'] = spec.homepage
19
+ spec.metadata['source_code_uri'] = 'https://github.com/atomecorp/atome'
20
+ spec.metadata['changelog_uri'] = 'https://github.com/atomecorp/atome'
21
+
22
+ # Specify which files should be added to the gem when it is released.
23
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
+
25
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
26
+ `git ls-files -z`.split("\x0").reject do |f|
27
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
28
+ end
29
+ end
30
+
31
+ spec.bindir = 'exe'
32
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
33
+ spec.require_paths = ['lib']
34
+
35
+ # spec.add_runtime_dependency 'arduino_firmata', '~> 0.3'
36
+ spec.add_runtime_dependency 'eventmachine', '~> 1.2.7'
37
+ spec.add_runtime_dependency 'faye-websocket', '~> 0.1'
38
+ spec.add_runtime_dependency 'geocoder', '~> 1.8'
39
+ spec.add_runtime_dependency 'guard', '~> 2.1'
40
+ # # spec.add_runtime_dependency 'guard', '2.1'
41
+ spec.add_runtime_dependency 'guard-rake', '~> 1.0'
42
+ spec.add_runtime_dependency 'image_size', '~> 3.0'
43
+ spec.add_runtime_dependency 'mail', '~> 2.1'
44
+ spec.add_runtime_dependency 'net-ping', '~> 2.0'
45
+ spec.add_runtime_dependency 'opal', '~> 1.5'
46
+ spec.add_runtime_dependency 'parser', '~> 3.1'
47
+ spec.add_runtime_dependency 'puma', '~> 6.0'
48
+ spec.add_runtime_dependency 'rack', '~> 2.2'
49
+ spec.add_runtime_dependency 'rack-unreloader', '~> 1.8'
50
+ spec.add_runtime_dependency 'rake', '~> 13.0'
51
+ spec.add_runtime_dependency 'roda', '~> 3.5'
52
+ spec.add_runtime_dependency 'ruby2js', '~> 5.0'
53
+ spec.add_runtime_dependency 'rufus-scheduler', '~> 3.8'
54
+ spec.add_runtime_dependency 'securerandom', '~> 0.2'
55
+ spec.add_runtime_dependency 'sequel', '~> 5.5'
56
+ spec.add_runtime_dependency 'sqlite3', '~> 1.4'
57
+ spec.add_runtime_dependency 'uglifier', '~> 0.1'
58
+ #spec.add_runtime_dependency 'webrick', '~> 1.7.0'
59
+ # the gem below are need to make the atome server works on Windows
60
+ spec.add_runtime_dependency 'win32-security', '~> 0.5.0'
61
+ spec.add_runtime_dependency 'tzinfo-data', '~> 1.2023.4'
62
+
63
+
64
+ # Uncomment to register a new dependency of your gem
65
+ # spec.add_dependency "example-gem", "~> 1.0"
66
+
67
+ # For more information and examples about making a new gem, check out our
68
+ # guide at: https://bundler.io/guides/creating_gem.html
69
+ end
data/exe/atome CHANGED
@@ -414,7 +414,17 @@ source = Pathname(__FILE__).parent.parent.to_s
414
414
  if ARGV.include?('create')
415
415
  create_application(source, destination, project_name)
416
416
  # create_application(source, destination, project_name, production)
417
-
417
+ # build opal
418
+ build_opal_library(source, destination, project_name)
419
+ # build parser
420
+ build_opal_parser(source, destination, project_name)
421
+ # build atome kernel
422
+ build_atome_kernel_for_opal(source, destination, project_name)
423
+ # build host_mode
424
+ build_host_mode(destination, project_name, 'web-opal')
425
+ # build Opal extensions
426
+ build_opal_extensions(source, destination, project_name)
427
+ # build application
418
428
  build_opal_application(source, destination, project_name)
419
429
  end
420
430
 
@@ -471,8 +481,6 @@ if ARGV.include?('run')
471
481
  # build host_mode
472
482
  build_host_mode(destination, project_name, 'web-opal')
473
483
  # build Opal extensions
474
-
475
-
476
484
  if RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/
477
485
  # code to exec for Windows
478
486
  `start "" "#{destination}\\#{project_name}\\src\\index_opal.html"`
data/lib/atome/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  # return atome version
4
4
  class Atome
5
- VERSION = '0.5.5.7.1'
5
+ VERSION = '0.5.5.7.3'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atome
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5.7.1
4
+ version: 0.5.5.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean-Eric Godard
@@ -346,6 +346,7 @@ files:
346
346
  - LICENSE.txt
347
347
  - README.md
348
348
  - Rakefile
349
+ - atome.gemspec
349
350
  - documentation/atome.md
350
351
  - documentation/basic.md
351
352
  - documentation/database.JPG