uzuuzu 0.0.4 → 0.0.5

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/Gemfile.lock CHANGED
@@ -22,7 +22,7 @@ GEM
22
22
  rspec-mocks (2.6.0)
23
23
  ruby-openid (2.1.8)
24
24
  tilt (1.3.2)
25
- uzuuzu-core (0.0.9)
25
+ uzuuzu-core (0.0.10)
26
26
  extlib
27
27
  oauth
28
28
  rack
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.4
1
+ 0.0.5
data/template/app.rb CHANGED
@@ -1,3 +1,6 @@
1
1
  # coding: utf-8
2
2
 
3
- UzuUzu::Application.new
3
+ require 'controller/index'
4
+
5
+ app = UzuUzu::Application.new
6
+ app.controllers << ::Controller
@@ -0,0 +1,8 @@
1
+ # coding: utf-8
2
+
3
+ module Controller
4
+ class Index
5
+ def index
6
+ end
7
+ end
8
+ end
data/template/start.sh ADDED
@@ -0,0 +1,3 @@
1
+
2
+ ruby -I ./ start.rb
3
+ #rackup
@@ -0,0 +1,8 @@
1
+ <html>
2
+ <head>
3
+ <title>Welcome!</title>
4
+ </head>
5
+ <body>
6
+ Welcome!
7
+ </body>
8
+ </html>
data/uzuuzu.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{uzuuzu}
8
- s.version = "0.0.4"
8
+ s.version = "0.0.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Takuya Kondo"]
12
- s.date = %q{2011-09-21}
12
+ s.date = %q{2011-09-24}
13
13
  s.default_executable = %q{uzuuzu}
14
14
  s.description = %q{uzuuzu is web frame work}
15
15
  s.email = %q{takuya.v3v@gmail.com}
@@ -35,6 +35,7 @@ Gem::Specification.new do |s|
35
35
  "spec/uzuuzu_spec.rb",
36
36
  "template/app.rb",
37
37
  "template/config.ru",
38
+ "template/controller/index.rb",
38
39
  "template/public/css/images/ajax-loader.png",
39
40
  "template/public/css/images/icon-search-black.png",
40
41
  "template/public/css/images/icons-18-black.png",
@@ -62,7 +63,9 @@ Gem::Specification.new do |s|
62
63
  "template/public/js/jquery.js",
63
64
  "template/public/js/jquery.mobile.js",
64
65
  "template/start.rb",
66
+ "template/start.sh",
65
67
  "template/uzuuzu.yaml",
68
+ "template/view/index.rhtml",
66
69
  "uzuuzu.gemspec"
67
70
  ]
68
71
  s.homepage = %q{http://github.com/takuya-v-v/uzuuzu}
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: uzuuzu
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.4
5
+ version: 0.0.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Takuya Kondo
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-09-21 00:00:00 +09:00
13
+ date: 2011-09-24 00:00:00 +09:00
14
14
  default_executable: uzuuzu
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -94,6 +94,7 @@ files:
94
94
  - spec/uzuuzu_spec.rb
95
95
  - template/app.rb
96
96
  - template/config.ru
97
+ - template/controller/index.rb
97
98
  - template/public/css/images/ajax-loader.png
98
99
  - template/public/css/images/icon-search-black.png
99
100
  - template/public/css/images/icons-18-black.png
@@ -121,7 +122,9 @@ files:
121
122
  - template/public/js/jquery.js
122
123
  - template/public/js/jquery.mobile.js
123
124
  - template/start.rb
125
+ - template/start.sh
124
126
  - template/uzuuzu.yaml
127
+ - template/view/index.rhtml
125
128
  - uzuuzu.gemspec
126
129
  has_rdoc: true
127
130
  homepage: http://github.com/takuya-v-v/uzuuzu
@@ -137,7 +140,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
137
140
  requirements:
138
141
  - - ">="
139
142
  - !ruby/object:Gem::Version
140
- hash: 1623074847169392847
143
+ hash: -3853684900255749772
141
144
  segments:
142
145
  - 0
143
146
  version: "0"