fullpagejs 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a8a9447807061c6b6c61795cf459de92c9bc7fc8
4
- data.tar.gz: e97d20fd945703a37ccba12fa962ca02c4ff7a58
3
+ metadata.gz: cd7d5950037e850090644296f0a3a5b962bdbbac
4
+ data.tar.gz: b42e8a1ac7037cddd1c041b6e039401bf0f862ab
5
5
  SHA512:
6
- metadata.gz: 0962760f2cae051212f41e99798bda2f5bd3f033df11d726e0f41cc4834ac51f36e58fc29c312407882dd703c2e9b1a252234b5d7d19df7578974d9099652717
7
- data.tar.gz: 1a793227acd167082321bfe9ad97ba9765cb7af180eb250bfc31616b9f10310c57c41f0b3d13913c1cf2093747ddca4a502a5d67f84b667e30848be2f0b24b2c
6
+ metadata.gz: 459a6d290914af9f4e9e11d90f2fa2e3d1f03c0e97d840233df0ec5c5da9aff436b2419f37f2f99b44c8f93dc5557851ce9dd6376d2332e18161269e29f0284d
7
+ data.tar.gz: 743ec71a4c222d3de29d8f82e30dbeeec3876be300408e141308ab54a440a66a27304a79b5271c9dc2b80930d2ca62c2962a0951098edbf43de7fb56154433f3
data/README.md CHANGED
@@ -22,7 +22,7 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
- TODO: Write usage instructions here
25
+ //=require fullpagejs
26
26
 
27
27
  ## Development
28
28
 
@@ -32,7 +32,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
32
 
33
33
  ## Contributing
34
34
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/fullpagejs.
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/hb9390/fullpagejs.
36
36
 
37
37
  ## License
38
38
 
data/fullpagejs.gemspec CHANGED
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path("../lib", __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "fullpagejs/version"
4
+ require "fullpagejs/rails/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "fullpagejs"
8
- spec.version = Fullpagejs::VERSION
8
+ spec.version = Fullpagejs::Rails::VERSION
9
9
  spec.authors = ["Heisenberg"]
10
10
  spec.email = ["vs9390@gmail.com"]
11
11
 
@@ -0,0 +1,8 @@
1
+ require "fullpagejs/rails/version"
2
+
3
+ module Fullpagejs
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ module Fullpagejs
2
+ module Rails
3
+ VERSION = "0.1.2"
4
+ end
5
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fullpagejs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Heisenberg
@@ -71,8 +71,8 @@ files:
71
71
  - bin/console
72
72
  - bin/setup
73
73
  - fullpagejs.gemspec
74
- - lib/fullpagejs.rb
75
- - lib/fullpagejs/version.rb
74
+ - lib/fullpagejs/rails.rb
75
+ - lib/fullpagejs/rails/version.rb
76
76
  - spec/fullpagejs_spec.rb
77
77
  - spec/spec_helper.rb
78
78
  - vendor/assets/javascripts/jquery.fullPage.min.js
data/lib/fullpagejs.rb DELETED
@@ -1,5 +0,0 @@
1
- require "fullpagejs/version"
2
-
3
- module Fullpagejs
4
- # Your code goes here...
5
- end
@@ -1,3 +0,0 @@
1
- module Fullpagejs
2
- VERSION = "0.1.1"
3
- end