j_growl_rails 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12fb665584979f2df0e61637aaa1874cea60f65c
4
- data.tar.gz: ccf38dd4acb6781ef912f46303be100420c03968
3
+ metadata.gz: db35e3bf8f5b5431a6ef16f7a1f05d4ca66feea9
4
+ data.tar.gz: e667485c30ba8c72ab5ebc25859e3367ecc9061a
5
5
  SHA512:
6
- metadata.gz: 7581cf854cc8782bac0fd89067c3be7d34c68a3b72725dcd41aecafd1b83e4ba6cd486f07bba7b57630c8e36121086cbc51f2d12e697b8333bf662f90c7bda8b
7
- data.tar.gz: 5e450fd0dab446be4bc32de540d66b79203d67bd0adf91b5b655812e2050c4cd54c556b5bb041a8629fdf468c3f816b2012b905332c119303131dacdfcd0c08d
6
+ metadata.gz: ea788b538eb2649734a61b064a4172cd41d3b26efbea5d78dbb0367607ff61f14beff668942fe449c001465894a8390af70258ec665e8ea17d46dd9253c41f68
7
+ data.tar.gz: 912895b97ecec52d8c392523a97f1c573051ad221ed15cc55c2ba499a45820bb420277d11bb725a21454b31c34d4a0b048046414cc0a71a370283e774d58bd45
@@ -1,4 +1,4 @@
1
- Copyright 2014 YOURNAME
1
+ Copyright 2014 Sachin Singh
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -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
@@ -10,7 +10,7 @@ RDoc::Task.new(:rdoc) do |rdoc|
10
10
  rdoc.rdoc_dir = 'rdoc'
11
11
  rdoc.title = 'JGrowlRails'
12
12
  rdoc.options << '--line-numbers'
13
- rdoc.rdoc_files.include('README.rdoc')
13
+ rdoc.rdoc_files.include('README.md')
14
14
  rdoc.rdoc_files.include('lib/**/*.rb')
15
15
  end
16
16
 
@@ -1,3 +1,3 @@
1
1
  module JGrowlRails
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
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.1
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.rdoc
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
@@ -1,3 +0,0 @@
1
- = JGrowlRails
2
-
3
- This project rocks and uses MIT-LICENSE.