fones 0.1.2 → 0.1.3
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 +4 -4
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/fones.gemspec +2 -2
- data/lib/fones/builder.rb +1 -2
- data/lib/guard/fones/functions.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0512d197fb561f551772364a74be897f5905eee7
|
|
4
|
+
data.tar.gz: 6640f7b417b2ab05bbf5a2f652549b33ce273c5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14cf3d45f35f8b72496ff8ebcc0fac08f3376161dbc3b5b7f36e948ef183ca844037fcb6c951453d3f30ab4ad96603fb97992cf3381475e60bf97f0c6dcc3d14
|
|
7
|
+
data.tar.gz: 66eadb5e4f97b39ceb43b41cbcdc52635feac6b0efd76bf2395c9d04ce2282c5a5de27b9a858086cdb6a05d546812cf4182f842da8c8a1cf8ebeea8e0098d26c
|
data/README.md
CHANGED
data/Rakefile
CHANGED
|
@@ -15,7 +15,7 @@ require 'jeweler'
|
|
|
15
15
|
Jeweler::Tasks.new do |gem|
|
|
16
16
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
17
17
|
gem.name = 'fones'
|
|
18
|
-
gem.homepage = '
|
|
18
|
+
gem.homepage = 'https://github.com/joeystevense/fones'
|
|
19
19
|
gem.license = 'MIT'
|
|
20
20
|
gem.summary = %Q{A tool for developing wordpress themes with Bones Theme as a starting point.}
|
|
21
21
|
gem.description = %Q{A toolkit for bootstrapping and developing WordPress themes with Bones Theme as a starting point. Fones is a combination of Forge and Bones.}
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
data/fones.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "fones"
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Joey Stevense (script dj)", "Andy Adams (forge)", "Drew Strojny (forge)", "Matt Button (forge)", "Eddy Machado (bones)"]
|
|
@@ -128,7 +128,7 @@ Gem::Specification.new do |s|
|
|
|
128
128
|
"spec/lib/fones/project_spec.rb",
|
|
129
129
|
"spec/spec_helper.rb"
|
|
130
130
|
]
|
|
131
|
-
s.homepage = "
|
|
131
|
+
s.homepage = "https://github.com/joeystevense/fones"
|
|
132
132
|
s.licenses = ["MIT"]
|
|
133
133
|
s.require_paths = ["lib"]
|
|
134
134
|
s.rubygems_version = "2.0.3"
|
data/lib/fones/builder.rb
CHANGED
|
@@ -2,7 +2,6 @@ require 'sprockets'
|
|
|
2
2
|
require 'sprockets-sass'
|
|
3
3
|
require 'sass'
|
|
4
4
|
require 'zip/zip'
|
|
5
|
-
require 'fones/engines'
|
|
6
5
|
|
|
7
6
|
module Fones
|
|
8
7
|
class Builder
|
|
@@ -219,7 +218,7 @@ module Fones
|
|
|
219
218
|
end
|
|
220
219
|
|
|
221
220
|
# Add assets/styleshets to load path for Less Engine
|
|
222
|
-
Tilt::LessTemplateWithPaths.load_path = File.join(@assets_path, 'css')
|
|
221
|
+
# Tilt::LessTemplateWithPaths.load_path = File.join(@assets_path, 'css')
|
|
223
222
|
|
|
224
223
|
# Passing the @project instance variable to the Sprockets::Context instance
|
|
225
224
|
# used for processing the asset ERB files. Ruby meta-programming, FTW.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fones
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joey Stevense (script dj)
|
|
@@ -371,7 +371,7 @@ files:
|
|
|
371
371
|
- spec/lib/fones/config_spec.rb
|
|
372
372
|
- spec/lib/fones/project_spec.rb
|
|
373
373
|
- spec/spec_helper.rb
|
|
374
|
-
homepage:
|
|
374
|
+
homepage: https://github.com/joeystevense/fones
|
|
375
375
|
licenses:
|
|
376
376
|
- MIT
|
|
377
377
|
metadata: {}
|