makeki 0.1.52 → 0.1.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 510e1e84b66d162b35eccc71f93f4ed6059ff174
4
- data.tar.gz: d1caf87897ee2eb884b6cc4e0733ed4e31b4ed36
3
+ metadata.gz: 104be6ec8572faf1af74ab5ae05c77464427ec85
4
+ data.tar.gz: 91a49c2fc59367cf7165da9f5612870f2302bae4
5
5
  SHA512:
6
- metadata.gz: 1a764543d1c141ce5928091d94194cf4344d7472d5416d07e47fd9a1372f604a0d9a935027e28fde4b935aedfc8ee498ee45d2c9d23819a77514306f41f2e630
7
- data.tar.gz: f95a39ca04b56d19984123aef07d0150e32e955bd24d6d829f5b2e39888225488a8803d0cd368149ac7d5f2dc1ff991a82af1139e63a4141e53fc189ba4b3f67
6
+ metadata.gz: 6188e2f4848449c9d2f5f707adc9cc2d9a9843e9a63fc9e6473de1d9cbcdafed314780b793c9a8be06e5b5b3cf6ea847b5b430d4b9c614c7cf33b61e6bc3ddff
7
+ data.tar.gz: 17aa43af2c7ee04868ee2bb53ffae98e4cc2d4ff439cab78a56f02ed343890e54b798ca208bc2c5f90dedede9e21733f896f9dc67c56b245526d1f51a0d633bf
data/README.md CHANGED
@@ -1,9 +1,5 @@
1
1
  # Makeki
2
-
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/makeki`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
2
+ 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.
7
3
  ## Installation
8
4
 
9
5
  Add this line to your application's Gemfile:
@@ -14,7 +10,7 @@ gem 'makeki'
14
10
 
15
11
  And then execute:
16
12
 
17
- $ bundle
13
+ $ bundle
18
14
 
19
15
  Or install it yourself as:
20
16
 
@@ -46,7 +42,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
46
42
 
47
43
  ## Contributing
48
44
 
49
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/makeki. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
45
+ Bug reports and pull requests are welcome on GitHub at https://github.com/cronwel/makeki. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
50
46
 
51
47
  ## License
52
48
 
@@ -1,11 +1,12 @@
1
1
  require "makeki/version"
2
2
  require "makeki/array"
3
+ require "makeki/routing"
3
4
 
4
5
  module Makeki
5
6
  class Application
6
7
  def call(env)
7
- klass, act = get_controller_and_action(env)
8
- controller = klass.new(env)
8
+ classic, act = get_controller_and_action(env)
9
+ controller = classic.new(env)
9
10
  text = controller.send(act)
10
11
  [200, {'Content-Type' => 'text/html'},
11
12
  [text]]
@@ -1,3 +1,3 @@
1
1
  module Makeki
2
- VERSION = "0.1.52"
2
+ VERSION = "0.1.60"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: makeki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.52
4
+ version: 0.1.60
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cronwel Irias
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-06-25 00:00:00.000000000 Z
11
+ date: 2018-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler