simple_flash_helper 0.0.1 → 0.0.3

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/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in flash_helper.gemspec
3
+ # Specify your gem's dependencies in simple_flash_helper.gemspec
4
4
  gemspec
@@ -0,0 +1 @@
1
+ ActionView::Base.send(:include, SimpleFlashHelper)
@@ -0,0 +1,4 @@
1
+ module SimpleFlashHelper
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module SimpleFlashHelper
2
+ VERSION = "0.0.3"
3
+ end
@@ -0,0 +1,5 @@
1
+ require "simple_flash_helper/version"
2
+ require "simple_flash_helper/engine"
3
+
4
+ module SimpleFlashHelper
5
+ end
@@ -1,16 +1,16 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'flash_helper/version'
4
+ require 'simple_flash_helper/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "simple_flash_helper"
8
- spec.version = FlashHelper::VERSION
8
+ spec.version = SimpleFlashHelper::VERSION
9
9
  spec.authors = ["John Koht"]
10
10
  spec.email = ["john@kohactive.com"]
11
11
  spec.description = "Simple Flash Helper and Front-end Utilities"
12
12
  spec.summary = "Simple Flash Helper and Front-end Utilities"
13
- spec.homepage = "http://www.github.com/johnkoht/flash_helper"
13
+ spec.homepage = "http://www.github.com/johnkoht/simple_flash_helper"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_flash_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -58,11 +58,12 @@ files:
58
58
  - app/assets/javascripts/flash_helper.js
59
59
  - app/assets/stylesheets/flash_helper.css.scss
60
60
  - app/helpers/flash_helper.rb
61
- - flash_helper.gemspec
62
- - lib/flash_helper.rb
63
- - lib/flash_helper/engine.rb
64
- - lib/flash_helper/version.rb
65
- homepage: http://www.github.com/johnkoht/flash_helper
61
+ - config/initializers/simple_flash_helper.rb
62
+ - lib/simple_flash_helper.rb
63
+ - lib/simple_flash_helper/engine.rb
64
+ - lib/simple_flash_helper/version.rb
65
+ - simple_flash_helper.gemspec
66
+ homepage: http://www.github.com/johnkoht/simple_flash_helper
66
67
  licenses:
67
68
  - MIT
68
69
  post_install_message:
@@ -1,6 +0,0 @@
1
- module FlashHelper
2
- module Rails
3
- class Engine < ::Rails::Engine
4
- end
5
- end
6
- end
@@ -1,3 +0,0 @@
1
- module FlashHelper
2
- VERSION = "0.0.1"
3
- end
data/lib/flash_helper.rb DELETED
@@ -1,6 +0,0 @@
1
- require "flash_helper/version"
2
- require "flash_helper/engine"
3
-
4
- module FlashHelper
5
-
6
- end