framous 0.3.4 → 0.3.5
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/CHANGELOG.mkdn +5 -0
- data/README.md +3 -0
- data/templates/project/index.html +1 -2
- data/templates/project/manifest.rb +0 -1
- metadata +3 -4
- data/templates/project/config.rb +0 -28
data/CHANGELOG.mkdn
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Framous Changelog
|
2
2
|
=================
|
3
3
|
|
4
|
+
v0.3.5 [Jul 25, 2013]
|
5
|
+
---------------------
|
6
|
+
* fixe typo
|
7
|
+
* remove custom config.rb (learn more: https://gist.github.com/alechance/f7fce6cc2797f26913d3)
|
8
|
+
|
4
9
|
v0.3.4 [Jul 25, 2013]
|
5
10
|
---------------------
|
6
11
|
* fixe typo
|
data/README.md
CHANGED
@@ -22,3 +22,6 @@ Or create a new project:
|
|
22
22
|
|
23
23
|
compass create <your-project-name> -r framous --using framous
|
24
24
|
|
25
|
+
After the install you will notice "File your-project-name/config.rb already exists". We made a custom config.rb in order to force a couple settings. Don't worry, run:
|
26
|
+
|
27
|
+
compass create <your-project-name> -r framous --using framous --force
|
@@ -9,7 +9,6 @@ stylesheet 'stylesheets/layout/_main.scss', :to => 'layout/_main.scss'
|
|
9
9
|
stylesheet 'stylesheets/layout/_footer.scss', :to => 'layout/_footer.scss'
|
10
10
|
|
11
11
|
html 'index.html'
|
12
|
-
file 'config.rb'
|
13
12
|
|
14
13
|
javascript 'javascripts/vendors/jquery-1.10.1.min.js', :to => 'vendors/jquery-1.10.1.min.js'
|
15
14
|
javascript 'javascripts/plugins/framous.collapse.js', :to => 'plugins/framous.collapse.js'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: framous
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 5
|
10
|
+
version: 0.3.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Alec Hance
|
@@ -72,7 +72,6 @@ files:
|
|
72
72
|
- stylesheets/framous/utility/_framous-settings.scss
|
73
73
|
- stylesheets/framous/utility/_functions.scss
|
74
74
|
- stylesheets/framous/utility/_mixins.scss
|
75
|
-
- templates/project/config.rb
|
76
75
|
- templates/project/index.html
|
77
76
|
- templates/project/javascripts/plugins/framous.collapse.js
|
78
77
|
- templates/project/javascripts/plugins/framous.dropdown.js
|
data/templates/project/config.rb
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
require 'framous'
|
2
|
-
# Require any additional compass plugins here.
|
3
|
-
|
4
|
-
|
5
|
-
# Set this to the root of your project when deployed:
|
6
|
-
http_path = "/"
|
7
|
-
css_dir = "stylesheets"
|
8
|
-
sass_dir = "sass"
|
9
|
-
images_dir = "images"
|
10
|
-
javascripts_dir = "javascripts"
|
11
|
-
|
12
|
-
# You can select your preferred output style here (can be overridden via the command line):
|
13
|
-
# output_style = :expanded or :nested or :compact or :compressed
|
14
|
-
|
15
|
-
# To enable relative paths to assets via compass helper functions. Uncomment:
|
16
|
-
# relative_assets = true
|
17
|
-
|
18
|
-
# To disable debugging comments that display the original location of your selectors. Uncomment:
|
19
|
-
line_comments = false
|
20
|
-
|
21
|
-
Sass::Script::Number.precision = 4
|
22
|
-
|
23
|
-
|
24
|
-
# If you prefer the indented syntax, you might want to regenerate this
|
25
|
-
# project again passing --syntax sass, or you can uncomment this:
|
26
|
-
# preferred_syntax = :sass
|
27
|
-
# and then run:
|
28
|
-
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
|