foundation-rails 6.1.1.2 → 6.1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/Rakefile +1 -1
- data/lib/foundation/rails/version.rb +1 -1
- data/vendor/assets/js/foundation.js +28 -28
- 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: 32d87e63ee48a4c8fc20f21027b725b1187542c0
|
4
|
+
data.tar.gz: 3c39413c053820bbab6eed494bc127d93a3df557
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 814a637026a2e4c8b9321154e9212493cb3b8f8a816cc6ff37a9052cf29e484b95c1a54e64233970275e5db8b80b2211aa33001b19c8d7e0561d7e31cb9b834e
|
7
|
+
data.tar.gz: 0e3ebcf165a5781dd036c1af03d4028aab42bbe144e7f9e432b5d6c108d910c592d65983a7dabfda9cfda594e8789df2ea3b27527cad5200b8ea0af2eece185d
|
data/README.md
CHANGED
@@ -24,9 +24,9 @@ You can run the following command to add Foundation:
|
|
24
24
|
|
25
25
|
$ rails g foundation:install
|
26
26
|
|
27
|
-
|
27
|
+
Generating Haml or Slim versions of the markup can be done by appending the `--haml` or `--slim` option to the above command.
|
28
28
|
|
29
|
-
### Motion
|
29
|
+
### Motion UI
|
30
30
|
|
31
31
|
[Motion UI](https://github.com/zurb/motion-ui) is a Sass library for creating flexible UI transitions and animations, and it comes packaged with the `foundation-rails` gem. To use Motion UI, uncomment the following lines from `foundation_and_overrides.scss`:
|
32
32
|
|
data/Rakefile
CHANGED
@@ -18,7 +18,7 @@ namespace :assets do
|
|
18
18
|
js_files = Dir['vendor/assets/js/*.js'].sort
|
19
19
|
# Move foundation.core.js to beginning of js_files
|
20
20
|
js_files.insert(0, js_files.delete(js_files.find { |file| file[/foundation.core.js/] }))
|
21
|
-
manifest = js_files.map { |file| "//= require #{File.basename(file
|
21
|
+
manifest = js_files.map { |file| "//= require #{File.basename(file)}" }.join("\n")
|
22
22
|
File.write('vendor/assets/js/foundation.js', manifest)
|
23
23
|
|
24
24
|
puts 'Now update version.rb'
|
@@ -1,28 +1,28 @@
|
|
1
|
-
//= require foundation.core
|
2
|
-
//= require foundation.abide
|
3
|
-
//= require foundation.accordion
|
4
|
-
//= require foundation.accordionMenu
|
5
|
-
//= require foundation.drilldown
|
6
|
-
//= require foundation.dropdown
|
7
|
-
//= require foundation.dropdownMenu
|
8
|
-
//= require foundation.equalizer
|
9
|
-
//= require foundation.interchange
|
10
|
-
//= require foundation.magellan
|
11
|
-
//= require foundation.offcanvas
|
12
|
-
//= require foundation.orbit
|
13
|
-
//= require foundation.responsiveMenu
|
14
|
-
//= require foundation.responsiveToggle
|
15
|
-
//= require foundation.reveal
|
16
|
-
//= require foundation.slider
|
17
|
-
//= require foundation.sticky
|
18
|
-
//= require foundation.tabs
|
19
|
-
//= require foundation.toggler
|
20
|
-
//= require foundation.tooltip
|
21
|
-
//= require foundation.util.box
|
22
|
-
//= require foundation.util.keyboard
|
23
|
-
//= require foundation.util.mediaQuery
|
24
|
-
//= require foundation.util.motion
|
25
|
-
//= require foundation.util.nest
|
26
|
-
//= require foundation.util.timerAndImageLoader
|
27
|
-
//= require foundation.util.touch
|
28
|
-
//= require foundation.util.triggers
|
1
|
+
//= require foundation.core.js
|
2
|
+
//= require foundation.abide.js
|
3
|
+
//= require foundation.accordion.js
|
4
|
+
//= require foundation.accordionMenu.js
|
5
|
+
//= require foundation.drilldown.js
|
6
|
+
//= require foundation.dropdown.js
|
7
|
+
//= require foundation.dropdownMenu.js
|
8
|
+
//= require foundation.equalizer.js
|
9
|
+
//= require foundation.interchange.js
|
10
|
+
//= require foundation.magellan.js
|
11
|
+
//= require foundation.offcanvas.js
|
12
|
+
//= require foundation.orbit.js
|
13
|
+
//= require foundation.responsiveMenu.js
|
14
|
+
//= require foundation.responsiveToggle.js
|
15
|
+
//= require foundation.reveal.js
|
16
|
+
//= require foundation.slider.js
|
17
|
+
//= require foundation.sticky.js
|
18
|
+
//= require foundation.tabs.js
|
19
|
+
//= require foundation.toggler.js
|
20
|
+
//= require foundation.tooltip.js
|
21
|
+
//= require foundation.util.box.js
|
22
|
+
//= require foundation.util.keyboard.js
|
23
|
+
//= require foundation.util.mediaQuery.js
|
24
|
+
//= require foundation.util.motion.js
|
25
|
+
//= require foundation.util.nest.js
|
26
|
+
//= require foundation.util.timerAndImageLoader.js
|
27
|
+
//= require foundation.util.touch.js
|
28
|
+
//= require foundation.util.triggers.js
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foundation-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.1.1.
|
4
|
+
version: 6.1.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ZURB
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-01-
|
11
|
+
date: 2016-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|