tooltipster-rails 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # Tooltipster::Rails
1
+ # tooltipster-rails
2
2
 
3
- TODO: Write a gem description
3
+ Rails (3.1+) Asset Pipeline for Tooltipster by Caleb Jacob (https://github.com/iamceege). For more info and how to use it see http://calebjacob.com/tooltipster and https://github.com/iamceege/tooltipster
4
4
 
5
5
  ## Installation
6
6
 
@@ -18,7 +18,7 @@ Or install it yourself as:
18
18
 
19
19
  ## Usage
20
20
 
21
- TODO: Write usage instructions here
21
+ See http://calebjacob.com/tooltipster
22
22
 
23
23
  ## Contributing
24
24
 
@@ -1 +1 @@
1
- //= require jquery.tooltipster.min
1
+ //= require ./jquery.tooltipster.min
@@ -1,6 +1,7 @@
1
1
  /*
2
- *= require reset.css
3
- *= require index.css
4
- *= require style.css
5
- *= require themes/
2
+ *= require ./tooltipster.css
3
+ *= require ./themes/tooltipster-light.css
4
+ *= require ./themes/tooltipster-noir.css
5
+ *= require ./themes/tooltipster-shadow.css
6
+ *= require ./themes/tooltipster-punk.css
6
7
  */
@@ -1,5 +1,5 @@
1
1
  module Tooltipster
2
2
  module Rails
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["amunds@gmail.com"]
11
11
  spec.description = %q{Rails 3.1 Asset Gem for Tooltipster}
12
12
  spec.summary = %q{Asset pipeline gem for Tooltipster (https://github.com/iamceege/tooltipster)}
13
- spec.homepage = ""
13
+ spec.homepage = "https://github.com/Amunds/tooltipster-rails"
14
14
  spec.license = "GPL-3.0"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tooltipster-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -59,8 +59,6 @@ files:
59
59
  - app/assets/javascripts/tooltipster-rails/index.js
60
60
  - app/assets/javascripts/tooltipster-rails/jquery.tooltipster.min.js
61
61
  - app/assets/stylesheets/tooltipster-rails/index.css
62
- - app/assets/stylesheets/tooltipster-rails/reset.css
63
- - app/assets/stylesheets/tooltipster-rails/style.css
64
62
  - app/assets/stylesheets/tooltipster-rails/themes/tooltipster-light.css
65
63
  - app/assets/stylesheets/tooltipster-rails/themes/tooltipster-noir.css
66
64
  - app/assets/stylesheets/tooltipster-rails/themes/tooltipster-punk.css
@@ -71,7 +69,7 @@ files:
71
69
  - lib/tooltipster/rails/engine.rb
72
70
  - lib/tooltipster/rails/version.rb
73
71
  - tooltipster-rails.gemspec
74
- homepage: ''
72
+ homepage: https://github.com/Amunds/tooltipster-rails
75
73
  licenses:
76
74
  - GPL-3.0
77
75
  post_install_message:
@@ -1,45 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- html, body, div, span, applet, object, iframe,
4
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
5
- a, abbr, acronym, address, big, cite, code,
6
- del, dfn, em, img, ins, kbd, q, s, samp,
7
- small, strike, strong, sub, sup, tt, var,
8
- b, u, i, center,
9
- dl, dt, dd, ol, ul, li,
10
- fieldset, form, label, legend,
11
- table, caption, tbody, tfoot, thead, tr, th, td,
12
- article, aside, canvas, details, embed,
13
- figure, figcaption, footer, header, hgroup,
14
- menu, nav, output, ruby, section, summary,
15
- time, mark, audio, video {
16
- margin: 0;
17
- padding: 0;
18
- border: 0;
19
- font-size:100%;
20
- vertical-align: baseline;
21
- }
22
- /* HTML5 display-role reset for older browsers */
23
- article, aside, details, figcaption, figure,
24
- footer, header, hgroup, menu, nav, section {
25
- display: block;
26
- }
27
- body {
28
- line-height: 1;
29
- }
30
- ol, ul {
31
- list-style: none;
32
- }
33
- blockquote, q {
34
- quotes: none;
35
- }
36
- blockquote:before, blockquote:after,
37
- q:before, q:after {
38
- content: '';
39
- content: none;
40
- }
41
- table {
42
- border-collapse: collapse;
43
- border-spacing: 0;
44
- }
45
-
@@ -1,28 +0,0 @@
1
- /* Main */
2
-
3
- body {
4
- background-color: #dcdcdc;
5
- color: #0b0b0b;
6
- font-size: 16px;
7
- line-height: 22px;
8
- }
9
-
10
- .container, #container {
11
- width: 978px;
12
- margin: 10px auto;
13
- padding: 60px;
14
- box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
15
- background: #fff;
16
- text-align: left;
17
- display: block;
18
- overflow: hidden;
19
- }
20
-
21
- .item {
22
- width: 200px;
23
- float: left;
24
- padding: 10px;
25
- margin: 10px;
26
- background: #000;
27
- color: #fff;
28
- }