├── .circleci └── config.yml ├── .credo.exs ├── .formatter.exs ├── .github └── dependabot.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSES ├── Apache-2.0.txt ├── CC-BY-4.0.txt └── CC0-1.0.txt ├── NOTICE ├── README.md ├── REUSE.toml ├── bench └── bench.exs ├── lib ├── property_table.ex └── property_table │ ├── event.ex │ ├── matcher.ex │ ├── matcher │ └── string_path.ex │ ├── persist.ex │ ├── persist_file.ex │ ├── supervisor.ex │ └── updater.ex ├── mix.exs ├── mix.lock └── test ├── property_table ├── matcher │ └── string_path_test.exs └── persist_test.exs ├── property_table_test.exs └── test_helper.exs /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.credo.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/.credo.exs -------------------------------------------------------------------------------- /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/REUSE.toml -------------------------------------------------------------------------------- /bench/bench.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/bench/bench.exs -------------------------------------------------------------------------------- /lib/property_table.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/lib/property_table.ex -------------------------------------------------------------------------------- /lib/property_table/event.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/lib/property_table/event.ex -------------------------------------------------------------------------------- /lib/property_table/matcher.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/lib/property_table/matcher.ex -------------------------------------------------------------------------------- /lib/property_table/matcher/string_path.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/lib/property_table/matcher/string_path.ex -------------------------------------------------------------------------------- /lib/property_table/persist.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/lib/property_table/persist.ex -------------------------------------------------------------------------------- /lib/property_table/persist_file.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/lib/property_table/persist_file.ex -------------------------------------------------------------------------------- /lib/property_table/supervisor.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/lib/property_table/supervisor.ex -------------------------------------------------------------------------------- /lib/property_table/updater.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/lib/property_table/updater.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/mix.lock -------------------------------------------------------------------------------- /test/property_table/matcher/string_path_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/test/property_table/matcher/string_path_test.exs -------------------------------------------------------------------------------- /test/property_table/persist_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/test/property_table/persist_test.exs -------------------------------------------------------------------------------- /test/property_table_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/test/property_table_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerves-project/property_table/HEAD/test/test_helper.exs --------------------------------------------------------------------------------