Oshuma-corrupt 0.3.6
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.
- data/README +34 -0
- data/bin/corrupt +10 -0
- metadata +78 -0
data/README
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
= Corrupt
|
2
|
+
|
3
|
+
Bare-bones Rack based MVC framework.
|
4
|
+
|
5
|
+
So many buzz-words, it could kill a baby seal.
|
6
|
+
|
7
|
+
=== Code
|
8
|
+
|
9
|
+
* Github: http://github.com/Oshuma/corrupt.rack
|
10
|
+
* Rubyforge: http://rubyforge.org/projects/corrupt
|
11
|
+
|
12
|
+
=== Getting Started
|
13
|
+
|
14
|
+
If you haven't already:
|
15
|
+
|
16
|
+
# From Rubyforge
|
17
|
+
$ [sudo] gem install corrupt
|
18
|
+
|
19
|
+
# From Github
|
20
|
+
$ [sudo] gem install Oshuma-corrupt --source http://gems.github.com/
|
21
|
+
|
22
|
+
This will generate a new application:
|
23
|
+
|
24
|
+
$ corrupt -n /path/to/kickass_app
|
25
|
+
$ cd /path/to/kickass_app
|
26
|
+
|
27
|
+
Then just copy and edit the example app_config.yml:
|
28
|
+
|
29
|
+
$ cp config/app_config.yml.example config/app_config.yml
|
30
|
+
$ $EDITOR config/app_config.yml
|
31
|
+
|
32
|
+
Now start the server (through Rack):
|
33
|
+
|
34
|
+
$ rake run:rackup
|
data/bin/corrupt
ADDED
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: Oshuma-corrupt
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.6
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dale Campbell
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-04-17 00:00:00 -07:00
|
13
|
+
default_executable: corrupt
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: dm-core
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.9.11
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: haml
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.0.9
|
34
|
+
version:
|
35
|
+
description: No nonsense Rack-based framework.
|
36
|
+
email:
|
37
|
+
- dale@save-state.net
|
38
|
+
executables:
|
39
|
+
- corrupt
|
40
|
+
extensions: []
|
41
|
+
|
42
|
+
extra_rdoc_files:
|
43
|
+
- README
|
44
|
+
files:
|
45
|
+
- README
|
46
|
+
has_rdoc: true
|
47
|
+
homepage: http://github.com/Oshuma/corrupt.rack/
|
48
|
+
post_install_message:
|
49
|
+
rdoc_options:
|
50
|
+
- --title
|
51
|
+
- Corrupt API
|
52
|
+
- --main
|
53
|
+
- README
|
54
|
+
- --inline-source
|
55
|
+
- --line-numbers
|
56
|
+
require_paths:
|
57
|
+
- lib
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: "0"
|
63
|
+
version:
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: "0"
|
69
|
+
version:
|
70
|
+
requirements: []
|
71
|
+
|
72
|
+
rubyforge_project: corrupt
|
73
|
+
rubygems_version: 1.2.0
|
74
|
+
signing_key:
|
75
|
+
specification_version: 2
|
76
|
+
summary: Rack-based MVC framework.
|
77
|
+
test_files: []
|
78
|
+
|