├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── cocoapods-readonly.gemspec ├── lib ├── cocoapods-readonly.rb ├── cocoapods-readonly │ ├── gem_version.rb │ └── toggle_readonly.rb └── cocoapods_plugin.rb └── spec ├── command └── readonly_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/cocoapods-readonly/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/cocoapods-readonly/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/cocoapods-readonly/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/cocoapods-readonly/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods-readonly.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/cocoapods-readonly/HEAD/cocoapods-readonly.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-readonly.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-readonly/gem_version' 2 | -------------------------------------------------------------------------------- /lib/cocoapods-readonly/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsReadonly 2 | VERSION = "1.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods-readonly/toggle_readonly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/cocoapods-readonly/HEAD/lib/cocoapods-readonly/toggle_readonly.rb -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/cocoapods-readonly/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /spec/command/readonly_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/cocoapods-readonly/HEAD/spec/command/readonly_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/cocoapods-readonly/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------