flashee 0.1.0 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ca15a53ed413143f671939f6d843f08f18d9670d25cfa2d28d66a21f6c0a319
4
- data.tar.gz: 9ad3efa898a4c8af0ed399cca98d0b37cde07ab16b0d433301b22d5eb7eb37bb
3
+ metadata.gz: fc2d144a116a888329f6e1ce292d9ed9b76cc598d661f160e2d3ea8dda2aa134
4
+ data.tar.gz: c4104cab02bdbf6090e7f08d065c9270eb9522f0d82746362a00d541f9b63327
5
5
  SHA512:
6
- metadata.gz: 5a07f2d5c2ff2a42fa23c646001c8875a7526cfc849bbcfce8d04f3985d9c59cb88f582f3286e16eb3af8744b2e0d8be70e6df3af8cfe9837e6d654c68bf6cb0
7
- data.tar.gz: d4626dfbd738361d78913ed44e05c8cd36ccc925f37ad1dc63ba075ba717f9758336958473a3af5c69ae5e3d07f972dd92bc001dce52a6f28273a14539e8ec4d
6
+ metadata.gz: ccffd4035d93219e89ad56ce2300eadcbca24dd6cbf6cbc46da1fc669e8b6668b99155cb9a73900dff1629ca205ad687b10fa1de59e99f28709ae264c654b95a
7
+ data.tar.gz: 497da887e58876ca4fc16f1322788475503b9b818a185e5c5aabdf996ee62150efa91d50c3b57773be1a528dbcba082618a089790ebf75578fc2504191e9d3b9
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Flashee
2
- Rails helper to style flash messages
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/flashee.svg)](https://badge.fury.io/rb/flashee)
4
+
5
+ Rails helper to add CSS classes to flash messages
3
6
 
4
7
  ## Usage
5
8
  How to use my plugin.
@@ -1,3 +1,3 @@
1
1
  module Flashee
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
@@ -15,7 +15,7 @@ module Flashee
15
15
  view_partial_source = File.join(Gem.loaded_specs["flashee"].full_gem_path, "lib", "templates", "_flash_messages.html.erb")
16
16
  view_partial_target = File.join(Rails.root, "app", "views", "partials", "_flash_messages.html.erb")
17
17
 
18
- FileUtils::mkdir_p File.join(Rails.root, "app", "views", "partials", )
18
+ FileUtils::mkdir_p File.join(Rails.root, "app", "views", "partials")
19
19
  FileUtils.cp_r view_partial_source, view_partial_target
20
20
  end
21
21
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flashee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Burns
@@ -45,7 +45,6 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - MIT-LICENSE
49
48
  - README.md
50
49
  - Rakefile
51
50
  - lib/flashee.rb
@@ -74,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
73
  version: '0'
75
74
  requirements: []
76
75
  rubyforge_project:
77
- rubygems_version: 2.7.6
76
+ rubygems_version: 2.7.3
78
77
  signing_key:
79
78
  specification_version: 4
80
79
  summary: Rails helper to style flash messages
data/MIT-LICENSE DELETED
@@ -1,20 +0,0 @@
1
- Copyright 2018 Josh Burns
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.