stickynotifications 0.0.1 → 0.0.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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 32fdf6dea3971b37c84d9c13b19921150287ab03
|
|
4
|
+
data.tar.gz: a23d7b890185adef5e3c86028495c5937325955a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b56f41b4a320d16f053f97137f2ce9260f1aefc40b2a1b669696da4ecfcac1ebf602d4ed580a098302d98a5b0a35fef70d2d11feb33c905458db3617fed1eadc
|
|
7
|
+
data.tar.gz: fd82d90235a0ad94937a1a2cc01fb8ec5f9999f82446c35fdac59755825e67112a9f4e338a6ddeb96c5d5183a5f89516104c7748a8596d85ac8d3498489c3494
|
|
@@ -5,10 +5,10 @@ describe Stickynotifications do
|
|
|
5
5
|
expect(Stickynotifications::VERSION).not_to be nil
|
|
6
6
|
end
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
end
|
|
8
|
+
# it 'creates a new Sticky Notification' do
|
|
9
|
+
# base = StickyNotifications.new
|
|
10
|
+
# expect(base.new('hi there')).to be_true
|
|
11
|
+
# end
|
|
12
12
|
|
|
13
13
|
it 'returns an escaped string' do
|
|
14
14
|
base = StickyNotifications.new
|
data/stickynotifications.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Stickynotifications::VERSION
|
|
9
9
|
spec.authors = ["brandonpittman"]
|
|
10
10
|
spec.email = ["brandonpittman@gmail.com"]
|
|
11
|
-
spec.summary = %q{
|
|
12
|
-
spec.description = %q{
|
|
11
|
+
spec.summary = %q{A gem for creating Sticky Notifications.}
|
|
12
|
+
spec.description = %q{A gem for creating Sticky Notifications.}
|
|
13
13
|
spec.homepage = "http://pixelsnatch.com"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stickynotifications
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- brandonpittman
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
-
description:
|
|
69
|
+
description: A gem for creating Sticky Notifications.
|
|
70
70
|
email:
|
|
71
71
|
- brandonpittman@gmail.com
|
|
72
72
|
executables:
|
|
@@ -82,7 +82,6 @@ files:
|
|
|
82
82
|
- Rakefile
|
|
83
83
|
- bin/stickynotifications
|
|
84
84
|
- lib/stickynotifications.rb
|
|
85
|
-
- lib/stickynotifications/stickynotifications.rb
|
|
86
85
|
- lib/stickynotifications/version.rb
|
|
87
86
|
- spec/spec_helper.rb
|
|
88
87
|
- spec/stickynotifications_spec.rb
|
|
@@ -110,7 +109,7 @@ rubyforge_project:
|
|
|
110
109
|
rubygems_version: 2.4.1
|
|
111
110
|
signing_key:
|
|
112
111
|
specification_version: 4
|
|
113
|
-
summary:
|
|
112
|
+
summary: A gem for creating Sticky Notifications.
|
|
114
113
|
test_files:
|
|
115
114
|
- spec/spec_helper.rb
|
|
116
115
|
- spec/stickynotifications_spec.rb
|
|
File without changes
|