bonethug 0.0.25 → 0.0.26

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 (19) hide show
  1. data/config/cnf.yml +3 -0
  2. data/lib/bonethug/cli.rb +1 -1
  3. data/lib/bonethug/version.rb +1 -1
  4. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-114x114.png +0 -0
  5. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-120x120.png +0 -0
  6. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-144x144.png +0 -0
  7. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-152x152.png +0 -0
  8. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-57x57.png +0 -0
  9. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-60x60.png +0 -0
  10. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-72x72.png +0 -0
  11. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-76x76.png +0 -0
  12. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon.png +0 -0
  13. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/favicon.ico +0 -0
  14. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/iconifier-readme.txt +30 -0
  15. data/skel/project_types/silverstripe3/public/themes/project/templates/Page.ss +10 -4
  16. metadata +12 -5
  17. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-114x114-precomposed.png +0 -0
  18. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-72x72-precomposed.png +0 -0
  19. data/skel/project_types/silverstripe3/public/themes/project/images/favicons/favicon.png +0 -0
data/config/cnf.yml CHANGED
@@ -66,6 +66,7 @@ mail:
66
66
  name: dev
67
67
  email: dev@domain.com
68
68
  server: smtp.gmail.com
69
+ domain: gmail.com
69
70
  authenticate: true
70
71
  user: username@domain.com
71
72
  pass: passw0rd
@@ -77,6 +78,7 @@ mail:
77
78
  name: staging
78
79
  email: dev@domain.com
79
80
  server: smtp.gmail.com
81
+ domain: gmail.com
80
82
  authenticate: true
81
83
  user: username@domain.com
82
84
  pass: passw0rd
@@ -88,6 +90,7 @@ mail:
88
90
  name: production
89
91
  email: dev@domain.com
90
92
  server: smtp.gmail.com
93
+ domain: gmail.com
91
94
  authenticate: true
92
95
  user: username@domain.com
93
96
  pass: passw0rd
data/lib/bonethug/cli.rb CHANGED
@@ -81,7 +81,7 @@ module Bonethug
81
81
  when 'watch'
82
82
 
83
83
  # handle args
84
- type = ARGV[1] || 'sprockets'
84
+ type = ARGV[1] || 'coffee_sass'
85
85
  location = ARGV[2] || '.'
86
86
  watch_only = ARGV[3] || nil
87
87
 
@@ -1,3 +1,3 @@
1
1
  module Bonethug
2
- VERSION = "0.0.25"
2
+ VERSION = "0.0.26"
3
3
  end
@@ -0,0 +1,30 @@
1
+
2
+ Thanks for using iconifier.net to create Apple icon and favicon files for your website. See http://iconifier.net/readme for the latest information.
3
+
4
+ Most browsers will find the Apple icons in the root folder of your website. Add the following HTML to your page if necessary to specify other locations, remembering to include the correct path:
5
+
6
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
7
+ <link rel="apple-touch-icon" href="/apple-touch-icon.png" />
8
+ <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png" />
9
+ <link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png" />
10
+ <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png" />
11
+ <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png" />
12
+ <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png" />
13
+ <link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png" />
14
+ <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png" />
15
+ <link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png" />
16
+
17
+ Most browsers will find the favicon file in the root folder of your website but there are some exceptions:
18
+
19
+ 1. On Joomla websites, copy the favicon.ico to your active template folder at: /templates/[your_template_name].
20
+
21
+ 2. On WordPress websites you may need to upload the favicon.ico file to your current theme's main folder as well as your website root folder. For more details, see http://codex.wordpress.org/Creating_a_Favicon.
22
+
23
+ 3. On Drupal websites, navigate to the admin/build/themes/settings/[your_theme_name] page in the admin area of the site and choose the favicon.ico file in the 'Shortcut icon settings' section of the theme configuration page and upload the file. For more details, see the official Drupal favicon changing instructions at: http://drupal.org/node/362265
24
+
25
+ I'm very grateful to Chris Jean for sharing his excellent PHP-ICO tool which can now be found on GitHub at https://github.com/chrisbliss18/php-ico. PHP-ICO enables favicon files to be created with PHP and the GD library only.
26
+
27
+ If you find this tool useful, please Tweet, Share, Like, +1 and if you are really keen, include attribution in your humans.txt file! Thanks.
28
+
29
+ iconifier.net is provided for free by Webilicious® Web Design and Development Services - Joomla!® website creation, maintainance and security specialists - http://webilicious.com.au.
30
+
@@ -28,10 +28,16 @@
28
28
  <% require themedCSS('form') %>
29
29
  <% require themedCSS('layout') %>
30
30
 
31
- <link rel="icon" type="image/png" href="themes/project/images/favicon.png">
32
- <link rel="apple-touch-icon" type="image/png" href="themes/project/images/apple-touch-icon.png">
33
- <link rel="apple-touch-icon-precomposed" sizes="114x114" href="themes/project/images/apple-touch-icon-72x72-precomposed.png">
34
- <link rel="apple-touch-icon-precomposed" sizes="72x72" href="themes/project/images/apple-touch-icon-114x114-precomposed.png">
31
+ <link rel="shortcut icon" href="themes/project/images/favicon.ico" type="image/x-icon" />
32
+ <link rel="apple-touch-icon" href="themes/project/images/apple-touch-icon.png" />
33
+ <link rel="apple-touch-icon" sizes="57x57" href="themes/project/images/apple-touch-icon-57x57.png" />
34
+ <link rel="apple-touch-icon" sizes="60x60" href="themes/project/images/apple-touch-icon-60x60.png" />
35
+ <link rel="apple-touch-icon" sizes="72x72" href="themes/project/images/apple-touch-icon-72x72.png" />
36
+ <link rel="apple-touch-icon" sizes="76x76" href="themes/project/images/apple-touch-icon-76x76.png" />
37
+ <link rel="apple-touch-icon" sizes="114x114" href="themes/project/images/apple-touch-icon-114x114.png" />
38
+ <link rel="apple-touch-icon" sizes="120x120" href="themes/project/images/apple-touch-icon-120x120.png" />
39
+ <link rel="apple-touch-icon" sizes="144x144" href="themes/project/images/apple-touch-icon-144x144.png" />
40
+ <link rel="apple-touch-icon" sizes="152x152" href="themes/project/images/apple-touch-icon-152x152.png" />
35
41
 
36
42
  </head>
37
43
  <body>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bonethug
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.25
4
+ version: 0.0.26
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-09-23 00:00:00.000000000 Z
12
+ date: 2013-09-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -343,10 +343,17 @@ files:
343
343
  - skel/project_types/silverstripe3/public/themes/project/css/.gitkeep
344
344
  - skel/project_types/silverstripe3/public/themes/project/css/editor.css
345
345
  - skel/project_types/silverstripe3/public/themes/project/css/typography.css
346
- - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-114x114-precomposed.png
347
- - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-72x72-precomposed.png
346
+ - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-114x114.png
347
+ - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-120x120.png
348
+ - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-144x144.png
349
+ - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-152x152.png
350
+ - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-57x57.png
351
+ - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-60x60.png
352
+ - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-72x72.png
353
+ - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon-76x76.png
348
354
  - skel/project_types/silverstripe3/public/themes/project/images/favicons/apple-touch-icon.png
349
- - skel/project_types/silverstripe3/public/themes/project/images/favicons/favicon.png
355
+ - skel/project_types/silverstripe3/public/themes/project/images/favicons/favicon.ico
356
+ - skel/project_types/silverstripe3/public/themes/project/images/favicons/iconifier-readme.txt
350
357
  - skel/project_types/silverstripe3/public/themes/project/scss/application.css.scss
351
358
  - skel/project_types/silverstripe3/public/themes/project/scss/typography.css.scss
352
359
  - skel/project_types/silverstripe3/public/themes/project/templates/Includes/.gitkeep