motion-prime 0.5.6 → 0.5.7
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 +8 -8
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +1 -1
- data/README.md +8 -3
- data/bin/prime +1 -1
- data/doc/code/getting_started.rb +53 -11
- data/doc/code/models.rb +32 -0
- data/doc/code/screens.rb +25 -19
- data/doc/code/sections.rb +27 -3
- data/doc/docs/docco.css +116 -279
- data/doc/docs/getting_started.html +125 -141
- data/doc/docs/models.html +102 -0
- data/doc/docs/public/fonts/fleurons.eot +0 -0
- data/doc/docs/public/fonts/fleurons.ttf +0 -0
- data/doc/docs/public/fonts/fleurons.woff +0 -0
- data/doc/docs/public/images/gray.png +0 -0
- data/doc/docs/screens.html +114 -167
- data/doc/docs/sections.html +90 -93
- data/files/Gemfile +1 -1
- data/files/Gemfile.lock +2 -2
- data/files/app/screens/{application_screen.rb → application.rb} +0 -0
- data/files/app/screens/{help_screen.rb → help.rb} +0 -0
- data/files/app/screens/{home_screen.rb → home.rb} +0 -0
- data/files/app/screens/{sidebar_screen.rb → sidebar.rb} +0 -0
- data/motion-prime/core_ext/time.rb +10 -0
- data/motion-prime/models/_association_mixin.rb +4 -0
- data/motion-prime/models/_base_mixin.rb +12 -3
- data/motion-prime/models/_dirty_mixin.rb +7 -1
- data/motion-prime/models/_nano_bag_mixin.rb +9 -2
- data/motion-prime/models/_sync_mixin.rb +24 -19
- data/motion-prime/sections/base_section.rb +17 -10
- data/motion-prime/version.rb +1 -1
- metadata +13 -6
data/motion-prime/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-prime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Iskander Haziev
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-01-
|
12
|
+
date: 2014-01-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -188,19 +188,25 @@ files:
|
|
188
188
|
- doc/SECTION.md
|
189
189
|
- doc/STYLE.md
|
190
190
|
- doc/code/getting_started.rb
|
191
|
+
- doc/code/models.rb
|
191
192
|
- doc/code/screens.rb
|
192
193
|
- doc/code/sections.rb
|
193
194
|
- doc/docs/docco.css
|
194
195
|
- doc/docs/getting_started.html
|
196
|
+
- doc/docs/models.html
|
195
197
|
- doc/docs/public/fonts/aller-bold.eot
|
196
198
|
- doc/docs/public/fonts/aller-bold.ttf
|
197
199
|
- doc/docs/public/fonts/aller-bold.woff
|
198
200
|
- doc/docs/public/fonts/aller-light.eot
|
199
201
|
- doc/docs/public/fonts/aller-light.ttf
|
200
202
|
- doc/docs/public/fonts/aller-light.woff
|
203
|
+
- doc/docs/public/fonts/fleurons.eot
|
204
|
+
- doc/docs/public/fonts/fleurons.ttf
|
205
|
+
- doc/docs/public/fonts/fleurons.woff
|
201
206
|
- doc/docs/public/fonts/novecento-bold.eot
|
202
207
|
- doc/docs/public/fonts/novecento-bold.ttf
|
203
208
|
- doc/docs/public/fonts/novecento-bold.woff
|
209
|
+
- doc/docs/public/images/gray.png
|
204
210
|
- doc/docs/public/stylesheets/normalize.css
|
205
211
|
- doc/docs/screens.html
|
206
212
|
- doc/docs/sections.html
|
@@ -211,10 +217,10 @@ files:
|
|
211
217
|
- files/app/config/base.rb
|
212
218
|
- files/app/environment.rb
|
213
219
|
- files/app/models/.gitkeep
|
214
|
-
- files/app/screens/
|
215
|
-
- files/app/screens/
|
216
|
-
- files/app/screens/
|
217
|
-
- files/app/screens/
|
220
|
+
- files/app/screens/application.rb
|
221
|
+
- files/app/screens/help.rb
|
222
|
+
- files/app/screens/home.rb
|
223
|
+
- files/app/screens/sidebar.rb
|
218
224
|
- files/app/sections/home/section.rb
|
219
225
|
- files/app/sections/sidebar/action.rb
|
220
226
|
- files/app/sections/sidebar/table.rb
|
@@ -234,6 +240,7 @@ files:
|
|
234
240
|
- motion-prime/config/base.rb
|
235
241
|
- motion-prime/config/config.rb
|
236
242
|
- motion-prime/core_ext/kernel.rb
|
243
|
+
- motion-prime/core_ext/time.rb
|
237
244
|
- motion-prime/elements/_content_padding_mixin.rb
|
238
245
|
- motion-prime/elements/_content_text_mixin.rb
|
239
246
|
- motion-prime/elements/_text_mixin.rb
|