gritter 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.
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # gritter
2
2
 
3
- version 1.0.0
3
+ version 1.0.1
4
4
  Robin Brouwer
5
5
  Daniël Zwijnenburg
6
6
  45north
7
7
 
8
- This Ruby on Rails gem allows you to easily add Growl-like notifications to your application using a jQuery plugin called 'gritter'.
8
+ This Ruby on Rails gem allows you to easily add Growl-like notifications to your application using a jQuery plugin called 'gritter'. [Check out the demo for this plugin](http://boedesign.com/demos/gritter/).
9
9
 
10
10
  ## Note
11
11
 
@@ -17,7 +17,7 @@ Also check out that branch, because the newer version of gritter inside this gem
17
17
 
18
18
  You can use this gem by putting the following inside your Gemfile:
19
19
 
20
- gem "gritter", "1.0.0"
20
+ gem "gritter", "1.0.1"
21
21
 
22
22
  Now generate the locale for gritter:
23
23
 
@@ -35,6 +35,10 @@ And that's it!
35
35
 
36
36
  ## Changes
37
37
 
38
+ Version 1.0.1 changes (23/01/2012):
39
+
40
+ - Fixed gflash(:js => true) in Ruby 1.9.2 and 1.9.3.
41
+
38
42
  Version 1.0.0 changes (17/11/2011):
39
43
 
40
44
  - Gritter now only works in Rails 3.1. You should check out the 'old' branch for other Rails versions.
@@ -63,7 +63,7 @@ module Gritter
63
63
  end
64
64
  end
65
65
  session[:gflash] = nil
66
- options[:js] ? flashes : js(flashes).html_safe
66
+ options[:js] ? flashes.join("\n") : js(flashes).html_safe
67
67
  end
68
68
  end
69
69
 
@@ -1,3 +1,3 @@
1
1
  module Gritter
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,35 +1,25 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: gritter
3
- version: !ruby/object:Gem::Version
4
- hash: 23
5
- prerelease: false
6
- segments:
7
- - 1
8
- - 0
9
- - 0
10
- version: 1.0.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ prerelease:
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Robin Brouwer
14
- - "Dani\xC3\xABl Zwijnenburg"
9
+ - Daniël Zwijnenburg
15
10
  autorequire:
16
11
  bindir: bin
17
12
  cert_chain: []
18
-
19
- date: 2011-11-17 00:00:00 +01:00
20
- default_executable:
13
+ date: 2012-01-23 00:00:00.000000000Z
21
14
  dependencies: []
22
-
23
- description: This Ruby on Rails gem allows you to easily add Growl-like notifications to your application using a jQuery plugin called 'gritter'.
24
- email:
15
+ description: This Ruby on Rails gem allows you to easily add Growl-like notifications
16
+ to your application using a jQuery plugin called 'gritter'.
17
+ email:
25
18
  - robin@45north.nl
26
19
  executables: []
27
-
28
20
  extensions: []
29
-
30
21
  extra_rdoc_files: []
31
-
32
- files:
22
+ files:
33
23
  - .gitignore
34
24
  - Gemfile
35
25
  - README.md
@@ -55,39 +45,28 @@ files:
55
45
  - lib/gritter/helpers.rb
56
46
  - lib/gritter/railtie.rb
57
47
  - lib/gritter/version.rb
58
- has_rdoc: true
59
48
  homepage: http://www.45north.nl
60
49
  licenses: []
61
-
62
50
  post_install_message:
63
51
  rdoc_options: []
64
-
65
- require_paths:
52
+ require_paths:
66
53
  - lib
67
- required_ruby_version: !ruby/object:Gem::Requirement
54
+ required_ruby_version: !ruby/object:Gem::Requirement
68
55
  none: false
69
- requirements:
70
- - - ">="
71
- - !ruby/object:Gem::Version
72
- hash: 3
73
- segments:
74
- - 0
75
- version: "0"
76
- required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ! '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
61
  none: false
78
- requirements:
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- hash: 3
82
- segments:
83
- - 0
84
- version: "0"
62
+ requirements:
63
+ - - ! '>='
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
85
66
  requirements: []
86
-
87
67
  rubyforge_project: nowarning
88
- rubygems_version: 1.3.7
68
+ rubygems_version: 1.8.10
89
69
  signing_key:
90
70
  specification_version: 3
91
71
  summary: Growl notifications for your Rails application.
92
72
  test_files: []
93
-