forward_to 0.1.0 → 0.1.1

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: e324925982b40a9a54c191ae4277dd4e89dc773ff66203d3a109dc50aa8d409e
4
- data.tar.gz: ee351092ac334d8f496dde7385914e90e5ea65831ceb390e169925997ad571e9
3
+ metadata.gz: 0e5085a3a719f5335a58f028086641d93cea8094c762744dae382d0ea568815a
4
+ data.tar.gz: ff8a68e960605ce2818fb6cbaccd3c1d562c48cfa7f1590a59cb53389533a010
5
5
  SHA512:
6
- metadata.gz: d4badf84c162ee10a8e41fde02a904d8935ca86b6e37dd0859068601c43a90a1d4d9401ad22c68fb9a93846e9a691f5defc7b86d345bd7a5a195692643d7f33b
7
- data.tar.gz: 285ad8105252e9b1688c8eb30f6c88e48189b4e75a9c04bf01ee09f75eafd8bbea1a06f4bd3253cd8a73cb460a4b51bdc67a2fe3fa2bb05e6abe0f2275ef8bfc
6
+ metadata.gz: ee278b9ffe10c6ea8efd6156abf97a03fda763b7e601b9ccaeaf17ee0e5c19bbef9c43ba3576fb9d1344262f938fa4f8dcb4356245b6c4187f1a172d54cf6e35
7
+ data.tar.gz: 04e6e0a1efcff659859cd2219f34ff650542133da0186650ff66fb5a9d3e27939507455482f36b1494aab5df3fa78e4da93aa2f997482835c03df0625e96d39a
data/forward_to.gemspec CHANGED
@@ -8,12 +8,13 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Claus Rasmussen"]
9
9
  spec.email = ["ras@danak.dk"]
10
10
 
11
- spec.summary = "Forward methods"
12
- spec.description = "Forwards instance methods to a member of an instance variable. It works like Rails #delegate but with a different syntax"
13
- spec.homepage = "http://github.com/clrgit/forward_to"
11
+ spec.summary = "Simple forwarding of methods"
12
+ spec.description = "Simple forwarding of methods"
13
+ spec.homepage = "https://github.com/clrgit/forward_to"
14
14
  spec.required_ruby_version = ">= 2.4.0"
15
15
 
16
16
  spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = "https://github.com/clrgit/forward_to.git"
17
18
 
18
19
  # Specify which files should be added to the gem when it is released.
19
20
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ForwardTo
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
data/lib/forward_to.rb CHANGED
@@ -3,8 +3,6 @@
3
3
  require_relative "forward_to/version"
4
4
 
5
5
  module ForwardTo
6
- class Error < StandardError; end
7
-
8
6
  # Forward methods to member object. The arguments should be strings or symbols
9
7
  #
10
8
  # Forward to takes the first argument and creates methods for the rest of the
metadata CHANGED
@@ -1,17 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forward_to
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claus Rasmussen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-09-20 00:00:00.000000000 Z
11
+ date: 2022-03-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: 'Forwards instance methods to a member of an instance variable. It works
14
- like Rails #delegate but with a different syntax'
13
+ description: Simple forwarding of methods
15
14
  email:
16
15
  - ras@danak.dk
17
16
  executables: []
@@ -28,10 +27,11 @@ files:
28
27
  - forward_to.gemspec
29
28
  - lib/forward_to.rb
30
29
  - lib/forward_to/version.rb
31
- homepage: http://github.com/clrgit/forward_to
30
+ homepage: https://github.com/clrgit/forward_to
32
31
  licenses: []
33
32
  metadata:
34
- homepage_uri: http://github.com/clrgit/forward_to
33
+ homepage_uri: https://github.com/clrgit/forward_to
34
+ source_code_uri: https://github.com/clrgit/forward_to.git
35
35
  post_install_message:
36
36
  rdoc_options: []
37
37
  require_paths:
@@ -47,8 +47,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
47
47
  - !ruby/object:Gem::Version
48
48
  version: '0'
49
49
  requirements: []
50
- rubygems_version: 3.2.26
50
+ rubygems_version: 3.1.4
51
51
  signing_key:
52
52
  specification_version: 4
53
- summary: Forward methods
53
+ summary: Simple forwarding of methods
54
54
  test_files: []