notify_me 0.0.3 → 0.0.4

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: 270fa941da8f9e238d0ffaf8949e76c89c008e66
4
- data.tar.gz: 115f8bcb85cc68c61ef4ed575ad2017d7af0ca60
3
+ metadata.gz: 7428e3b8558b7c8534d0b8abd18f3006ce634bac
4
+ data.tar.gz: 151431edcad85aac9570202dd22dca8a8a86e2dd
5
5
  SHA512:
6
- metadata.gz: 745493d1165414e1c054566d0ca464c0c231b826fc45eb70451f992f97e8d049db8e9c19c7dea82062967a977552c1e2b730462715f92091a5978e0a3cdc0483
7
- data.tar.gz: b360dbe5cfe10c20188962a1f0fb37ccc2ca7fe0525671686e979ce4a9af1196ef0b847648a39df06eb223070d982cd368ed07c422fb4f80de005febb51fe096
6
+ metadata.gz: 4681e545e7704cf7efbed9e2c9d5271dd8425f30d6c5affff60cfa1e56ef6451728304c4e6d2ade180a5903dd4535f8140e632f3b781a75c0d0b50d9d1848e62
7
+ data.tar.gz: 6a6156fe22f9e03cbde9771bf72dddd5809e4dc9c67b751b94bf8e0374bd111a082517cd484bb190bea7bdd803434d5878b78100a068524fb9934e72716ab94c
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ script: bundle exec rspec spec
3
+ rvm:
4
+ - 1.9.3
5
+ - 2.0.0
data/README.md CHANGED
@@ -1,3 +1,4 @@
1
+ [![Code Climate](https://codeclimate.com/github/Samsinite/notify_me.png)](https://codeclimate.com/github/Samsinite/notify_me)
1
2
  # Notify Me
2
3
  This is a gem that provides simple and generic notifications that can have 0
3
4
  or more actions associated with them.
@@ -1,4 +1,4 @@
1
- class TimeStamps < ActiveRecord::Migration
1
+ class AddTimestamps < ActiveRecord::Migration
2
2
  def up
3
3
  add_column :notify_me_actions, :created_at, :datetime
4
4
  add_column :notify_me_actions, :updated_at, :datetime
@@ -1,3 +1,3 @@
1
1
  module NotifyMe
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: notify_me
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Clopton
@@ -74,6 +74,7 @@ extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - .gitignore
77
+ - .travis.yml
77
78
  - Gemfile
78
79
  - LICENCE
79
80
  - README.md
@@ -82,7 +83,7 @@ files:
82
83
  - config.ru
83
84
  - db/migrate/1_notification_tables.rb
84
85
  - db/migrate/2_action_name.rb
85
- - db/migrate/3_timestamps.rb
86
+ - db/migrate/3_add_timestamps.rb
86
87
  - lib/notify_me.rb
87
88
  - lib/notify_me/active_record.rb
88
89
  - lib/notify_me/config.rb