ruby_2023 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5808ca2357edbb3eed066a597d9b68d086e080a3a948199e7454350b16bc2d45
4
+ data.tar.gz: deb7078d0403d1c861cd5ab51131fc6256ff02253fb7524a7852f4629e0a8e90
5
+ SHA512:
6
+ metadata.gz: 2f685afa249fbceea980eeb56177ce37facf9fe978fe4e7b58a1619210b7947ca372c6b841a743a4073ffe12b6dd227f5046be1159e93d3bd491cb9268e08176
7
+ data.tar.gz: 57229752b893a445d29bf33159e2fdcad964d75505cc1ff1c72d016719733e661632f67b332f315d5cd8929359fb263028b81649740aa37ecc27439e15b82110
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-10-28
4
+
5
+ - Initial release
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Ruby2023
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/ruby_2023`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ruby_2023.
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Ruby2023
4
+ VERSION = "0.1.0"
5
+ end
data/lib/ruby_2023.rb ADDED
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "ruby_2023/version"
4
+
5
+ module Ruby2023
6
+ class Error < StandardError; end
7
+ module Countable
8
+ module ClassMethods
9
+ def count_invocations_of(*method_names)
10
+ method_names.each do |method_name|
11
+ alias_method "orig_#{method_name}", method_name
12
+ define_method(method_name) do
13
+ invocation_count[method_name] += 1
14
+ send("orig_#{method_name}")
15
+ end
16
+ end
17
+ end
18
+ end
19
+
20
+ def self.included(base)
21
+ base.extend(ClassMethods)
22
+ end
23
+
24
+ def invocation_count
25
+ @invocation_count ||= Hash.new(0)
26
+ end
27
+
28
+ def invoked?(method_name)
29
+ invoked(method_name) > 0
30
+ end
31
+
32
+ def invoked(method_name)
33
+ invocation_count[method_name]
34
+ end
35
+ end
36
+ end
data/ruby_2023.gemspec ADDED
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/ruby_2023/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "ruby_2023"
7
+ spec.version = Ruby2023::VERSION
8
+ spec.authors = ["Tomas E"]
9
+ spec.email = ["tomas.echeverria17293@alumnos.info.unlp.edu.ar"]
10
+
11
+ spec.summary = "gem to count module"
12
+ spec.description = "counts the invocatiosn of the methofs specified"
13
+ spec.homepage = "https://github.com/tomiecheverria/Ruby-2023/tree/main/practica_3"
14
+ spec.required_ruby_version = ">= 2.6.0"
15
+
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/tomiecheverria/Ruby-2023/tree/main/practica_3"
19
+ spec.metadata["changelog_uri"] = "https://github.com/tomiecheverria/Ruby-2023/tree/main/practica_3"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(__dir__) do
24
+ `git ls-files -z`.split("\x0").reject do |f|
25
+ (File.expand_path(f) == __FILE__) ||
26
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
27
+ end
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ # Uncomment to register a new dependency of your gem
34
+ # spec.add_dependency "example-gem", "~> 1.0"
35
+
36
+ # For more information and examples about making a new gem, check out our
37
+ # guide at: https://bundler.io/guides/creating_gem.html
38
+ end
data/sig/ruby_2023.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Ruby2023
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby_2023
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Tomas E
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-11-02 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: counts the invocatiosn of the methofs specified
14
+ email:
15
+ - tomas.echeverria17293@alumnos.info.unlp.edu.ar
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - CHANGELOG.md
21
+ - README.md
22
+ - Rakefile
23
+ - lib/ruby_2023.rb
24
+ - lib/ruby_2023/version.rb
25
+ - ruby_2023.gemspec
26
+ - sig/ruby_2023.rbs
27
+ homepage: https://github.com/tomiecheverria/Ruby-2023/tree/main/practica_3
28
+ licenses: []
29
+ metadata:
30
+ homepage_uri: https://github.com/tomiecheverria/Ruby-2023/tree/main/practica_3
31
+ source_code_uri: https://github.com/tomiecheverria/Ruby-2023/tree/main/practica_3
32
+ changelog_uri: https://github.com/tomiecheverria/Ruby-2023/tree/main/practica_3
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 2.6.0
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 3.4.21
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: gem to count module
52
+ test_files: []