├── .gitignore ├── .travis.yml ├── Gemfile ├── README.md ├── Rakefile ├── UNLICENSE ├── block-is-array.gemspec ├── examples └── nginx.rb ├── lib ├── block-is-array.rb └── block-is-array │ ├── class.rb │ └── function.rb └── tool └── run_readme.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | Gemfile.lock 3 | tmp 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raviqqe/block-is-array/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raviqqe/block-is-array/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raviqqe/block-is-array/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raviqqe/block-is-array/HEAD/Rakefile -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raviqqe/block-is-array/HEAD/UNLICENSE -------------------------------------------------------------------------------- /block-is-array.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raviqqe/block-is-array/HEAD/block-is-array.gemspec -------------------------------------------------------------------------------- /examples/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raviqqe/block-is-array/HEAD/examples/nginx.rb -------------------------------------------------------------------------------- /lib/block-is-array.rb: -------------------------------------------------------------------------------- 1 | require_relative 'block-is-array/function' 2 | -------------------------------------------------------------------------------- /lib/block-is-array/class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raviqqe/block-is-array/HEAD/lib/block-is-array/class.rb -------------------------------------------------------------------------------- /lib/block-is-array/function.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raviqqe/block-is-array/HEAD/lib/block-is-array/function.rb -------------------------------------------------------------------------------- /tool/run_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raviqqe/block-is-array/HEAD/tool/run_readme.sh --------------------------------------------------------------------------------