simplyscroll-rails 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
- ---
2
- SHA512:
3
- metadata.gz: 7632753b10e292b108f90cd1f065988b8f18bc3223f4efb6e9522afcd958edd0987aacc489d0fa9ad35d2caaff40677474aee5aa998c090852cbb94c127b22b5
4
- data.tar.gz: 53c733e1adae03edb686c2300a9dd89d8b31b9b8a652d02b72b4e29682e8f18b0a73ff0a907f161e32252d2ab70c1a191553be0ee3b8235d70a5673e0d6b03b4
5
- SHA1:
6
- metadata.gz: 3abc92c717778dac85aa495087505d0f0378be97
7
- data.tar.gz: 1d829bd5ee4e1d514250f3da06c3c6913ae63224
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ Y2Q0NWMxMzgzZmU0OWMxZjk5MmJkZDZmNjg0ZDE3NWFlZGQ2YjBhOA==
5
+ data.tar.gz: !binary |-
6
+ MjdlMTRmMGY2NjU4YjA3YjFlNjAzNDI1YmZiYzdiZjI1YTdlNjBmOA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ OWExMGRlMGQ0MDI1NjkzYjA1ZTgwM2VmZDBmZjY3ZjQyNWE4NTMyMTdhZDhm
10
+ NTU4Y2QzYTAwZmI4YjkwYjk5YzczZDY2OGY4YTAzYTUwYTdlMDY2ODJhOGYy
11
+ OGY3NjMxMzIxMmYyYWI1YmI4NTFiMTY3ZDE2NzZlYzI4MTQ2YjY=
12
+ data.tar.gz: !binary |-
13
+ Y2FjNmFiYWYzZTdlMmY3M2UxOTFlZmFjZjU2MWVhY2JjY2Q1N2UyN2ZlNzli
14
+ MDMyYWZmMjRhZmQzMTBmMzA3NGUwMTVhZGNjNjc3MzEzMzYwM2RlZTE0YTY4
15
+ MzcwNGEzZjBhZjI4NDA1ODQ1OTYzYWZjZmZmZWZlNTQ3Zjc5OWY=
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in simplyscroll-rails.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 TwoWeb
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -35,14 +35,22 @@ Or for the minified version
35
35
  //= require jquery.simplyscroll-min
36
36
  ```
37
37
 
38
- And to your app/assets/stylesheets/application.css
38
+ And to your app/assets/stylesheets/application.css.sass or application.css.scss
39
+
40
+
41
+ ```
42
+ @import simplyscroll
43
+ ```
44
+
45
+ Or application.css:
39
46
 
40
47
  ```
41
- @import simplyscroll.css
48
+ *= require simplyscroll
42
49
  ```
43
50
 
51
+
44
52
  ## Example
45
- You don't need any special markup. All you need is to wrap your uls inside the container element. ID "scroller" is mandatory to apply proper styles that come from owl.carousel.css file.
53
+ You don't need any special markup. All you need is to wrap your uls inside the container element. ID "scroller" is mandatory to apply proper styles that come from simplyscroll.css file.
46
54
 
47
55
  ```html
48
56
  <ul id="scroller">
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
File without changes
File without changes
@@ -3,15 +3,6 @@ require "simplyscroll-rails/version"
3
3
  module Simplyscroll
4
4
  module Rails
5
5
  class Engine < ::Rails::Engine
6
- initializer :append_dependent_assets_path, :group => :all do |app|
7
- app.config.assets.paths += %w( fonts )
8
-
9
- app.config.assets.precompile += %w( simplyscroll.css )
10
- app.config.assets.precompile += %w( jquery.simplyscroll.js )
11
-
12
- app.config.assets.precompile += %w( buttons.png )
13
-
14
- end
15
- end
6
+ end
16
7
  end
17
8
  end
@@ -1,3 +1,5 @@
1
1
  module Simplyscroll
2
- VERSION = "1.0.1"
2
+ module Rails
3
+ VERSION = "1.0.2"
4
+ end
3
5
  end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'simplyscroll-rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "simplyscroll-rails"
8
+ spec.version = Simplyscroll::Rails::VERSION
9
+ spec.authors = ["TwoWeb"]
10
+ spec.email = ["dev@twoweb.com.br"]
11
+ spec.summary = "gem jQuery Simply Scroll"
12
+ spec.description = "jQuery Simply Scroll for rails"
13
+ spec.homepage = "https://github.com/twoweb/simplyscroll-rails"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
metadata CHANGED
@@ -1,73 +1,84 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: simplyscroll-rails
3
- version: !ruby/object:Gem::Version
4
- version: 1.0.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.2
5
5
  platform: ruby
6
- authors:
6
+ authors:
7
7
  - TwoWeb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
-
12
- date: 2015-02-02 00:00:00 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: rails
11
+ date: 2015-02-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
16
21
  prerelease: false
17
- requirement: &id001 !ruby/object:Gem::Requirement
18
- requirements:
19
- - &id002
20
- - ">="
21
- - !ruby/object:Gem::Version
22
- version: "0"
23
- type: :runtime
24
- version_requirements: *id001
25
- description: gem simplyscroll for rails
26
- email:
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: jQuery Simply Scroll for rails
42
+ email:
27
43
  - dev@twoweb.com.br
28
44
  executables: []
29
-
30
45
  extensions: []
31
-
32
46
  extra_rdoc_files: []
