[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for Vassal Engine 3.7.6-SNAPSHOT:
[INFO]
[INFO] Vassal Engine ...................................... SUCCESS [ 0.385 s]
[INFO] vassal-agent ....................................... SUCCESS [ 1.324 s]
[INFO] vassal-deprecation ................................. SUCCESS [ 0.189 s]
[INFO] vassal-app ......................................... SUCCESS [02:29 min]
[INFO] vassal-doc ......................................... SUCCESS [ 0.251 s]
[INFO] release-prepare .................................... SUCCESS [ 7.551 s]
Hit this on make release-macos.
Darwin Kernel Version 22.6.0: Wed Oct 4 21:25:26 PDT 2023; root:xnu-8796.141.3.701.17~4/RELEASE_X86_64 x86_64
openjdk version "14.0.2" 2020-07-14 OpenJDK Runtime Environment (build 14.0.2+12-46) OpenJDK 64-Bit Server VM (build 14.0.2+12-46, mixed mode, sharing)
GPL Ghostscript 10.01.2: **** Could not open temporary file tmp/gs_XXXXXX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'thread' | |
| require 'thwait' | |
| a = [] | |
| Dir["font-z*.rb"].each do |file| | |
| next if file == __FILE__ | |
| next if file =~ /pixel/ | |
| font = File.basename(file, '.rb') | |
| puts font |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # You will need Ruby on a Windows machine. Plus the ffi library. | |
| require 'ffi' | |
| class File::Temp | |
| extend FFI::Library | |
| ffi_lib :kernel32 | |
| attach_function :GetTempFileNameA, %i[string string uint buffer_out], :uint | |
| attach_function :GetTempFileNameW, %i[buffer_in buffer_in uint buffer_out], :uint |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # user.rb | |
| class User < ApplicationRecord | |
| has_many :groups_users, :class_name => 'GroupsUsers' | |
| has_many :groups, :through => :groups_users | |
| end | |
| # group.rb | |
| class Group < ApplicationRecord | |
| has_many :groups_users, :class_name => 'GroupsUsers' | |
| #has_many :users, :through => :groups_users |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [1] pry(main)> i = ActiveSupport::Inflector.inflections(:en) | |
| => #<ActiveSupport::Inflector::Inflections:0x0000000002532f30 | |
| @acronym_regex=/Api|GraphiQL/, | |
| @acronyms={"api"=>"Api", "graphiql"=>"GraphiQL"}, | |
| @acronyms_camelize_regex=/^(?:(?-mix:Api|GraphiQL)(?=\b|[A-Z_])|\w)/, | |
| @acronyms_underscore_regex=/(?:(?<=([A-Za-z\d]))|\b)((?-mix:Api|GraphiQL))(?=\b|[^a-z])/, | |
| @humans=[], | |
| @plurals= | |
| [[/(z)ombies$/i, "\\1ombies"], | |
| [/(z)ombie$/i, "\\1ombies"], |