compass-ratchet 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +67 -0
- data/lib/compass-ratchet.rb +3 -0
- data/stylesheets/_compass-ratchet.scss +14 -0
- data/stylesheets/compass-ratchet/_bars.scss +330 -0
- data/stylesheets/compass-ratchet/_base.scss +155 -0
- data/stylesheets/compass-ratchet/_buttons.scss +124 -0
- data/stylesheets/compass-ratchet/_chevrons.scss +32 -0
- data/stylesheets/compass-ratchet/_counts.scss +42 -0
- data/stylesheets/compass-ratchet/_forms.scss +126 -0
- data/stylesheets/compass-ratchet/_lists.scss +122 -0
- data/stylesheets/compass-ratchet/_popovers.scss +158 -0
- data/stylesheets/compass-ratchet/_push.scss +30 -0
- data/stylesheets/compass-ratchet/_segmented-controllers.scss +67 -0
- data/stylesheets/compass-ratchet/_shared.scss +8 -0
- data/stylesheets/compass-ratchet/_sliders.scss +40 -0
- data/stylesheets/compass-ratchet/_toggles.scss +71 -0
- data/templates/project/checkout.html +81 -0
- data/templates/project/choose-movie.html +125 -0
- data/templates/project/choose-theater.html +110 -0
- data/templates/project/config.rb +8 -0
- data/templates/project/css/app.css +1 -0
- data/templates/project/img/argo.png +0 -0
- data/templates/project/img/ralph.png +0 -0
- data/templates/project/img/skyfall.png +0 -0
- data/templates/project/index.html +160 -0
- data/templates/project/js/popovers.js +63 -0
- data/templates/project/js/push.js +417 -0
- data/templates/project/js/segmented-controllers.js +47 -0
- data/templates/project/js/sliders.js +114 -0
- data/templates/project/js/toggles.js +94 -0
- data/templates/project/manifest.rb +24 -0
- data/templates/project/sass/app.scss +13 -0
- data/templates/project/settings.html +73 -0
- data/templates/project/theaters.html +131 -0
- metadata +111 -0
metadata
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: compass-ratchet
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Stephen Way
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-11-10 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: sass
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '3.2'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.2'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: compass
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 0.12.2
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 0.12.2
|
46
|
+
description: Prototype iPhone apps with simple Sass components
|
47
|
+
email:
|
48
|
+
- stephencway@me.com
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- README.md
|
54
|
+
- lib/compass-ratchet.rb
|
55
|
+
- stylesheets/_compass-ratchet.scss
|
56
|
+
- stylesheets/compass-ratchet/_bars.scss
|
57
|
+
- stylesheets/compass-ratchet/_base.scss
|
58
|
+
- stylesheets/compass-ratchet/_buttons.scss
|
59
|
+
- stylesheets/compass-ratchet/_chevrons.scss
|
60
|
+
- stylesheets/compass-ratchet/_counts.scss
|
61
|
+
- stylesheets/compass-ratchet/_forms.scss
|
62
|
+
- stylesheets/compass-ratchet/_lists.scss
|
63
|
+
- stylesheets/compass-ratchet/_popovers.scss
|
64
|
+
- stylesheets/compass-ratchet/_push.scss
|
65
|
+
- stylesheets/compass-ratchet/_segmented-controllers.scss
|
66
|
+
- stylesheets/compass-ratchet/_shared.scss
|
67
|
+
- stylesheets/compass-ratchet/_sliders.scss
|
68
|
+
- stylesheets/compass-ratchet/_toggles.scss
|
69
|
+
- templates/project/checkout.html
|
70
|
+
- templates/project/choose-movie.html
|
71
|
+
- templates/project/choose-theater.html
|
72
|
+
- templates/project/config.rb
|
73
|
+
- templates/project/css/app.css
|
74
|
+
- templates/project/img/argo.png
|
75
|
+
- templates/project/img/ralph.png
|
76
|
+
- templates/project/img/skyfall.png
|
77
|
+
- templates/project/index.html
|
78
|
+
- templates/project/js/popovers.js
|
79
|
+
- templates/project/js/push.js
|
80
|
+
- templates/project/js/segmented-controllers.js
|
81
|
+
- templates/project/js/sliders.js
|
82
|
+
- templates/project/js/toggles.js
|
83
|
+
- templates/project/manifest.rb
|
84
|
+
- templates/project/sass/app.scss
|
85
|
+
- templates/project/settings.html
|
86
|
+
- templates/project/theaters.html
|
87
|
+
homepage: http://github.com/stephenway/compass-ratchet
|
88
|
+
licenses: []
|
89
|
+
post_install_message:
|
90
|
+
rdoc_options: []
|
91
|
+
require_paths:
|
92
|
+
- lib
|
93
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
94
|
+
none: false
|
95
|
+
requirements:
|
96
|
+
- - ! '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
none: false
|
101
|
+
requirements:
|
102
|
+
- - ! '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
requirements: []
|
106
|
+
rubyforge_project:
|
107
|
+
rubygems_version: 1.8.24
|
108
|
+
signing_key:
|
109
|
+
specification_version: 3
|
110
|
+
summary: Prototype iPhone apps with simple Sass components.
|
111
|
+
test_files: []
|