Commit subject: upgrade-ordinary_gem/connect to next version of ordinary_gem
Commit hash:
1c10aa452a3888889df41bae8a36c5842cf6baa6
Author name
Simon Meyborg
Committer name
Simon Meyborg
View on Github
# Overrides:
8
|
38
# Added methods to classes:
8
# Classes:
1529
# Methods:
14107
BUNDLE_PATH/bundler/gems/ordinary-gem-289523a45ccb/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
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
BUNDLE_PATH/bundler/gems/ordinary-gem-289523a45ccb/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 has been rewritten in this next version."
end
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
BUNDLE_PATH/bundler/gems/ordinary-gem-289523a45ccb/lib/ordinary_gem/a_typical_class.rb:26
def self.a_singleton_method_that_will_change
"This is the implementation of a simple singleton method."
"This method has been rewritten in this next version."
end
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
BUNDLE_PATH/bundler/gems/ordinary-gem-289523a45ccb/lib/ordinary_gem/a_typical_class.rb:21
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
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
BUNDLE_PATH/bundler/gems/ordinary-gem-289523a45ccb/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
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
BUNDLE_PATH/bundler/gems/ordinary-gem-289523a45ccb/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 has been rewritten in this next version."
end
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
BUNDLE_PATH/bundler/gems/ordinary-gem-289523a45ccb/lib/ordinary_gem/another_typical_class.rb:26
def self.a_singleton_method_that_will_change
"This is the implementation of a simple singleton method."
"This method has been rewritten in this next version."
end
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
BUNDLE_PATH/bundler/gems/ordinary-gem-289523a45ccb/lib/ordinary_gem/another_typical_class.rb:21
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
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