├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── vagrant-timezone.rb └── vagrant-timezone │ ├── action │ └── set_timezone.rb │ ├── cap │ ├── debian.rb │ ├── gentoo.rb │ ├── linux.rb │ ├── redhat.rb │ ├── unix.rb │ └── windows.rb │ ├── config.rb │ ├── logger.rb │ ├── plugin.rb │ └── version.rb ├── locales └── en.yml ├── tasks └── acceptance.rake ├── test ├── acceptance │ ├── config │ │ ├── boxes.yaml │ │ └── vagrant-spec.config.rb │ ├── skeletons │ │ └── timezone │ │ │ └── Vagrantfile │ ├── support │ │ ├── box_helper.rb │ │ └── spec_helper.rb │ └── vagrant-timezone │ │ └── timezone_spec.rb ├── spec_helper.rb └── unit │ └── vagrant-timezone │ ├── cap │ └── windows_spec.rb │ └── config_spec.rb └── vagrant-timezone.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle 2 | /Gemfile.lock 3 | *.gem 4 | /test/acceptance/boxes/ 5 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/vagrant-timezone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/action/set_timezone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/action/set_timezone.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/cap/debian.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/cap/debian.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/cap/gentoo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/cap/gentoo.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/cap/linux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/cap/linux.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/cap/redhat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/cap/redhat.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/cap/unix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/cap/unix.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/cap/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/cap/windows.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/config.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/logger.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/plugin.rb -------------------------------------------------------------------------------- /lib/vagrant-timezone/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/lib/vagrant-timezone/version.rb -------------------------------------------------------------------------------- /locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/locales/en.yml -------------------------------------------------------------------------------- /tasks/acceptance.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/tasks/acceptance.rake -------------------------------------------------------------------------------- /test/acceptance/config/boxes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/test/acceptance/config/boxes.yaml -------------------------------------------------------------------------------- /test/acceptance/config/vagrant-spec.config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/test/acceptance/config/vagrant-spec.config.rb -------------------------------------------------------------------------------- /test/acceptance/skeletons/timezone/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/test/acceptance/skeletons/timezone/Vagrantfile -------------------------------------------------------------------------------- /test/acceptance/support/box_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/test/acceptance/support/box_helper.rb -------------------------------------------------------------------------------- /test/acceptance/support/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/test/acceptance/support/spec_helper.rb -------------------------------------------------------------------------------- /test/acceptance/vagrant-timezone/timezone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/test/acceptance/vagrant-timezone/timezone_spec.rb -------------------------------------------------------------------------------- /test/spec_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | $LOAD_PATH.unshift File.expand_path('../lib', __dir__) 4 | -------------------------------------------------------------------------------- /test/unit/vagrant-timezone/cap/windows_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/test/unit/vagrant-timezone/cap/windows_spec.rb -------------------------------------------------------------------------------- /test/unit/vagrant-timezone/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/test/unit/vagrant-timezone/config_spec.rb -------------------------------------------------------------------------------- /vagrant-timezone.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-timezone/HEAD/vagrant-timezone.gemspec --------------------------------------------------------------------------------