├── .gitignore ├── .rubocop.yml ├── .rubocop_cocoapods.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── cork.gemspec ├── lib ├── cork.rb └── cork │ ├── board.rb │ ├── gem_version.rb │ └── text_wrapper.rb └── spec ├── board_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_cocoapods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/.rubocop_cocoapods.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/Rakefile -------------------------------------------------------------------------------- /cork.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/cork.gemspec -------------------------------------------------------------------------------- /lib/cork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/lib/cork.rb -------------------------------------------------------------------------------- /lib/cork/board.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/lib/cork/board.rb -------------------------------------------------------------------------------- /lib/cork/gem_version.rb: -------------------------------------------------------------------------------- 1 | module Cork 2 | VERSION = '0.3.0' 3 | end 4 | -------------------------------------------------------------------------------- /lib/cork/text_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/lib/cork/text_wrapper.rb -------------------------------------------------------------------------------- /spec/board_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/spec/board_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/Cork/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------