jtippy 0.1.7 → 0.1.8
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 +4 -4
- data/README.md +3 -4
- data/lib/jtippy.rb +9 -0
- data/lib/jtippy/version.rb +1 -1
- data/{app → vendor}/assets/javascripts/jtippy.js +0 -0
- data/{app → vendor}/assets/stylesheets/jtippy.css +0 -0
- metadata +4 -32
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '00681a3f38092918cf51801ca891ee926fea0d7f700d5036b45a8b92d5f4283a'
|
|
4
|
+
data.tar.gz: 53413cd045cae03c2632bbf1d97de1bfbdeba536b31b174e1a1845c09ad92364
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e575aa7994659318d4466fca6f45ac109814ba19ad1d765f10f76e3c7d99cfd3544deb091990470e528708355f87337c7c67b0fbfa45d13a226e6a040084d5fb
|
|
7
|
+
data.tar.gz: 6993e45472357a7ba96c28e3ca28d78342213ea8cbf7e70af312918e5e56c084f61b60010c3255a7c4300e345f3115cbb3813088b0b9d7c608d29a604c017dd7
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[](https://badge.fury.io/rb/jtippy)
|
|
2
2
|
# Jtippy
|
|
3
3
|
|
|
4
|
-
The lightweight and easy to use jQuery Tooltip Plugin, as a ruby gem. Current version is **0.1.
|
|
4
|
+
The lightweight and easy to use jQuery Tooltip Plugin, as a ruby gem. Current version is **0.1.8**,
|
|
5
5
|
see [the official website](https://github.com/HTMLGuyLLC/jTippy) for more info.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
@@ -31,12 +31,11 @@ This just adds the required JavaScript and CSS files to your Rails project, see
|
|
|
31
31
|
|
|
32
32
|
For using in your Rails project, include the jtippy in your **application.js** after including jQuery
|
|
33
33
|
```javascript
|
|
34
|
-
//= require
|
|
35
|
-
//= require jtippy
|
|
34
|
+
//= require jtippy.js
|
|
36
35
|
```
|
|
37
36
|
Also include the css in **application.css**
|
|
38
37
|
```
|
|
39
|
-
*= require jtippy
|
|
38
|
+
*= require jtippy.css
|
|
40
39
|
```
|
|
41
40
|
|
|
42
41
|
## Contributing
|
data/lib/jtippy.rb
CHANGED
|
@@ -3,4 +3,13 @@ require "jtippy/version"
|
|
|
3
3
|
module Jtippy
|
|
4
4
|
class Error < StandardError; end
|
|
5
5
|
# Your code goes here...
|
|
6
|
+
|
|
7
|
+
class Engine < Rails::Engine
|
|
8
|
+
initializer :assets do |config|
|
|
9
|
+
Rails.application.config.assets.precompile += %w{ jtippy.js jtippy.css }
|
|
10
|
+
Rails.application.config.assets.paths << root.join("vendor", "assets", "javascripts")
|
|
11
|
+
Rails.application.config.assets.paths << root.join("vendor", "assets", "stylesheets")
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
|
|
6
15
|
end
|
data/lib/jtippy/version.rb
CHANGED
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jtippy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rahul Tiwari
|
|
@@ -9,35 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2019-10-09 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: '2.0'
|
|
20
|
-
type: :development
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - "~>"
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: '2.0'
|
|
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'
|
|
12
|
+
dependencies: []
|
|
41
13
|
description: jQuery tooltip plugin. Easy to use and configure with excellent responsive
|
|
42
14
|
placement.
|
|
43
15
|
email:
|
|
@@ -46,10 +18,10 @@ extensions: []
|
|
|
46
18
|
extra_rdoc_files: []
|
|
47
19
|
files:
|
|
48
20
|
- README.md
|
|
49
|
-
- app/assets/javascripts/jtippy.js
|
|
50
|
-
- app/assets/stylesheets/jtippy.css
|
|
51
21
|
- lib/jtippy.rb
|
|
52
22
|
- lib/jtippy/version.rb
|
|
23
|
+
- vendor/assets/javascripts/jtippy.js
|
|
24
|
+
- vendor/assets/stylesheets/jtippy.css
|
|
53
25
|
homepage: https://github.com/rahuldstiwari/jtippy-rails
|
|
54
26
|
licenses:
|
|
55
27
|
- MIT
|