rubypitaya 3.3.4 → 3.3.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e526e596bef23aa113c700a8e2ab6311241ebd9257d2f030026cf53ed3d49d5
4
- data.tar.gz: 5f932845d7c382c26c4c948508fd1855fb4dfb3eecc533f0560c378ce6c87f92
3
+ metadata.gz: 8df3d82ce77fdcc4242708fa55141b36e5812baa3ab435609d8495f3bac0d745
4
+ data.tar.gz: db92a024f37405e3235fc466e2c0e84068762429ba40d7d3cc5d29f2257e67f2
5
5
  SHA512:
6
- metadata.gz: 025faa43f9e73e44f79a6cad82815ba445fb14be623a99dcf560200b2d4002b5fdf2e3ab8429eefd5110aa30611ca5eb3965f01da65ed6c3ba06e386962294e4
7
- data.tar.gz: 4d8f19ca632af76c3329a9d658522089d776baba03b6fc6c83e8e61e8607b26479738d5836feb08da52967d82ddf606bfc92fec026d1849d190018dffb45230e
6
+ metadata.gz: 4370cfa9d7677153b09ad5fe5f356fb43d86c56cbcf39ca94c7bed66cf3624470ab6f5eaaf1d7f814d801cef7eaa79ffacbabbdf2bfef574df17566df8c7f35f
7
+ data.tar.gz: 63b3c54bfb906c6f89ed2c866b974a326676674a2d3decce9fc1c9147f6acf73f98cde7188f1927ec07d12e0d14b18b65eb6920d0d34eb382fe86a844d276efb
@@ -1,6 +1,6 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem 'rubypitaya', '3.3.4'
3
+ gem 'rubypitaya', '3.3.5'
4
4
 
5
5
  group :development do
6
6
  gem 'pry', '0.14.1'
@@ -103,7 +103,7 @@ GEM
103
103
  rspec-support (~> 3.10.0)
104
104
  rspec-support (3.10.3)
105
105
  ruby2_keywords (0.0.5)
106
- rubypitaya (3.3.4)
106
+ rubypitaya (3.3.5)
107
107
  activerecord (= 6.1.4.1)
108
108
  etcdv3 (= 0.11.4)
109
109
  google-protobuf (= 3.18.1)
@@ -143,7 +143,7 @@ DEPENDENCIES
143
143
  listen (= 3.7.0)
144
144
  pry (= 0.14.1)
145
145
  rspec (= 3.10.0)
146
- rubypitaya (= 3.3.4)
146
+ rubypitaya (= 3.3.5)
147
147
  sinatra-contrib (= 2.1.0)
148
148
 
149
149
  BUNDLED WITH
@@ -4,12 +4,15 @@ module RubyPitaya
4
4
 
5
5
  class ApplicationFilesImporter
6
6
 
7
- def import
7
+ def import(is_cheats_enabled)
8
8
  app_folder_paths = Path::Plugins::APP_FOLDER_PATHS + [Path::Core::APP_FOLDER_PATH, Path::APP_FOLDER_PATH]
9
9
 
10
10
  app_folder_paths.each do |app_folder_path|
11
11
  app_files_path = "#{app_folder_path}/**/*.rb"
12
12
 
13
+ gem_files = Gem.find_files(app_files_path)
14
+ gem_files = gem_files.select { |a| !a[/.+_cheats.rb/] && !a[/.+_cheat.rb/] } unless is_cheats_enabled
15
+
13
16
  Gem.find_files(app_files_path).each do |path|
14
17
  require path unless path.include?('app/migrations')
15
18
  end
@@ -45,7 +45,10 @@ module RubyPitaya
45
45
 
46
46
  def import_handler_classes
47
47
  handler_classes = ObjectSpace.each_object(HandlerBase.singleton_class).select do |klass|
48
- klass != HandlerBase
48
+ class_name = klass.to_s.downcase
49
+ is_cheat_class = class_name.end_with?('cheat') || class_name.end_with?('cheats')
50
+
51
+ klass != HandlerBase && (is_cheats_enabled || !is_cheat_class)
49
52
  end
50
53
 
51
54
  @handlers = handler_classes.map { |handler_class| handler_class.new }
@@ -1,3 +1,3 @@
1
1
  module RubyPitaya
2
- VERSION = '3.3.4'
2
+ VERSION = '3.3.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypitaya
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.4
4
+ version: 3.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luciano Prestes Cavalcanti