├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── cocoapods-expert-difficulty.gemspec ├── lib ├── cocoapods-expert-difficulty.rb ├── cocoapods-expert-difficulty │ └── gem_version.rb └── cocoapods_plugin.rb └── spec ├── command └── difficulty_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-expert-difficulty/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-expert-difficulty/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-expert-difficulty/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-expert-difficulty/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-expert-difficulty/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods-expert-difficulty.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-expert-difficulty/HEAD/cocoapods-expert-difficulty.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-expert-difficulty.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-expert-difficulty/gem_version' 2 | -------------------------------------------------------------------------------- /lib/cocoapods-expert-difficulty/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsExpertDifficulty 2 | VERSION = "1.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-expert-difficulty/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /spec/command/difficulty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-expert-difficulty/HEAD/spec/command/difficulty_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-expert-difficulty/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------