pakyow 0.6.1 → 0.6.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. metadata +16 -11
  2. data/README +0 -54
metadata CHANGED
@@ -1,21 +1,24 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pakyow
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 113
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
+ - 3
9
10
  - 1
10
- version: 0.6.1
11
+ version: 0.6.3.1
11
12
  platform: ruby
12
13
  authors:
13
14
  - Bryan Powell
15
+ - Bret Young
14
16
  autorequire:
15
17
  bindir: bin
16
18
  cert_chain: []
17
19
 
18
- date: 2011-08-20 00:00:00 Z
20
+ date: 2011-09-13 00:00:00 -05:00
21
+ default_executable:
19
22
  dependencies:
20
23
  - !ruby/object:Gem::Dependency
21
24
  name: pakyow-core
@@ -25,12 +28,13 @@ dependencies:
25
28
  requirements:
26
29
  - - "="
27
30
  - !ruby/object:Gem::Version
28
- hash: 5
31
+ hash: 113
29
32
  segments:
30
33
  - 0
31
34
  - 6
35
+ - 3
32
36
  - 1
33
- version: 0.6.1
37
+ version: 0.6.3.1
34
38
  type: :runtime
35
39
  version_requirements: *id001
36
40
  - !ruby/object:Gem::Dependency
@@ -41,15 +45,16 @@ dependencies:
41
45
  requirements:
42
46
  - - "="
43
47
  - !ruby/object:Gem::Version
44
- hash: 5
48
+ hash: 113
45
49
  segments:
46
50
  - 0
47
51
  - 6
52
+ - 3
48
53
  - 1
49
- version: 0.6.1
54
+ version: 0.6.3.1
50
55
  type: :runtime
51
56
  version_requirements: *id002
52
- description: Pakyow web application framework.
57
+ description: ""
53
58
  email: bryan@metabahn.com
54
59
  executables: []
55
60
 
@@ -58,9 +63,9 @@ extensions: []
58
63
  extra_rdoc_files: []
59
64
 
60
65
  files:
61
- - README
62
66
  - MIT-LICENSE
63
67
  - lib/pakyow.rb
68
+ has_rdoc: true
64
69
  homepage: http://pakyow.com
65
70
  licenses: []
66
71
 
@@ -94,9 +99,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
99
  requirements: []
95
100
 
96
101
  rubyforge_project: pakyow
97
- rubygems_version: 1.8.8
102
+ rubygems_version: 1.6.2
98
103
  signing_key:
99
104
  specification_version: 3
100
- summary: Pakyow web application framework.
105
+ summary: Punch packing application framework.
101
106
  test_files: []
102
107
 
data/README DELETED
@@ -1,54 +0,0 @@
1
- # Introduction
2
-
3
- Pakyow is a web framework for Ruby that knocks out projects with a serious
4
- punch. Pound for pound its the best way to build a web app. Get ready to rumble.
5
-
6
- Pakyow brings a unique approach to development:
7
-
8
- ## Views are views.
9
- Views are 100% HTML, no template language required. The view has finally been
10
- freed from logic.
11
-
12
- ## Views are data aware.
13
- A view knows what it presents. Use this to create powerful connections between
14
- business logic and views.
15
-
16
- ## Keep you moving forward.
17
- Prototype an app by building the views first. Then write the view logic
18
- without changing a single view.
19
-
20
- There are two main components of Pakyow. The first is Pakyow Core, which
21
- handles routing requests to business logic. The second component is Pakyow
22
- Presenter, which gives an application the ability to have a presentation
23
- layer and provides mechanisms for the controller to bind data to the
24
- presentation layer. Pakyow Core can operate independently of Pakyow
25
- Presenter for those cases where an application doesn't need a presentation layer.
26
-
27
- # Getting Started
28
-
29
- 1. Install Pakyow:
30
-
31
- gem install pakyow
32
-
33
- 2. Create a new Pakyow application from the command prompt:
34
-
35
- pakyow new webapp
36
-
37
- 3. Move to the "webapp" directory and start the application:
38
-
39
- cd webapp; pakyow server
40
-
41
- 4. You'll find the application running here: http://localhost:3000
42
-
43
- # Next Steps
44
-
45
- The following resources might be handy:
46
-
47
- Website:
48
- http://pakyow.com
49
-
50
- Manual:
51
- http://pakyow.com/manual
52
-
53
- Code:
54
- http://github.com/metabahn/pakyow