framous 0.3.5 → 0.3.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,11 @@
1
1
  Framous Changelog
2
2
  =================
3
3
 
4
+ v0.3.6 [Jul 27, 2013]
5
+ ---------------------
6
+ * fixe typo
7
+ * javascript plugins copyright
8
+
4
9
  v0.3.5 [Jul 25, 2013]
5
10
  ---------------------
6
11
  * fixe typo
data/README.md CHANGED
@@ -21,7 +21,3 @@ Adding Framous to existing Compass projects
21
21
  Or create a new project:
22
22
 
23
23
  compass create <your-project-name> -r framous --using framous
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
@@ -1,13 +1,9 @@
1
- /*
2
- * Collapse plugin for jQuery
3
- * --
4
- * source: http://github.com/borderlab/framous
5
- * site:
6
- *
7
- * @author Thomas Hermant (http://hanami.be)
8
- * Copyright 2013, Thomas Hermant
9
- * Released under the MIT, BSD, and GPL Licenses.
10
- */
1
+ /* ---------------------------------------------------------------------------
2
+ framous.collapse.js
3
+ @version: v1.0
4
+ @author: Thomas Hermant (@thomashermant)
5
+ @copyright: Framous 2013
6
+ */
11
7
 
12
8
  (function ( $ ) {
13
9
 
@@ -1,13 +1,9 @@
1
- /*
2
- * Dropdown plugin for jQuery
3
- * --
4
- * source: http://github.com/borderlab/framous
5
- * site:
6
- *
7
- * @author Thomas Hermant (http://hanami.be)
8
- * Copyright 2013, Thomas Hermant
9
- * Released under the MIT, BSD, and GPL Licenses.
10
- */
1
+ /* ---------------------------------------------------------------------------
2
+ framous.dropdown.js
3
+ @version: v1.0
4
+ @author: Thomas Hermant (@thomashermant)
5
+ @copyright: Framous 2013
6
+ */
11
7
 
12
8
  (function ( $ ) {
13
9
 
@@ -1,13 +1,9 @@
1
- /*
2
- * Modal plugin for jQuery
3
- * --
4
- * source: http://github.com/borderlab/framous
5
- * site:
6
- *
7
- * @author Thomas Hermant (http://hanami.be)
8
- * Copyright 2013, Thomas Hermant
9
- * Released under the MIT, BSD, and GPL Licenses.
10
- */
1
+ /* ---------------------------------------------------------------------------
2
+ framous.modal.js
3
+ @version: v1.0
4
+ @author: Thomas Hermant (@thomashermant)
5
+ @copyright: Framous 2013
6
+ */
11
7
 
12
8
  (function ( $ ) {
13
9
 
@@ -1,13 +1,9 @@
1
- /*
2
- * ScrollSpy plugin for jQuery
3
- * --
4
- * source: http://github.com/borderlab/framous
5
- * site:
6
- *
7
- * @author Thomas Hermant (http://hanami.be)
8
- * Copyright 2013, Thomas Hermant
9
- * Released under the MIT, BSD, and GPL Licenses.
10
- */
1
+ /* ---------------------------------------------------------------------------
2
+ framous.scrollspy.js
3
+ @version: v1.0
4
+ @author: Thomas Hermant (@thomashermant)
5
+ @copyright: Framous 2013
6
+ */
11
7
 
12
8
  (function ( $ ) {
13
9
  // vars
@@ -1,13 +1,9 @@
1
- /*
2
- * Sticky plugin for jQuery
3
- * --
4
- * source: http://github.com/borderlab/framous
5
- * site:
6
- *
7
- * @author Thomas Hermant (http://hanami.be)
8
- * Copyright 2013, Thomas Hermant
9
- * Released under the MIT, BSD, and GPL Licenses.
10
- */
1
+ /* ---------------------------------------------------------------------------
2
+ framous.sticky.js
3
+ @version: v1.0
4
+ @author: Thomas Hermant (@thomashermant)
5
+ @copyright: Framous 2013
6
+ */
11
7
 
12
8
  (function ( $ ) {
13
9
 
@@ -1,13 +1,9 @@
1
- /*
2
- * Toogle plugin for jQuery
3
- * --
4
- * source: http://github.com/borderlab/framous
5
- * site:
6
- *
7
- * @author Thomas Hermant (http://hanami.be)
8
- * Copyright 2013, Thomas Hermant
9
- * Released under the MIT, BSD, and GPL Licenses.
10
- */
1
+ /* ---------------------------------------------------------------------------
2
+ framous.toggle.js
3
+ @version: v1.0
4
+ @author: Thomas Hermant (@thomashermant)
5
+ @copyright: Framous 2013
6
+ */
11
7
 
12
8
  (function ( $ ) {
13
9
 
@@ -1,13 +1,9 @@
1
- /*
2
- * Tooltip plugin for jQuery
3
- * --
4
- * source: http://github.com/borderlab/framous
5
- * site:
6
- *
7
- * @author Thomas Hermant (http://hanami.be)
8
- * Copyright 2013, Thomas Hermant
9
- * Released under the MIT, BSD, and GPL Licenses.
10
- */
1
+ /* ---------------------------------------------------------------------------
2
+ framous.tooltip.js
3
+ @version: v1.0
4
+ @author: Thomas Hermant (@thomashermant)
5
+ @copyright: Framous 2013
6
+ */
11
7
 
12
8
  (function ( $ ) {
13
9
 
@@ -8,8 +8,10 @@ stylesheet 'stylesheets/layout/_header.scss', :to => 'layout/_header.scss'
8
8
  stylesheet 'stylesheets/layout/_main.scss', :to => 'layout/_main.scss'
9
9
  stylesheet 'stylesheets/layout/_footer.scss', :to => 'layout/_footer.scss'
10
10
 
11
+ # HTML Quick Start File
11
12
  html 'index.html'
12
13
 
14
+ # Javacript Plugins Files
13
15
  javascript 'javascripts/vendors/jquery-1.10.1.min.js', :to => 'vendors/jquery-1.10.1.min.js'
14
16
  javascript 'javascripts/plugins/framous.collapse.js', :to => 'plugins/framous.collapse.js'
15
17
  javascript 'javascripts/plugins/framous.dropdown.js', :to => 'plugins/framous.dropdown.js'
@@ -10,7 +10,6 @@
10
10
  // Framous
11
11
  @import "framous";
12
12
 
13
- // Settings
14
13
  // Settings that can be easily overridden from this file
15
14
  @import "utility/settings";
16
15
 
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: 25
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 5
10
- version: 0.3.5
9
+ - 6
10
+ version: 0.3.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alec Hance