colorgy_style 0.0.0.2 → 0.0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +48 -9
- data/assets/javascripts/colorgy.js +1 -1
- data/assets/javascripts/colorgy/application.js +14 -0
- data/assets/javascripts/colorgy/bundle.js +11 -0
- data/assets/javascripts/colorgy/components.js +1 -0
- data/assets/javascripts/colorgy/{flash.js → components/toast.js} +26 -16
- data/assets/javascripts/colorgy/lib.js +1 -0
- data/assets/javascripts/{vendor → colorgy/lib}/toastr.js +0 -0
- data/assets/javascripts/vendor/classnames.js +49 -0
- data/assets/javascripts/vendor/dojo.history.js +3336 -0
- data/assets/javascripts/vendor/extjs.history.js +3306 -0
- data/assets/javascripts/vendor/jquery.history.js +3292 -0
- data/assets/javascripts/vendor/mootools.history.js +3299 -0
- data/assets/javascripts/vendor/native.history.js +3336 -0
- data/assets/javascripts/vendor/right.history.js +3293 -0
- data/assets/javascripts/vendor/visibility.js +1 -0
- data/assets/javascripts/vendor/zepto.history.js +3289 -0
- data/assets/stylesheets/colorgy.scss +1 -1
- data/assets/stylesheets/colorgy/{main.scss → application.scss} +0 -0
- data/assets/stylesheets/colorgy/components/_toast.scss +2 -2
- data/assets/stylesheets/colorgy_sprockets.scss +1 -0
- data/colorgy_style.gemspec +1 -1
- data/lib/colorgy_style/version.rb +1 -1
- data/styleguide/javascripts/body.js +1 -2
- data/styleguide/javascripts/colorgy.js +1 -0
- data/styleguide/javascripts/head.js +0 -1
- data/styleguide/layouts/layout.erb +4 -1
- data/styleguide/stylesheets/colorgy.css +3 -0
- data/styleguide/stylesheets/{all.css → styleguide.css} +0 -1
- metadata +23 -9
- data/assets/javascripts/colorgy/addons/holder.js +0 -1
- data/assets/javascripts/colorgy/main.js +0 -10
@@ -1 +1 @@
|
|
1
|
-
@import "colorgy/
|
1
|
+
@import "colorgy/application";
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
@import "bootstrap-sprockets";
|
data/colorgy_style.gemspec
CHANGED
@@ -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.
|
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
|
|
@@ -0,0 +1 @@
|
|
1
|
+
//= require colorgy/bundle
|
@@ -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 :
|
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 %>">
|
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.
|
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.
|
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.
|
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/
|
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/
|
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/
|
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/
|
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/
|
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!');
|