Skip to content

Commit

Permalink
Merge pull request #13 from spaxcell/expose_localdictionarydatasource…
Browse files Browse the repository at this point in the history
…_and_localfiledatasource

req LocalDictionaryDataSource/LocalFileDataSource
  • Loading branch information
kp-cat authored May 30, 2022
2 parents b0a8cc6 + 79004a9 commit bab870f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/configcat.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
require 'configcat/interfaces'
require 'configcat/localdictionarydatasource'
require 'configcat/localfiledatasource'
require 'configcat/configcatclient'
require 'configcat/user'
require 'logger'
Expand Down
8 changes: 8 additions & 0 deletions spec/configcat_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,12 @@
it "has a version number" do
expect(ConfigCat::VERSION).not_to be nil
end

it "exposes ConfigCat::LocalDictionaryDataSource" do
expect(ConfigCat::LocalDictionaryDataSource).not_to be nil
end

it "exposes ConfigCat::LocalFileDataSource" do
expect(ConfigCat::LocalFileDataSource).not_to be nil
end
end

0 comments on commit bab870f

Please sign in to comment.