erik_rulers 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fef9967474d2c0493ea21ae9d2700a2d0f7ad834
4
+ data.tar.gz: d45723db4938f6c3f9bd761de9fa616fb93f01ec
5
+ SHA512:
6
+ metadata.gz: d0b84989969cb19329b97446cea9de3648e569e9dca44d226ca04826d9c06a9901dffa4ff47c32e01c453689ee485fbde82a5cc3f1bb1cbc09196f44718690d2
7
+ data.tar.gz: 137caf79c384aefa2becdba875ba37412cc1d5c8ec4360e3077c866c616b8cf6e9f54b55b2f5037ad86077e751408fc7b611fb79c985668f8024d72a8f3864ee
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rulers.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Erik Nilsen
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # Rulers
2
+
3
+ A rack based gem similar to Rails.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'rulers', :git => 'git://github.com/enilsen16/rulers_gem.git'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install rulers
18
+
19
+ ## Usage
20
+
21
+ Right now you can start a new server with:
22
+
23
+ rackup -p 3001
24
+
25
+ Then navigate to:
26
+
27
+ http://localhost:3001
28
+
29
+ ## Contributing
30
+
31
+ 1. Fork it ( https://github.com/enilsen16/rulers/fork )
32
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
33
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
34
+ 4. Push to the branch (`git push origin my-new-feature`)
35
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,5 @@
1
+ class Array
2
+ def sum(start = 0)
3
+ inject(start, &:+)
4
+ end
5
+ end
@@ -0,0 +1,12 @@
1
+ module Rulers
2
+ class Application
3
+ def get_controller_and_action(env)
4
+ _, cont, action, after =
5
+ env["PATH_INFO"].split('/', 4)
6
+ cont = cont.capitalize # "People"
7
+ cont += "Controller" # "PeopleController"
8
+
9
+ [Object.const_get(cont), action]
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,3 @@
1
+ module Rulers
2
+ VERSION = "0.0.3"
3
+ end
data/lib/rulers.rb ADDED
@@ -0,0 +1,33 @@
1
+ require "rulers/version"
2
+ require "rulers/routing"
3
+
4
+ module Rulers
5
+ class Application
6
+ def call(env)
7
+ if env['PATH_INFO'] == '/favicon.ico'
8
+ return [404,
9
+ {'Content-Type' => 'text/html'}, []]
10
+ end
11
+
12
+ if env['PATH_INFO'] == '/'
13
+ return [204, {'Content-Type'=> 'text/html'},["Incorrect URL!!!!"]]
14
+ end
15
+
16
+ klass, act = get_controller_and_action(env)
17
+ controller = klass.new(env)
18
+ text = controller.send(act)
19
+ [200, {'Content-Type' => 'text/html'},
20
+ [text]]
21
+ end
22
+ end
23
+
24
+ class Controller
25
+ def initialize(env)
26
+ @env = env
27
+ end
28
+
29
+ def env
30
+ @env
31
+ end
32
+ end
33
+ end
data/rulers.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rulers/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "erik_rulers"
8
+ spec.version = Rulers::VERSION
9
+ spec.authors = ["Erik Nilsen"]
10
+ spec.email = ["enilsen16@live.com"]
11
+ spec.summary = %q{A Rack-based Web Framework.}
12
+ spec.description = %q{A Rack-based Web Framework, similar to rails.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_runtime_dependency "rack"
24
+ spec.add_development_dependency "rack-test"
25
+ spec.add_development_dependency "test-unit"
26
+ end
@@ -0,0 +1,20 @@
1
+ require_relative "test_helper"
2
+
3
+ class TestApp < Rulers::Application
4
+ end
5
+
6
+ class RulersAppTest < Test::Unit::TestCase
7
+ include Rack::Test::Methods
8
+
9
+ def app
10
+ TestApp.new
11
+ end
12
+
13
+ def test_request
14
+ get "/"
15
+
16
+ assert last_response.ok?
17
+ body = last_response.body
18
+ assert body["Hello"]
19
+ end
20
+ end
@@ -0,0 +1,7 @@
1
+ require "rack/test"
2
+ require "test/unit"
3
+
4
+ d = File.join(File.dirname(__FILE__), "..", "lib")
5
+ $LOAD_PATH.unshift File.expand_path(d)
6
+
7
+ require "rulers"
metadata ADDED
@@ -0,0 +1,128 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: erik_rulers
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Erik Nilsen
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rack
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rack-test
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: test-unit
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: A Rack-based Web Framework, similar to rails.
84
+ email:
85
+ - enilsen16@live.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - Gemfile
92
+ - LICENSE.txt
93
+ - README.md
94
+ - Rakefile
95
+ - lib/rulers.rb
96
+ - lib/rulers/array.rb
97
+ - lib/rulers/routing.rb
98
+ - lib/rulers/version.rb
99
+ - rulers.gemspec
100
+ - test/test_application.rb
101
+ - test/test_helper.rb
102
+ homepage: ''
103
+ licenses:
104
+ - MIT
105
+ metadata: {}
106
+ post_install_message:
107
+ rdoc_options: []
108
+ require_paths:
109
+ - lib
110
+ required_ruby_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ required_rubygems_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ requirements: []
121
+ rubyforge_project:
122
+ rubygems_version: 2.2.2
123
+ signing_key:
124
+ specification_version: 4
125
+ summary: A Rack-based Web Framework.
126
+ test_files:
127
+ - test/test_application.rb
128
+ - test/test_helper.rb