flushing_flash 0.1.0 → 0.1.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.
- data/Manifest +1 -0
- data/README.markdown +3 -1
- data/Rakefile +10 -1
- data/flushing_flash.gemspec +2 -2
- data/init.rb +1 -0
- data/lib/flushing_flash/version.rb +1 -1
- metadata +2 -1
data/Manifest
CHANGED
data/README.markdown
CHANGED
@@ -6,7 +6,9 @@ To provide helper methods for handling rails flash messages.
|
|
6
6
|
Installation
|
7
7
|
------------
|
8
8
|
|
9
|
-
|
9
|
+
### Rails 3.0
|
10
|
+
|
11
|
+
Put the following into the Gemfile and run `bundle install`
|
10
12
|
|
11
13
|
gem 'flushing_flash'
|
12
14
|
|
data/Rakefile
CHANGED
@@ -2,7 +2,16 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
|
5
|
+
# To update:
|
6
|
+
# 1) update the code
|
7
|
+
# 2) update the version number in this file
|
8
|
+
# 3) update the version number in lib/flushing_flash/version.rb
|
9
|
+
# 4) rake manifest
|
10
|
+
# 5) rake build_gemspec
|
11
|
+
# 6) git add . && git commit -am "message here" && git push
|
12
|
+
# 7) rake release
|
13
|
+
|
14
|
+
Echoe.new('flushing_flash', '0.1.2') do |p|
|
6
15
|
p.description = "To provide helper methods for handling rails flash messages"
|
7
16
|
p.url = "https://github.com/peterwongpp/flushing_flash"
|
8
17
|
p.author = "PeterWong"
|
data/flushing_flash.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{flushing_flash}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = [%q{PeterWong}]
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.description = %q{To provide helper methods for handling rails flash messages}
|
11
11
|
s.email = %q{peter@peterwongpp.com}
|
12
12
|
s.extra_rdoc_files = [%q{README.markdown}, %q{lib/flushing_flash.rb}, %q{lib/flushing_flash/action_controller_methods.rb}, %q{lib/flushing_flash/action_view_methods.rb}, %q{lib/flushing_flash/version.rb}]
|
13
|
-
s.files = [%q{Manifest}, %q{README.markdown}, %q{Rakefile}, %q{lib/flushing_flash.rb}, %q{lib/flushing_flash/action_controller_methods.rb}, %q{lib/flushing_flash/action_view_methods.rb}, %q{lib/flushing_flash/version.rb}, %q{flushing_flash.gemspec}]
|
13
|
+
s.files = [%q{Manifest}, %q{README.markdown}, %q{Rakefile}, %q{init.rb}, %q{lib/flushing_flash.rb}, %q{lib/flushing_flash/action_controller_methods.rb}, %q{lib/flushing_flash/action_view_methods.rb}, %q{lib/flushing_flash/version.rb}, %q{flushing_flash.gemspec}]
|
14
14
|
s.homepage = %q{https://github.com/peterwongpp/flushing_flash}
|
15
15
|
s.rdoc_options = [%q{--line-numbers}, %q{--inline-source}, %q{--title}, %q{Flushing_flash}, %q{--main}, %q{README.markdown}]
|
16
16
|
s.require_paths = [%q{lib}]
|
data/init.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'flushing_flash'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flushing_flash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -25,6 +25,7 @@ files:
|
|
25
25
|
- Manifest
|
26
26
|
- README.markdown
|
27
27
|
- Rakefile
|
28
|
+
- init.rb
|
28
29
|
- lib/flushing_flash.rb
|
29
30
|
- lib/flushing_flash/action_controller_methods.rb
|
30
31
|
- lib/flushing_flash/action_view_methods.rb
|