tablecloth-rails 1.0.0 → 1.0.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee41c8859664ebd28982217d4a4782e030d0f08e
|
4
|
+
data.tar.gz: e563ebdc30d57805043f71698273562696562cfc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5c28fc0553c0f6c7754889d1b4f44b897355c2fe14cec5750d5b3d63764878f28b3a2a007bfa8d54221ff0cb5f0e7105dd2d7a1b32d2c25c2ac0954f117a260
|
7
|
+
data.tar.gz: de4e9292bdaa9ade0b8c6a7932448fa83cf9f785068a74ea7ad2543fffe461abb01e7f9defa9728b474a7243d763bd27b8c65cb75a3374ef00886bc09184c715
|
data/README.md
CHANGED
@@ -1,23 +1,29 @@
|
|
1
1
|
# tablecloth-rails [](http://badge.fury.io/rb/tablecloth-rails)
|
2
2
|
|
3
|
-
>
|
3
|
+
> Gemified by Doc Walker
|
4
4
|
|
5
5
|
Provides the `Tablecloth` JavaScript/CSS packaged for the Rails 3.1+ asset pipeline.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
9
|
-
Add these lines to your application's Gemfile
|
9
|
+
Add these lines to your application's `Gemfile`:
|
10
10
|
|
11
|
-
|
12
|
-
|
11
|
+
```rb
|
12
|
+
# tablecloth table js/css packaged for the rails asset pipeline
|
13
|
+
gem 'tablecloth-rails', '~> 1.0'
|
14
|
+
```
|
13
15
|
|
14
16
|
And then execute:
|
15
17
|
|
16
|
-
|
18
|
+
```sh
|
19
|
+
$ bundle
|
20
|
+
```
|
17
21
|
|
18
22
|
Or install it yourself as:
|
19
23
|
|
20
|
-
|
24
|
+
```sh
|
25
|
+
$ gem install tablecloth-rails
|
26
|
+
```
|
21
27
|
|
22
28
|
Gem version notes:
|
23
29
|
|
@@ -28,13 +34,17 @@ Gem version notes:
|
|
28
34
|
|
29
35
|
Add these lines to `app/assets/javascripts/application.js`
|
30
36
|
|
31
|
-
|
32
|
-
|
37
|
+
```js
|
38
|
+
// provides tablecloth table js/css from gem 'tablecloth-rails':
|
39
|
+
//= require tablecloth-rails
|
40
|
+
```
|
33
41
|
|
34
42
|
Add these lines to `app/assets/stylesheets/application.css`
|
35
43
|
|
36
|
-
|
37
|
-
|
44
|
+
```css
|
45
|
+
provides tablecloth table js/css from gem 'tablecloth-rails':
|
46
|
+
= require tablecloth-rails
|
47
|
+
```
|
38
48
|
|
39
49
|
## Contributing
|
40
50
|
|
@@ -0,0 +1 @@
|
|
1
|
+
//= require tablecloth
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tablecloth-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Doc Walker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-07-
|
11
|
+
date: 2013-07-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -69,7 +69,9 @@ files:
|
|
69
69
|
- lib/tablecloth-rails/engine.rb
|
70
70
|
- lib/tablecloth-rails/version.rb
|
71
71
|
- tablecloth-rails.gemspec
|
72
|
+
- vendor/assets/javascripts/tablecloth-rails.js
|
72
73
|
- vendor/assets/javascripts/tablecloth.js
|
74
|
+
- vendor/assets/stylesheets/tablecloth-rails.css
|
73
75
|
- vendor/assets/stylesheets/tablecloth.css
|
74
76
|
homepage: https://github.com/jhx/gem-tablecloth-rails
|
75
77
|
licenses:
|