global 0.2.1 → 0.2.2

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
  SHA1:
3
- metadata.gz: cc018c60be91bbac80695e0dd7c5d21507e05a00
4
- data.tar.gz: 99fe732e9ec437f375b16465a760b0dd976d4874
3
+ metadata.gz: ff7ffaa8d2e0f5e244d2a8afbe0d8e938cea9244
4
+ data.tar.gz: 8153165733bd12e6c4673c39abdbb16b706a7fc6
5
5
  SHA512:
6
- metadata.gz: 51469cc612efe4b3ef4886b47668ac58a97d873187077590a0ce51435d6a78df89a04c8cc87f2eb5195f956e9496799f6e9cfdbcdcc5f555649b6af9eec3aff3
7
- data.tar.gz: 0db0206fe9ada5910bf9184152ba603a061382c8a819a7e06706e9a0eb4351dd109abbdbe2756d59501b3190b037ce8095a550850db4872f516d831fa9d493ca
6
+ metadata.gz: efa24df45cb25c916773f4ff7c1dcc0621421016f567a54af18f77bae41a9242e9dd9a5f5bf942db4db8e133f0b17d971fed83de28fd787cf301859d035b5d61
7
+ data.tar.gz: 01156ae25535c3d559da859c6717feb59c07510291e23306920e722d35bf3c8c112b789c61d633ec7dc1d019f9ee36380c9889c56b1c7a5e990a2b79930363ff
@@ -8,7 +8,8 @@ rvm:
8
8
  - 2.1
9
9
  - 2.2
10
10
  - 2.3.3
11
- - 2.4.1
11
+ - 2.4.2
12
+ - 2.5.0
12
13
  - jruby-19mode
13
14
  - ruby-head
14
15
  - jruby-head
@@ -81,9 +81,13 @@ module Global
81
81
 
82
82
  config
83
83
  end
84
+
85
+ def respond_to_missing?(method, include_private=false)
86
+ configuration.key?(method) || super
87
+ end
84
88
 
85
89
  def method_missing(method, *args, &block)
86
90
  configuration.key?(method) ? configuration[method] : super
87
91
  end
88
92
  end
89
- end
93
+ end
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module Global
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
@@ -93,6 +93,20 @@ RSpec.describe Global do
93
93
  end
94
94
  end
95
95
  end
96
+
97
+ describe ".respond_to_missing?" do
98
+ context "when file exists" do
99
+ subject{ described_class.respond_to?(:rspec_config) }
100
+
101
+ it{ is_expected.to be_truthy }
102
+ end
103
+
104
+ context "when file does not exist" do
105
+ subject{ described_class.respond_to?(:some_file) }
106
+
107
+ it{ is_expected.to be_falsey }
108
+ end
109
+ end
96
110
 
97
111
  describe ".method_missing" do
98
112
  context "when file exists" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: global
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Railsware LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-26 00:00:00.000000000 Z
11
+ date: 2018-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec