makeki 0.1.6 → 0.1.52

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: bb331abc776bb566ee5fcbcb03994de5d5c5540e
4
- data.tar.gz: c4b4bc144c14827eb334bc7c4ffa27fcc3e6009d
3
+ metadata.gz: 510e1e84b66d162b35eccc71f93f4ed6059ff174
4
+ data.tar.gz: d1caf87897ee2eb884b6cc4e0733ed4e31b4ed36
5
5
  SHA512:
6
- metadata.gz: 1bc9e04bb99a44ccbb59fd09f576cf24f1bea5d9d7bd07a2e85ada81bff8fd8b7620b797955211bdfad11ff5764d9aca5e9ea03a470fc4aa996747eab42671e8
7
- data.tar.gz: 5b6d4ad8011333b5c95c59b7003d3683b76bb4923730f7d312784a51ff766de34f0cc4cf57ce89746d5a79d41a29ae61dea904b51aeeac268849ded8f2f50cf9
6
+ metadata.gz: 1a764543d1c141ce5928091d94194cf4344d7472d5416d07e47fd9a1372f604a0d9a935027e28fde4b935aedfc8ee498ee45d2c9d23819a77514306f41f2e630
7
+ data.tar.gz: f95a39ca04b56d19984123aef07d0150e32e955bd24d6d829f5b2e39888225488a8803d0cd368149ac7d5f2dc1ff991a82af1139e63a4141e53fc189ba4b3f67
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Makeki
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.
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
+
3
7
  ## Installation
4
8
 
5
9
  Add this line to your application's Gemfile:
@@ -10,7 +14,7 @@ gem 'makeki'
10
14
 
11
15
  And then execute:
12
16
 
13
- $ bundle
17
+ $ bundle
14
18
 
15
19
  Or install it yourself as:
16
20
 
@@ -42,7 +46,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
42
46
 
43
47
  ## Contributing
44
48
 
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.
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.
46
50
 
47
51
  ## License
48
52
 
@@ -1,3 +1,3 @@
1
1
  module Makeki
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.52"
3
3
  end
data/lib/makeki.rb CHANGED
@@ -1,12 +1,11 @@
1
1
  require "makeki/version"
2
2
  require "makeki/array"
3
- require "makeki/routing"
4
3
 
5
4
  module Makeki
6
5
  class Application
7
6
  def call(env)
8
- classic, act = get_controller_and_action(env)
9
- controller = classic.new(env)
7
+ klass, act = get_controller_and_action(env)
8
+ controller = klass.new(env)
10
9
  text = controller.send(act)
11
10
  [200, {'Content-Type' => 'text/html'},
12
11
  [text]]
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.6
4
+ version: 0.1.52
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-26 00:00:00.000000000 Z
11
+ date: 2018-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler