colorgy_style 0.0.0.2 → 0.0.0.4

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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +48 -9
  3. data/assets/javascripts/colorgy.js +1 -1
  4. data/assets/javascripts/colorgy/application.js +14 -0
  5. data/assets/javascripts/colorgy/bundle.js +11 -0
  6. data/assets/javascripts/colorgy/components.js +1 -0
  7. data/assets/javascripts/colorgy/{flash.js → components/toast.js} +26 -16
  8. data/assets/javascripts/colorgy/lib.js +1 -0
  9. data/assets/javascripts/{vendor → colorgy/lib}/toastr.js +0 -0
  10. data/assets/javascripts/vendor/classnames.js +49 -0
  11. data/assets/javascripts/vendor/dojo.history.js +3336 -0
  12. data/assets/javascripts/vendor/extjs.history.js +3306 -0
  13. data/assets/javascripts/vendor/jquery.history.js +3292 -0
  14. data/assets/javascripts/vendor/mootools.history.js +3299 -0
  15. data/assets/javascripts/vendor/native.history.js +3336 -0
  16. data/assets/javascripts/vendor/right.history.js +3293 -0
  17. data/assets/javascripts/vendor/visibility.js +1 -0
  18. data/assets/javascripts/vendor/zepto.history.js +3289 -0
  19. data/assets/stylesheets/colorgy.scss +1 -1
  20. data/assets/stylesheets/colorgy/{main.scss → application.scss} +0 -0
  21. data/assets/stylesheets/colorgy/components/_toast.scss +2 -2
  22. data/assets/stylesheets/colorgy_sprockets.scss +1 -0
  23. data/colorgy_style.gemspec +1 -1
  24. data/lib/colorgy_style/version.rb +1 -1
  25. data/styleguide/javascripts/body.js +1 -2
  26. data/styleguide/javascripts/colorgy.js +1 -0
  27. data/styleguide/javascripts/head.js +0 -1
  28. data/styleguide/layouts/layout.erb +4 -1
  29. data/styleguide/stylesheets/colorgy.css +3 -0
  30. data/styleguide/stylesheets/{all.css → styleguide.css} +0 -1
  31. metadata +23 -9
  32. data/assets/javascripts/colorgy/addons/holder.js +0 -1
  33. data/assets/javascripts/colorgy/main.js +0 -10
@@ -1 +1 @@
1
- @import "colorgy/main";
1
+ @import "colorgy/application";
@@ -155,8 +155,8 @@
155
155
  display: table-row;
156
156
  display: block;
157
157
  padding: 7px 14px 7px 16px;
158
- min-height: 44px;
159
- line-height: 44px;
158
+ min-height: 30px;
159
+ line-height: 30px;
160
160
 
161
161
  &,
162
162
  &:hover,
@@ -0,0 +1 @@
1
+ @import "bootstrap-sprockets";
@@ -37,7 +37,7 @@ Gem::Specification.new do |spec|
37
37
  spec.add_development_dependency "middleman-deploy", "~> 1.0"
38
38
 
39
39
  # SASS and Compass
40
- spec.add_dependency "sass", ">= 3.4"
40
+ spec.add_dependency "sass", ">= 3.2"
41
41
  spec.add_dependency "sass-globbing"
42
42
  spec.add_dependency "compass", "~> 1.0.0"
43
43
 
@@ -1,3 +1,3 @@
1
1
  module ColorgyStyle
2
- VERSION = "0.0.0.2"
2
+ VERSION = "0.0.0.4"
3
3
  end
@@ -1,5 +1,4 @@
1
- //= require colorgy
2
- //= require colorgy/addons/holder
1
+ //= require vendor/holder
3
2
  //= require ./styleguide/kss
4
3
  //= require ./styleguide/prism
5
4
 
@@ -0,0 +1 @@
1
+ //= require colorgy/bundle
@@ -1,2 +1 @@
1
- //= require colorgy/modernizr
2
1
  //= require turbolinks
@@ -6,7 +6,10 @@
6
6
 
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0 minimum-scale=1.0, user-scalable=no">
8
8
 
9
- <%= stylesheet_link_tag :all %>
9
+ <%= stylesheet_link_tag :colorgy %>
10
+ <%= javascript_include_tag :colorgy %>
11
+
12
+ <%= stylesheet_link_tag :styleguide %>
10
13
  <%= javascript_include_tag :head %>
11
14
  </head>
12
15
  <body class="<%= page_classes %>">
@@ -0,0 +1,3 @@
1
+ /*
2
+ *= require colorgy/application
3
+ */
@@ -1,4 +1,3 @@
1
1
  /*
2
- *= require colorgy
3
2
  *= require styleguide/styles
4
3
  */
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: colorgy_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0.2
4
+ version: 0.0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Neson
@@ -114,14 +114,14 @@ dependencies:
114
114
  requirements:
115
115
  - - ">="
116
116
  - !ruby/object:Gem::Version
117
- version: '3.4'
117
+ version: '3.2'
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
- version: '3.4'
124
+ version: '3.2'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: sass-globbing
127
127
  requirement: !ruby/object:Gem::Requirement
@@ -237,17 +237,24 @@ files:
237
237
  - assets/fonts/colorgy/.keep
238
238
  - assets/images/colorgy/.keep
239
239
  - assets/javascripts/colorgy.js
240
- - assets/javascripts/colorgy/addons/holder.js
240
+ - assets/javascripts/colorgy/application.js
241
+ - assets/javascripts/colorgy/bundle.js
242
+ - assets/javascripts/colorgy/components.js
241
243
  - assets/javascripts/colorgy/components/alert.js
242
244
  - assets/javascripts/colorgy/components/dropdown.js
243
- - assets/javascripts/colorgy/flash.js
245
+ - assets/javascripts/colorgy/components/toast.js
246
+ - assets/javascripts/colorgy/lib.js
244
247
  - assets/javascripts/colorgy/lib/interactiveStyle.js
245
248
  - assets/javascripts/colorgy/lib/jquery.getOrAddChild.js
246
- - assets/javascripts/colorgy/main.js
249
+ - assets/javascripts/colorgy/lib/toastr.js
247
250
  - assets/javascripts/colorgy/modernizr.js
248
251
  - assets/javascripts/colorgy/modernizr/classifier.coffee
252
+ - assets/javascripts/vendor/classnames.js
253
+ - assets/javascripts/vendor/dojo.history.js
249
254
  - assets/javascripts/vendor/es5-shim.js
255
+ - assets/javascripts/vendor/extjs.history.js
250
256
  - assets/javascripts/vendor/holder.js
257
+ - assets/javascripts/vendor/jquery.history.js
251
258
  - assets/javascripts/vendor/modernizr.js
252
259
  - assets/javascripts/vendor/modernizr/feature-detects/a-download.js
253
260
  - assets/javascripts/vendor/modernizr/feature-detects/audio-audiodata-api.js
@@ -352,8 +359,13 @@ files:
352
359
  - assets/javascripts/vendor/modernizr/feature-detects/workers-blobworkers.js
353
360
  - assets/javascripts/vendor/modernizr/feature-detects/workers-dataworkers.js
354
361
  - assets/javascripts/vendor/modernizr/feature-detects/workers-sharedworkers.js
355
- - assets/javascripts/vendor/toastr.js
362
+ - assets/javascripts/vendor/mootools.history.js
363
+ - assets/javascripts/vendor/native.history.js
364
+ - assets/javascripts/vendor/right.history.js
365
+ - assets/javascripts/vendor/visibility.js
366
+ - assets/javascripts/vendor/zepto.history.js
356
367
  - assets/stylesheets/colorgy.scss
368
+ - assets/stylesheets/colorgy/application.scss
357
369
  - assets/stylesheets/colorgy/components/_alert.scss
358
370
  - assets/stylesheets/colorgy/components/_badge.scss
359
371
  - assets/stylesheets/colorgy/components/_breadcrumb.scss
@@ -382,8 +394,8 @@ files:
382
394
  - assets/stylesheets/colorgy/core/_tools.scss
383
395
  - assets/stylesheets/colorgy/layouts/.keep
384
396
  - assets/stylesheets/colorgy/layouts/_default.scss
385
- - assets/stylesheets/colorgy/main.scss
386
397
  - assets/stylesheets/colorgy/structures/_jumbotron.scss
398
+ - assets/stylesheets/colorgy_sprockets.scss
387
399
  - assets/stylesheets/vendor/animate.scss
388
400
  - bin/console
389
401
  - bin/server
@@ -395,6 +407,7 @@ files:
395
407
  - lib/colorgy_style/version.rb
396
408
  - styleguide/index.html.haml
397
409
  - styleguide/javascripts/body.js
410
+ - styleguide/javascripts/colorgy.js
398
411
  - styleguide/javascripts/head.js
399
412
  - styleguide/javascripts/styleguide/kss.js
400
413
  - styleguide/javascripts/styleguide/prism.js
@@ -421,7 +434,8 @@ files:
421
434
  - styleguide/styleblocks/_thumbnail.html.erb
422
435
  - styleguide/styleblocks/_toast.html.erb
423
436
  - styleguide/styleblocks/_well.html.erb
424
- - styleguide/stylesheets/all.css
437
+ - styleguide/stylesheets/colorgy.css
438
+ - styleguide/stylesheets/styleguide.css
425
439
  - styleguide/stylesheets/styleguide/_prism.css
426
440
  - styleguide/stylesheets/styleguide/styles.scss
427
441
  homepage: https://github.com/colorgy/Style
@@ -1 +0,0 @@
1
- //= require ../../vendor/holder.js
@@ -1,10 +0,0 @@
1
- // This is a manifest file, which will include all the files listed below.
2
- //
3
- //= require vendor/es5-shim
4
- //= require jquery
5
- //= require jquery_ujs
6
- //= require ./lib/jquery.getOrAddChild
7
- //= require_tree ./components
8
- //= require ./flash
9
-
10
- console.log('Hello World!');