├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── RELEASING.md ├── Rakefile ├── appveyor.yml ├── bin └── percy ├── lib └── percy │ ├── cli.rb │ └── cli │ ├── snapshot_runner.rb │ └── version.rb ├── percy-cli.gemspec └── spec ├── percy └── cli │ ├── snapshot_runner_spec.rb │ └── testdata │ ├── README.md │ ├── css │ ├── base.css │ ├── test with spaces.css │ └── unrelated-no-extension │ ├── ignore.html │ ├── images │ ├── jellybeans-symlink.png │ ├── jellybeans.png │ └── large-file-skipped.png │ ├── images_symlink │ ├── index.html │ ├── index.xml │ ├── skip.html │ ├── subdir │ ├── test.html │ ├── test.xml │ └── test_symlink.html │ └── subdir_symlink └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format d 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/RELEASING.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/percy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/bin/percy -------------------------------------------------------------------------------- /lib/percy/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/lib/percy/cli.rb -------------------------------------------------------------------------------- /lib/percy/cli/snapshot_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/lib/percy/cli/snapshot_runner.rb -------------------------------------------------------------------------------- /lib/percy/cli/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/lib/percy/cli/version.rb -------------------------------------------------------------------------------- /percy-cli.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/percy-cli.gemspec -------------------------------------------------------------------------------- /spec/percy/cli/snapshot_runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/percy/cli/snapshot_runner_spec.rb -------------------------------------------------------------------------------- /spec/percy/cli/testdata/README.md: -------------------------------------------------------------------------------- 1 | ### This is a readme 2 | -------------------------------------------------------------------------------- /spec/percy/cli/testdata/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/percy/cli/testdata/css/base.css -------------------------------------------------------------------------------- /spec/percy/cli/testdata/css/test with spaces.css: -------------------------------------------------------------------------------- 1 | h1 { color: blue; } -------------------------------------------------------------------------------- /spec/percy/cli/testdata/css/unrelated-no-extension: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/percy/cli/testdata/ignore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/percy/cli/testdata/ignore.html -------------------------------------------------------------------------------- /spec/percy/cli/testdata/images/jellybeans-symlink.png: -------------------------------------------------------------------------------- 1 | jellybeans.png -------------------------------------------------------------------------------- /spec/percy/cli/testdata/images/jellybeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/percy/cli/testdata/images/jellybeans.png -------------------------------------------------------------------------------- /spec/percy/cli/testdata/images/large-file-skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/percy/cli/testdata/images/large-file-skipped.png -------------------------------------------------------------------------------- /spec/percy/cli/testdata/images_symlink: -------------------------------------------------------------------------------- 1 | images/ -------------------------------------------------------------------------------- /spec/percy/cli/testdata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/percy/cli/testdata/index.html -------------------------------------------------------------------------------- /spec/percy/cli/testdata/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/percy/cli/testdata/index.xml -------------------------------------------------------------------------------- /spec/percy/cli/testdata/skip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/percy/cli/testdata/skip.html -------------------------------------------------------------------------------- /spec/percy/cli/testdata/subdir/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/percy/cli/testdata/subdir/test.html -------------------------------------------------------------------------------- /spec/percy/cli/testdata/subdir/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/percy/cli/testdata/subdir/test.xml -------------------------------------------------------------------------------- /spec/percy/cli/testdata/subdir/test_symlink.html: -------------------------------------------------------------------------------- 1 | test.html -------------------------------------------------------------------------------- /spec/percy/cli/testdata/subdir_symlink: -------------------------------------------------------------------------------- 1 | subdir -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cli-ruby/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------