├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── react-native-logcat ├── extras ├── screenshot.png ├── screenshot2.png └── thumbnail.jpg ├── lib ├── react-native-logcat.rb └── react-native-logcat │ └── version.rb └── react-native-logcat.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | yo 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /bin/react-native-logcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/bin/react-native-logcat -------------------------------------------------------------------------------- /extras/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/extras/screenshot.png -------------------------------------------------------------------------------- /extras/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/extras/screenshot2.png -------------------------------------------------------------------------------- /extras/thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/extras/thumbnail.jpg -------------------------------------------------------------------------------- /lib/react-native-logcat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/lib/react-native-logcat.rb -------------------------------------------------------------------------------- /lib/react-native-logcat/version.rb: -------------------------------------------------------------------------------- 1 | module ReactNativeLogCat 2 | VERSION = "0.2.5" 3 | end 4 | -------------------------------------------------------------------------------- /react-native-logcat.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/react-native-logcat/HEAD/react-native-logcat.gemspec --------------------------------------------------------------------------------