├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── danger-mention.gemspec ├── lib ├── danger_plugin.rb ├── finder.rb └── version.rb └── spec ├── danger_plugin_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/Rakefile -------------------------------------------------------------------------------- /danger-mention.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/danger-mention.gemspec -------------------------------------------------------------------------------- /lib/danger_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/lib/danger_plugin.rb -------------------------------------------------------------------------------- /lib/finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/lib/finder.rb -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/lib/version.rb -------------------------------------------------------------------------------- /spec/danger_plugin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/spec/danger_plugin_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danger/danger-mention/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------