jt-mobile-kit 0.0.4 → 1.0.0
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 +15 -0
- data/lib/jt-mobile-kit/version.rb +1 -1
- data/lib/jt-mobile-kit/www_rb/templates/Gemfile +2 -3
- data/lib/jt-mobile-kit/www_rb/templates/component/{custom_component.haml → .gitkeep} +0 -0
- data/lib/jt-mobile-kit/www_rb/templates/hamls/index.haml +30 -0
- data/lib/jt-mobile-kit/www_rb/templates/{js/pages.js → hamls/pages/.gitkeep} +0 -0
- data/lib/jt-mobile-kit/www_rb/templates/js/application.js +39 -10
- data/lib/jt-mobile-kit/www_rb/templates/{pages/_main_page.haml → js/controller/.gitkeep} +0 -0
- data/lib/jt-mobile-kit/www_rb/templates/js/plugins/sms.js +25 -0
- data/lib/jt-mobile-kit/www_rb/templates/js/routes.js +20 -0
- data/lib/jt-mobile-kit/www_rb/templates/lib/js/angular/angular.min.js +159 -0
- data/lib/jt-mobile-kit/www_rb/templates/lib/js/angular/mobile-nav.css +117 -0
- data/lib/jt-mobile-kit/www_rb/templates/lib/js/angular/mobile-nav.min.js +5 -0
- data/lib/jt-mobile-kit/www_rb/templates/lib/js/infrastructure/native.js +21 -0
- data/lib/jt-mobile-kit/www_rb/templates/lib/js/zepto/zepto.js +1884 -0
- data/lib/jt-mobile-kit/www_rb/templates/pages/.gitkeep +0 -0
- metadata +46 -13
- data/lib/jt-mobile-kit/www_rb/templates/_index.haml +0 -14
- data/lib/jt-mobile-kit/www_rb/templates/_pages.haml +0 -2
|
File without changes
|
metadata
CHANGED
|
@@ -1,16 +1,43 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jt-mobile-kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 1.0.0
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- jtong
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2013-04-
|
|
13
|
-
dependencies:
|
|
11
|
+
date: 2013-04-25 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: thor
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ! '>='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ! '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rails
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ! '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ! '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
14
41
|
description: ! ' description'
|
|
15
42
|
email:
|
|
16
43
|
- jtong.kata@gmail.com
|
|
@@ -141,16 +168,19 @@ files:
|
|
|
141
168
|
- lib/jt-mobile-kit/www_js/templates/spec/lib/jasmine-1.2.0/jasmine.js
|
|
142
169
|
- lib/jt-mobile-kit/www_js/templates/spec/lib/jasmine-1.2.0/MIT.LICENSE
|
|
143
170
|
- lib/jt-mobile-kit/www_js/www_js.rb
|
|
144
|
-
- lib/jt-mobile-kit/www_rb/templates/_index.haml
|
|
145
|
-
- lib/jt-mobile-kit/www_rb/templates/_pages.haml
|
|
146
|
-
- lib/jt-mobile-kit/www_rb/templates/component/custom_component.haml
|
|
147
171
|
- lib/jt-mobile-kit/www_rb/templates/css/index.css
|
|
148
172
|
- lib/jt-mobile-kit/www_rb/templates/Gemfile
|
|
149
173
|
- lib/jt-mobile-kit/www_rb/templates/Gemfile.lock
|
|
174
|
+
- lib/jt-mobile-kit/www_rb/templates/hamls/index.haml
|
|
150
175
|
- lib/jt-mobile-kit/www_rb/templates/img/logo.png
|
|
151
176
|
- lib/jt-mobile-kit/www_rb/templates/js/application.js
|
|
152
|
-
- lib/jt-mobile-kit/www_rb/templates/js/
|
|
177
|
+
- lib/jt-mobile-kit/www_rb/templates/js/plugins/sms.js
|
|
178
|
+
- lib/jt-mobile-kit/www_rb/templates/js/routes.js
|
|
179
|
+
- lib/jt-mobile-kit/www_rb/templates/lib/js/angular/angular.min.js
|
|
180
|
+
- lib/jt-mobile-kit/www_rb/templates/lib/js/angular/mobile-nav.css
|
|
181
|
+
- lib/jt-mobile-kit/www_rb/templates/lib/js/angular/mobile-nav.min.js
|
|
153
182
|
- lib/jt-mobile-kit/www_rb/templates/lib/js/cordova/cordova-2.1.0.js
|
|
183
|
+
- lib/jt-mobile-kit/www_rb/templates/lib/js/infrastructure/native.js
|
|
154
184
|
- lib/jt-mobile-kit/www_rb/templates/lib/js/jquery/images/ajax-loader.gif
|
|
155
185
|
- lib/jt-mobile-kit/www_rb/templates/lib/js/jquery/images/cordova.png
|
|
156
186
|
- lib/jt-mobile-kit/www_rb/templates/lib/js/jquery/images/icons-18-black.png
|
|
@@ -163,7 +193,7 @@ files:
|
|
|
163
193
|
- lib/jt-mobile-kit/www_rb/templates/lib/js/jquery/jquery.mobile-1.2.0.min.js
|
|
164
194
|
- lib/jt-mobile-kit/www_rb/templates/lib/js/jt/jt.js
|
|
165
195
|
- lib/jt-mobile-kit/www_rb/templates/lib/js/jt/JTObject.js
|
|
166
|
-
- lib/jt-mobile-kit/www_rb/templates/
|
|
196
|
+
- lib/jt-mobile-kit/www_rb/templates/lib/js/zepto/zepto.js
|
|
167
197
|
- lib/jt-mobile-kit/www_rb/templates/spec/function_spec.js
|
|
168
198
|
- lib/jt-mobile-kit/www_rb/templates/spec/helper.js
|
|
169
199
|
- lib/jt-mobile-kit/www_rb/templates/spec/index.js
|
|
@@ -179,28 +209,31 @@ files:
|
|
|
179
209
|
- lib/jt-mobile-kit/www_js/templates/component/.gitkeep
|
|
180
210
|
- lib/jt-mobile-kit/www_rb/templates/.gitignore
|
|
181
211
|
- lib/jt-mobile-kit/www_rb/templates/.rvmrc
|
|
212
|
+
- lib/jt-mobile-kit/www_rb/templates/component/.gitkeep
|
|
213
|
+
- lib/jt-mobile-kit/www_rb/templates/hamls/pages/.gitkeep
|
|
214
|
+
- lib/jt-mobile-kit/www_rb/templates/js/controller/.gitkeep
|
|
215
|
+
- lib/jt-mobile-kit/www_rb/templates/pages/.gitkeep
|
|
182
216
|
homepage: ''
|
|
183
217
|
licenses: []
|
|
218
|
+
metadata: {}
|
|
184
219
|
post_install_message:
|
|
185
220
|
rdoc_options: []
|
|
186
221
|
require_paths:
|
|
187
222
|
- lib
|
|
188
223
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
189
|
-
none: false
|
|
190
224
|
requirements:
|
|
191
225
|
- - ! '>='
|
|
192
226
|
- !ruby/object:Gem::Version
|
|
193
227
|
version: '0'
|
|
194
228
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
|
-
none: false
|
|
196
229
|
requirements:
|
|
197
230
|
- - ! '>='
|
|
198
231
|
- !ruby/object:Gem::Version
|
|
199
232
|
version: '0'
|
|
200
233
|
requirements: []
|
|
201
234
|
rubyforge_project:
|
|
202
|
-
rubygems_version:
|
|
235
|
+
rubygems_version: 2.0.3
|
|
203
236
|
signing_key:
|
|
204
|
-
specification_version:
|
|
237
|
+
specification_version: 4
|
|
205
238
|
summary: summary
|
|
206
239
|
test_files: []
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
!!! 5
|
|
2
|
-
%html
|
|
3
|
-
%head
|
|
4
|
-
%meta(http-equiv="Content-Type" content="text/html; charset=utf-8")
|
|
5
|
-
%meta(name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0")
|
|
6
|
-
%meta(name="apple-mobile-web-app-capable" content="yes")
|
|
7
|
-
%meta(name="apple-mobile-web-app-status-bar-style" content="black")
|
|
8
|
-
%title Title
|
|
9
|
-
%link(rel="stylesheet" href="lib/js/jquery/jquery.mobile-1.2.0.min.css")
|
|
10
|
-
|
|
11
|
-
=include_js
|
|
12
|
-
%body
|
|
13
|
-
=partial 'pages'
|
|
14
|
-
%script(lang="javascript" src="js/application.js")
|