├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── danger-SwiftInfo.gemspec ├── lib ├── danger_SwiftInfo.rb └── danger_plugin.rb └── spec ├── SwiftInfo_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | .yardoc 5 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/Rakefile -------------------------------------------------------------------------------- /danger-SwiftInfo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/danger-SwiftInfo.gemspec -------------------------------------------------------------------------------- /lib/danger_SwiftInfo.rb: -------------------------------------------------------------------------------- 1 | module SwiftInfo 2 | VERSION = "0.1.0".freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/danger_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/lib/danger_plugin.rb -------------------------------------------------------------------------------- /spec/SwiftInfo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/spec/SwiftInfo_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/danger-SwiftInfo/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------