quik_start 0.0.7 → 0.0.8
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.
- data/README.md +31 -4
- data/lib/quik_start/version.rb +1 -1
- data/lib/quik_start.rb +1 -0
- data.tar.gz.sig +0 -0
- metadata +1 -1
- metadata.gz.sig +0 -0
data/README.md
CHANGED
|
@@ -18,15 +18,42 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
|
-
$ qs --library_name # for example --bootstrap or --backbone
|
|
22
|
-
$ qs --backbone
|
|
21
|
+
$ qs --library_name # for example --bootstrap or --backbone or --bootstrap and --backbone together
|
|
22
|
+
$ qs --backbone --bootstrap
|
|
23
23
|
resolving underscore
|
|
24
24
|
resolving json2
|
|
25
25
|
resolving backbone
|
|
26
|
+
resolving jquery
|
|
27
|
+
resolving bootstrap
|
|
26
28
|
downloading...
|
|
27
|
-
2.060485 seconds
|
|
28
|
-
$ qs --help #for a list for a list of libs that are included. Only a few for now, not sure if the is interesting or redundant.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
put the following in your application.css file:
|
|
32
|
+
*= require "bootstrap"
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
put the following in your application.js file:
|
|
36
|
+
//= require underscore
|
|
37
|
+
//= require json2
|
|
38
|
+
//= require backbone
|
|
39
|
+
//= require jquery
|
|
40
|
+
//= require bootstrap
|
|
41
|
+
|
|
42
|
+
2.107196 seconds
|
|
43
|
+
|
|
44
|
+
For a list for a list of libs that are included.
|
|
45
|
+
Only a few for now, not sure if this is interesting and/or redundant.
|
|
46
|
+
|
|
47
|
+
$ qs --help
|
|
48
|
+
Usage: --library_name
|
|
49
|
+
--bootstrap
|
|
50
|
+
--jquery
|
|
51
|
+
--jqueryui
|
|
52
|
+
--angular
|
|
53
|
+
--backbone
|
|
54
|
+
--d3
|
|
55
|
+
|
|
56
|
+
|
|
30
57
|
## Contributing
|
|
31
58
|
|
|
32
59
|
1. Fork it
|
data/lib/quik_start/version.rb
CHANGED
data/lib/quik_start.rb
CHANGED
|
@@ -152,6 +152,7 @@ module QuikStart
|
|
|
152
152
|
:jqueryui => {
|
|
153
153
|
:production => 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.min.js',
|
|
154
154
|
:development => 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.js',
|
|
155
|
+
:dependencies => [:jquery],
|
|
155
156
|
:target => '/app/assets/javascripts/jquery-ui.js'
|
|
156
157
|
},
|
|
157
158
|
:jquery => {
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
metadata.gz.sig
CHANGED
|
Binary file
|