makeki 0.1.60 → 0.1.61

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 104be6ec8572faf1af74ab5ae05c77464427ec85
4
- data.tar.gz: 91a49c2fc59367cf7165da9f5612870f2302bae4
3
+ metadata.gz: d07ca49edb4929b6e514a20e34eba5b7e51737a9
4
+ data.tar.gz: 251c25658ad43c7720c336ee2723dd62b26d7285
5
5
  SHA512:
6
- metadata.gz: 6188e2f4848449c9d2f5f707adc9cc2d9a9843e9a63fc9e6473de1d9cbcdafed314780b793c9a8be06e5b5b3cf6ea847b5b430d4b9c614c7cf33b61e6bc3ddff
7
- data.tar.gz: 17aa43af2c7ee04868ee2bb53ffae98e4cc2d4ff439cab78a56f02ed343890e54b798ca208bc2c5f90dedede9e21733f896f9dc67c56b245526d1f51a0d633bf
6
+ metadata.gz: a34e5ab2b2ee554c86382787b3f86b9dbdf47938ce8a436729cf916a96e6ba6dbab8025415902f74bb11a339aa3d4a84bcac0d86bc6ee5d79ae33a9d27a9fd1f
7
+ data.tar.gz: 681f3aab2a2a849b60d2c0e771dacaf7611ae8b0b5e866f12fb80c4fa91ab28cc5b7304585a610ef2c4f9cf34615fa33d88e869a8c0b576680e449a044a22294
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/makeki.svg)](https://badge.fury.io/rb/makeki)
2
+
1
3
  # Makeki
2
4
  A framework that feels familiar but simpler to navigate as you build your app. That's the goal. Navigating through multiple directories to complete a feature feels unnecessary. This is an experiment to see if it's possible to simplify some things that can take take away from focus while programming.
3
5
  ## Installation
@@ -1,3 +1,3 @@
1
1
  module Makeki
2
- VERSION = "0.1.60"
2
+ VERSION = "0.1.61"
3
3
  end
data/lib/makeki.rb CHANGED
@@ -5,6 +5,9 @@ require "makeki/routing"
5
5
  module Makeki
6
6
  class Application
7
7
  def call(env)
8
+ if env['PATH_INFO'] == '/favicon.ico'
9
+ return [404, {'Content-Type' => 'text/html'}, []]
10
+ end
8
11
  classic, act = get_controller_and_action(env)
9
12
  controller = classic.new(env)
10
13
  text = controller.send(act)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: makeki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.60
4
+ version: 0.1.61
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cronwel Irias