├── .gitignore ├── .rspec ├── .ruby-version ├── .travis.yml ├── Gemfile ├── README.md ├── Rakefile ├── bin └── start-jenkins ├── docs └── enable.png ├── jenkins-ci-skip.pluginspec ├── lib └── ci_skip │ └── matcher.rb ├── models └── ci_skip_wrapper.rb └── spec ├── lib └── ci_skip │ └── matcher_spec.rb ├── models └── ci_skip_wrapper_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | work 3 | .idea 4 | *.iml 5 | Gemfile.lock 6 | coverage 7 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | jruby-1.7.9 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/start-jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/bin/start-jenkins -------------------------------------------------------------------------------- /docs/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/docs/enable.png -------------------------------------------------------------------------------- /jenkins-ci-skip.pluginspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/jenkins-ci-skip.pluginspec -------------------------------------------------------------------------------- /lib/ci_skip/matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/lib/ci_skip/matcher.rb -------------------------------------------------------------------------------- /models/ci_skip_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/models/ci_skip_wrapper.rb -------------------------------------------------------------------------------- /spec/lib/ci_skip/matcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/spec/lib/ci_skip/matcher_spec.rb -------------------------------------------------------------------------------- /spec/models/ci_skip_wrapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/spec/models/ci_skip_wrapper_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banyan/jenkins-ci-skip-plugin/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------