├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib └── non_empty_array.rb ├── non_empty_array.gemspec ├── sorbet ├── config └── rbi │ ├── gems │ ├── rake.rbi │ ├── rspec-core.rbi │ ├── rspec-expectations.rbi │ ├── rspec-mocks.rbi │ ├── rspec-support.rbi │ └── rspec.rbi │ ├── hidden-definitions │ ├── errors.txt │ └── hidden.rbi │ └── todo.rbi └── spec ├── non_empty_array_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/non_empty_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/lib/non_empty_array.rb -------------------------------------------------------------------------------- /non_empty_array.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/non_empty_array.gemspec -------------------------------------------------------------------------------- /sorbet/config: -------------------------------------------------------------------------------- 1 | --dir 2 | . 3 | -------------------------------------------------------------------------------- /sorbet/rbi/gems/rake.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/sorbet/rbi/gems/rake.rbi -------------------------------------------------------------------------------- /sorbet/rbi/gems/rspec-core.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/sorbet/rbi/gems/rspec-core.rbi -------------------------------------------------------------------------------- /sorbet/rbi/gems/rspec-expectations.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/sorbet/rbi/gems/rspec-expectations.rbi -------------------------------------------------------------------------------- /sorbet/rbi/gems/rspec-mocks.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/sorbet/rbi/gems/rspec-mocks.rbi -------------------------------------------------------------------------------- /sorbet/rbi/gems/rspec-support.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/sorbet/rbi/gems/rspec-support.rbi -------------------------------------------------------------------------------- /sorbet/rbi/gems/rspec.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/sorbet/rbi/gems/rspec.rbi -------------------------------------------------------------------------------- /sorbet/rbi/hidden-definitions/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/sorbet/rbi/hidden-definitions/errors.txt -------------------------------------------------------------------------------- /sorbet/rbi/hidden-definitions/hidden.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/sorbet/rbi/hidden-definitions/hidden.rbi -------------------------------------------------------------------------------- /sorbet/rbi/todo.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/sorbet/rbi/todo.rbi -------------------------------------------------------------------------------- /spec/non_empty_array_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/spec/non_empty_array_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogweather/non_empty_array/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------