├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── arp-standin.example.service ├── arp_standin.gemspec ├── bin ├── arp_standin ├── console └── setup └── lib ├── arp_standin.rb └── arp_standin └── version.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/Rakefile -------------------------------------------------------------------------------- /arp-standin.example.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/arp-standin.example.service -------------------------------------------------------------------------------- /arp_standin.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/arp_standin.gemspec -------------------------------------------------------------------------------- /bin/arp_standin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/bin/arp_standin -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/arp_standin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpgross/arp_standin/HEAD/lib/arp_standin.rb -------------------------------------------------------------------------------- /lib/arp_standin/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ArpStandin 4 | VERSION = "0.1.0" 5 | end 6 | --------------------------------------------------------------------------------