j_growl_rails 0.0.1 → 0.0.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 +4 -4
- data/MIT-LICENSE +1 -1
- data/README.md +31 -0
- data/Rakefile +1 -1
- data/lib/j_growl_rails/version.rb +1 -1
- metadata +2 -2
- data/README.rdoc +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db35e3bf8f5b5431a6ef16f7a1f05d4ca66feea9
|
|
4
|
+
data.tar.gz: e667485c30ba8c72ab5ebc25859e3367ecc9061a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea788b538eb2649734a61b064a4172cd41d3b26efbea5d78dbb0367607ff61f14beff668942fe449c001465894a8390af70258ec665e8ea17d46dd9253c41f68
|
|
7
|
+
data.tar.gz: 912895b97ecec52d8c392523a97f1c573051ad221ed15cc55c2ba499a45820bb420277d11bb725a21454b31c34d4a0b048046414cc0a71a370283e774d58bd45
|
data/MIT-LICENSE
CHANGED
data/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# JGrowl for rails asset pipeline
|
|
2
|
+
|
|
3
|
+
[JGrowl](https://github.com/stanlemon/jGrowl) is a jQuery plugin that raises unobtrusive messages within the browser, similar to the way that OS X's Growl Framework works. The idea is simple, deliver notifications to the end user in a noticeable way that doesn't obstruct the work flow and yet keeps the user informed.
|
|
4
|
+
|
|
5
|
+
The `j_growl_rails` gem integrates the `JGrowl` with the Rails asset pipeline.
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
### Install j_growl_rails gem
|
|
10
|
+
|
|
11
|
+
Include `j_growl_rails` in Gemefile
|
|
12
|
+
|
|
13
|
+
gem 'j_growl_rails'
|
|
14
|
+
|
|
15
|
+
Then run `bundle install`
|
|
16
|
+
|
|
17
|
+
### Include JGrowl javascript assets
|
|
18
|
+
|
|
19
|
+
Add to your `app/assets/javascripts/application.js` if use with jQuery
|
|
20
|
+
|
|
21
|
+
//= require j_growl_rails/jquery.jgrowl
|
|
22
|
+
|
|
23
|
+
### Include JGrowl stylesheet assets
|
|
24
|
+
|
|
25
|
+
Add to your `app/assets/javascripts/application.js` if use with jQuery
|
|
26
|
+
|
|
27
|
+
//= require j_growl_rails/jquery.jgrowl
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
use MIT license.
|
data/Rakefile
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: j_growl_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sachin Singh
|
|
@@ -48,7 +48,7 @@ extensions: []
|
|
|
48
48
|
extra_rdoc_files: []
|
|
49
49
|
files:
|
|
50
50
|
- MIT-LICENSE
|
|
51
|
-
- README.
|
|
51
|
+
- README.md
|
|
52
52
|
- Rakefile
|
|
53
53
|
- app/assets/javascripts/j_growl_rails/Gruntfile.js
|
|
54
54
|
- app/assets/javascripts/j_growl_rails/application.js
|
data/README.rdoc
DELETED