SyborgStudios/overrides-example-app

at: Github

Badge

Recent builds

Provider Branch Name Updated at #Overrides || #Added methods Actions
1c10aa452 upgrade-ordinary_gem connect to next version of ordinary_gem 08 Jan 20:24 8 | 38 || 8 Show Compare
1bd2dc311 main Add upgrade-ordinary_gem branch to actions 08 Jan 20:22 12 | 38 || 4 Show Compare
99991dfb1 main connect to main branch of ordinary gem 08 Jan 20:19 12 | 38 || 4 Show Compare
Provider : 1c10aa452
Branch : upgrade-ordinary_gem
Name : connect to next version of ordinary_gem
Updated at : 08 Jan 20:24
#Overrides || #Added methods : 8 | 38 || 8
Provider : 1bd2dc311
Branch : main
Name : Add upgrade-ordinary_gem branch to actions
Updated at : 08 Jan 20:22
#Overrides || #Added methods : 12 | 38 || 4
Provider : 99991dfb1
Branch : main
Name : connect to main branch of ordinary gem
Updated at : 08 Jan 20:19
#Overrides || #Added methods : 12 | 38 || 4

Latest main or latest build

Commit subject: main/Add upgrade-ordinary_gem branch to actions

Commit hash: 1bd2dc311d79d3af9b6b6d5c955f67ce8ade895a
Author name Simon Meyborg
Committer name GitHub
View on Github

Compare with prior build

Results:

# Overrides: 12 | 38
# Added methods to classes: 4


Investigated:

# Classes: 1529
# Methods: 14111

OrdinaryGem::ATypicalClass#a_instance_method_that_that_stays_the_same

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/a_typical_class.rb:7

def a_instance_method_that_that_stays_the_same
  "This is the implementation of a simple instance method."
  "This method will stay the same in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/a_typical_class_decorator.rb:29

def a_instance_method_that_that_stays_the_same
  "This is our override of a simple instance method."
  "This method should stay the same in the next version."
end


OrdinaryGem::ATypicalClass#a_instance_method_that_will_change

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/a_typical_class.rb:12

def a_instance_method_that_will_change
  "This is the implementation of a simple instance method."
  "This method will be rewritten in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/a_typical_class_decorator.rb:34

def a_instance_method_that_will_change
  "This is our override of a simple instance method."
  "This method will be rewritten in the next version."
end


OrdinaryGem::ATypicalClass#a_instance_method_that_will_be_removed

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/a_typical_class.rb:17

def a_instance_method_that_will_be_removed
  "This is the implementation of a simple instance method."
  "This method will be removed in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/a_typical_class_decorator.rb:39

def a_instance_method_that_will_be_removed
  "This is our override of a simple instance method."
  "This method will be removed in the next version."
end


OrdinaryGem::ATypicalClass.a_singleton_method_that_stays_the_same

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/a_typical_class.rb:26

def self.a_singleton_method_that_stays_the_same
  "This is the implementation of a simple singleton method."
  "This method will stay the same in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/a_typical_class_decorator.rb:4

def a_singleton_method_that_stays_the_same
  "This is our override of a simple singleton method."
  "This method should stay the same in the next version."
end


OrdinaryGem::ATypicalClass.a_singleton_method_that_will_change

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/a_typical_class.rb:31

def self.a_singleton_method_that_will_change
  "This is the implementation of a simple singleton method."
  "This method will be rewritten in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/a_typical_class_decorator.rb:9

def a_singleton_method_that_will_change
  "This is our override of a simple singleton method."
  "This method will be rewritten in the next version."
end


OrdinaryGem::ATypicalClass.a_singleton_method_that_will_be_removed

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/a_typical_class.rb:36

def self.a_singleton_method_that_will_be_removed
  "This is the implementation of a simple singleton method."
  "This method will be removed in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/a_typical_class_decorator.rb:14

def a_singleton_method_that_will_be_removed
  "This is our override of a simple instance method."
  "This method will be removed in the next version."
end


OrdinaryGem::AnotherTypicalClass#a_instance_method_that_that_stays_the_same

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/another_typical_class.rb:7

def a_instance_method_that_that_stays_the_same
  "This is the implementation of a simple instance method."
  "This method will stay the same in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/another_typical_class_monkey_patch.rb:24

def a_instance_method_that_that_stays_the_same
  "This is our override of a simple instance method."
  "This method should stay the same in the next version."
end


OrdinaryGem::AnotherTypicalClass#a_instance_method_that_will_change

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/another_typical_class.rb:12

def a_instance_method_that_will_change
  "This is the implementation of a simple instance method."
  "This method will be rewritten in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/another_typical_class_monkey_patch.rb:29

def a_instance_method_that_will_change
  "This is our override of a simple instance method."
  "This method will be rewritten in the next version."
end


OrdinaryGem::AnotherTypicalClass#a_instance_method_that_will_be_removed

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/another_typical_class.rb:17

def a_instance_method_that_will_be_removed
  "This is the implementation of a simple instance method."
  "This method will be removed in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/another_typical_class_monkey_patch.rb:34

def a_instance_method_that_will_be_removed
  "This is our override of a simple instance method."
  "This method will be removed in the next version."
end


OrdinaryGem::AnotherTypicalClass.a_singleton_method_that_stays_the_same

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/another_typical_class.rb:26

def self.a_singleton_method_that_stays_the_same
  "This is the implementation of a simple singleton method."
  "This method will stay the same in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/another_typical_class_monkey_patch.rb:2

def self.a_singleton_method_that_stays_the_same
  "This is our override of a simple singleton method."
  "This method should stay the same in the next version."
end


OrdinaryGem::AnotherTypicalClass.a_singleton_method_that_will_change

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/another_typical_class.rb:31

def self.a_singleton_method_that_will_change
  "This is the implementation of a simple singleton method."
  "This method will be rewritten in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/another_typical_class_monkey_patch.rb:7

def self.a_singleton_method_that_will_change
  "This is our override of a simple singleton method."
  "This method will be rewritten in the next version."
end


OrdinaryGem::AnotherTypicalClass.a_singleton_method_that_will_be_removed

Original source

BUNDLE_PATH/bundler/gems/ordinary-gem-680cffe570ec/lib/ordinary_gem/another_typical_class.rb:36

def self.a_singleton_method_that_will_be_removed
  "This is the implementation of a simple singleton method."
  "This method will be removed in the next version."
end

Override

APP_PATH/app/models/ordinary_gem/another_typical_class_monkey_patch.rb:12

def self.a_singleton_method_that_will_be_removed
  "This is our override of a simple instance method."
  "This method will be removed in the next version."
end


We need to use cookies in order for you to log in to Overrides.io. By continuing to use the website you agree to the use of cookies. If you would like to know more about how we use your information, we recommend that you read our privacy policy.