├── .gitignore ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── bin └── sir-sync-a-lot ├── lib └── sir-sync-a-lot.rb └── sir-sync-a-lot.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan-allen/sir-sync-a-lot/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan-allen/sir-sync-a-lot/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan-allen/sir-sync-a-lot/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /bin/sir-sync-a-lot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan-allen/sir-sync-a-lot/HEAD/bin/sir-sync-a-lot -------------------------------------------------------------------------------- /lib/sir-sync-a-lot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan-allen/sir-sync-a-lot/HEAD/lib/sir-sync-a-lot.rb -------------------------------------------------------------------------------- /sir-sync-a-lot.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryan-allen/sir-sync-a-lot/HEAD/sir-sync-a-lot.gemspec --------------------------------------------------------------------------------