flushing_flash 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest CHANGED
@@ -1,6 +1,7 @@
1
1
  Manifest
2
2
  README.markdown
3
3
  Rakefile
4
+ init.rb
4
5
  lib/flushing_flash.rb
5
6
  lib/flushing_flash/action_controller_methods.rb
6
7
  lib/flushing_flash/action_view_methods.rb
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
- For rails 3.0, put the following into the Gemfile and run `bundle install`
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
- Echoe.new('flushing_flash', '0.1.0') do |p|
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"
@@ -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.0"
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'
@@ -1,3 +1,3 @@
1
1
  module FlushingFlash
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.2"
3
3
  end
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.0
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