33
-
34
- files:
35
- - lib/simplyscroll-rails.rb
36
- - lib/simplyscroll-rails/version.rb
37
- - vendor/assets/images/buttons.png
38
- - vendor/assets/images/bg_play_pause.png
39
- - vendor/assets/images/bg_direction_nav.png
40
- - vendor/assets/javascripts/jquery.simplyscroll.min.js
41
- - vendor/assets/javascripts/jquery.simplyscroll.js
42
- - vendor/assets/stylesheets/simplyscroll.css
43
- - vendor/assets/fonts/flexslider-icon.woff
44
- - vendor/assets/fonts/flexslider-icon.ttf
45
- - vendor/assets/fonts/flexslider-icon.svg
46
- - vendor/assets/fonts/flexslider-icon.eot
47
+ files:
48
+ - Gemfile
47
49
  - LICENSE
50
+ - LICENSE.txt
48
51
  - README.md
52
+ - Rakefile
53
+ - app/assets/images/buttons.png
54
+ - app/assets/javascripts/jquery.simplyscroll.js
55
+ - app/assets/javascripts/jquery.simplyscroll.min.js
56
+ - app/assets/stylesheets/simplyscroll.css
57
+ - lib/simplyscroll-rails.rb
58
+ - lib/simplyscroll-rails/version.rb
59
+ - simplyscroll-rails.gemspec
49
60
  homepage: https://github.com/twoweb/simplyscroll-rails
50
- licenses: []
51
-
61
+ licenses:
62
+ - MIT
52
63
  metadata: {}
53
-
54
64
  post_install_message:
55
65
  rdoc_options: []
56
-
57
- require_paths:
66
+ require_paths:
58
67
  - lib
59
- required_ruby_version: !ruby/object:Gem::Requirement
60
- requirements:
61
- - *id002
62
- required_rubygems_version: !ruby/object:Gem::Requirement
63
- requirements:
64
- - *id002
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ! '>='
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
65
78
  requirements: []
66
-
67
79
  rubyforge_project:
68
- rubygems_version: 2.0.14
80
+ rubygems_version: 2.4.3
69
81
  signing_key:
70
82
  specification_version: 4
71
- summary: gem simplyscroll
83
+ summary: gem jQuery Simply Scroll
72
84
  test_files: []
73
-
@@ -1,19 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
- <svg xmlns="http://www.w3.org/2000/svg">
4
- <metadata>
5
- This is a custom SVG font generated by IcoMoon.
6
- <iconset grid="14"></iconset>
7
- </metadata>
8
- <defs>
9
- <font id="flexslider-icon" horiz-adv-x="448" >
10
- <font-face units-per-em="448" ascent="384" descent="-64" />
11
- <missing-glyph horiz-adv-x="448" />
12
- <glyph unicode="&#xf001;" d="M 185.50-9.25l-163.00,162.75q-9.25,9.25 -9.25,22.625t 9.25,22.625l 163.00,162.75q 9.25,9.25 22.625,9.25t 22.625-9.25l 18.75-18.75q 9.25-9.25 9.25-22.625t-9.25-22.625l-121.50-121.50l 121.50-121.25q 9.25-9.50 9.25-22.75t-9.25-22.50l-18.75-18.75q-9.25-9.25 -22.625-9.25t-22.625,9.25z" horiz-adv-x="288" />
13
- <glyph unicode="&#xf002;" d="M 274.75,176.00q0.00-13.00 -9.25-22.75l-163.00-162.75q-9.25-9.25 -22.50-9.25t-22.50,9.25l-19.00,18.75q-9.25,9.75 -9.25,22.75q0.00,13.25 9.25,22.50l 121.50,121.50l-121.50,121.25q-9.25,9.75 -9.25,22.75q0.00,13.25 9.25,22.50l 19.00,18.75q 9.00,9.50 22.50,9.50t 22.50-9.50l 163.00-162.75q 9.25-9.25 9.25-22.50z" horiz-adv-x="288" />
14
- <glyph unicode="&#xf003;" d="M 346.00,152.25l-332.00-184.50q-5.75-3.25 -9.875-0.75t-4.125,9.00l0.00,368.00 q0.00,6.50 4.125,9.00t 9.875-0.75l 332.00-184.50q 5.75-3.25 5.75-7.75t-5.75-7.75z" horiz-adv-x="352" />
15
- <glyph unicode="&#xf004;" d="M 384.00,336.00l0.00-352.00 q0.00-6.50 -4.75-11.25t-11.25-4.75l-128.00,0.00 q-6.50,0.00 -11.25,4.75t-4.75,11.25l0.00,352.00 q0.00,6.50 4.75,11.25t 11.25,4.75l 128.00,0.00 q 6.50,0.00 11.25-4.75t 4.75-11.25zM 160.00,336.00l0.00-352.00 q0.00-6.50 -4.75-11.25t-11.25-4.75l-128.00,0.00 q-6.50,0.00 -11.25,4.75t-4.75,11.25l0.00,352.00 q0.00,6.50 4.75,11.25t 11.25,4.75l 128.00,0.00 q 6.50,0.00 11.25-4.75t 4.75-11.25z" horiz-adv-x="384" />
16
- <glyph unicode="&#xf005;" d="M 402.75,208.00q0.00-13.25 -9.25-22.50l-162.75-162.75q-9.50-9.50 -22.75-9.50q-13.50,0.00 -22.50,9.50l-162.75,162.75q-9.50,9.00 -9.50,22.50q0.00,13.25 9.50,22.75l 18.50,18.75q 9.75,9.25 22.75,9.25q 13.25,0.00 22.50-9.25l 121.50-121.50l 121.50,121.50q 9.25,9.25 22.50,9.25q 13.00,0.00 22.75-9.25l 18.75-18.75q 9.25-9.75 9.25-22.75z" horiz-adv-x="416" />
17
- <glyph unicode="&#x20;" horiz-adv-x="224" />
18
- <glyph class="hidden" unicode="&#xf000;" d="M0,384L 448 -64L0 -64 z" horiz-adv-x="0" />
19
- </font></defs></svg>
Binary file