oynx 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 68f2c5c274f5cee1deaca6d223f82c2d44c33c85
4
- data.tar.gz: 0b456d850ffca3a1782180e27d10f1cdd1283784
3
+ metadata.gz: 6214323bf1e6587d9b572815b2c5461fca79fb19
4
+ data.tar.gz: 1f883087d6b9cd0f6c6c788779ce4dd4ab2918be
5
5
  SHA512:
6
- metadata.gz: 54d31133fd246d16725ef5005b05cbb9a25954faf6a588caff54667f6b8fb053e70ff5c3b99b6ea7db4e119a4ae3776ebfbbc31abe9d5e939a175f50c99d9be8
7
- data.tar.gz: 4c55e5a495f1db73080a9ca36d4cb6e2f7deea1c52f592cadd5cbdb22aa39400344c19b4cc295b1ff7a005979dcf254511259c1072c54a1122430da3b153ed1b
6
+ metadata.gz: 9c4ff4f8f7f9545ffc75039c17a333e69216efc4d04618bcf0d3c15c5a69c05103cf9f85f01f7dad8d4ea7c096ea596b8ca3d1be0bf0a856dc1ac138fdcb5794
7
+ data.tar.gz: 8d532d37581aa98022b1baab3f52c66a7801fc8eed1708364f816bb775004a4af9bacefdf56c3d2352fe69ea954587c8acf7582c1f499c6c2b2037e5f94e8fa6
data/README.md CHANGED
@@ -1,6 +1,14 @@
1
1
  # Oynx
2
2
 
3
- TODO: Write a gem description
3
+ Do you find yourself wasting hours creating folder skeletons for your websites?
4
+ Do you hate having to remember `tar`'s many arguments?
5
+ Do you love you some good Ruby?
6
+
7
+ Then Oynx is for you! Use Oynx to simplify many aspects of web development
8
+
9
+ ### Note
10
+ Oynx is currently alpha-stage. Don't expect anything to work. In fact, be surprised if
11
+ anything does.
4
12
 
5
13
  ## Installation
6
14
 
@@ -18,11 +26,23 @@ Or install it yourself as:
18
26
 
19
27
  ## Usage
20
28
 
21
- TODO: Write usage instructions here
29
+ $ oynx new
30
+
31
+ ### Parameters
32
+
33
+ --default - create a default site
34
+
35
+ OR
36
+
37
+ --name NAME - Specify site name
38
+ --charset CHST - Specify the charset to use
39
+ --no-css - Don't create a CSS folder/stubs
40
+ --no-img - Don't create an image folder
41
+ --no-js - Don't create a JS folder/stubs
22
42
 
23
43
  ## Contributing
24
44
 
25
- 1. Fork it ( http://github.com/<my-github-username>/oynx/fork )
45
+ 1. Fork it ( http://github.com/mahimahi42/oynx/fork )
26
46
  2. Create your feature branch (`git checkout -b my-new-feature`)
27
47
  3. Commit your changes (`git commit -am 'Add some feature'`)
28
48
  4. Push to the branch (`git push origin my-new-feature`)
data/lib/oynx.rb CHANGED
@@ -15,7 +15,7 @@ module Oynx
15
15
  --default - Create a site with default information.
16
16
 
17
17
  --name "NAME" - Specify the site's name.
18
- \x5--charset "CHSH" - Specify the charset to use.
18
+ \x5--charset "CHST" - Specify the charset to use.
19
19
  \x5--no-css - Don't create a CSS folder or stubs.
20
20
  \x5--no-img - Don't create an image folder.
21
21
  \x5--no-js - Don't create a JS folder or stubs.
@@ -55,10 +55,13 @@ class Oynx_Back
55
55
  <head>
56
56
  <meta charset='#{@config["charset"]}'>
57
57
  <meta name='viewport' content='width=device-width,initial-scale=1.0'>
58
+ <link rel='stylesheet' type='text/css' href='css/styles.css'>
58
59
  </head>
59
60
 
60
61
  <body>
61
62
 
63
+ <!-- Scripts at the end for faster page loading -->
64
+ <script src='js/scripts.js'></script>
62
65
  </body>
63
66
  </html>"
64
67
 
data/lib/oynx/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Oynx
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oynx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryce Davis