Popularity
0.7
Stable
Activity
0.0
Stable
7
3
1
Monthly Downloads: 60
Programming language: Ruby
License: The Unlicense
block-is-hash alternatives and similar gems
Based on the "Data Structures" category.
Alternatively, view block-is-hash alternatives based on common mentions on social networks and blogs.
-
Flashtext Ruby Gem
A Ruby Port of the Python package FlashText @ https://github.com/vi3k6i5/flashtext
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of block-is-hash or a related project?
README
block-is-hash
Block is Hash
Installation
$ gem install block-is-hash
Usage
Code:
require 'block-is-hash'
hash = block_is_hash %i(server) do # `server` directive can be repeated.
user :www
http do
server do
listen 80
server_name 'foo.com'
end
server do
listen 443, :ssl
server_name 'bar.com'
end
end
end
p hash
Output:
{:user=>:www, :http=>{:server=>[{:listen=>80, :server_name=>"foo.com"}, {:listen=>[443, :ssl], :server_name=>"bar.com"}]}}
For more examples, see [examples](examples) directory.
License
*Note that all licence references and agreements mentioned in the block-is-hash README section above
are relevant to that project's source code only.