noodnik 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.
@@ -4,6 +4,8 @@ class CreateNoodnikNags < ActiveRecord::Migration
4
4
  t.integer :id
5
5
  t.datetime :next_nag
6
6
  t.boolean :completed
7
+ t.integer :user_id
8
+ t.string :topic
7
9
 
8
10
  t.timestamps
9
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: noodnik
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -29,8 +29,6 @@ files:
29
29
  - app/helpers/noodnik/nags_helper.rb
30
30
  - app/helpers/noodnik/application_helper.rb
31
31
  - config/routes.rb
32
- - db/migrate/20110813072011_add_topic_to_nags.rb
33
- - db/migrate/20110813065655_add_user_id_to_nags.rb
34
32
  - db/migrate/20110813042447_create_noodnik_nags.rb
35
33
  - lib/noodnik.rb
36
34
  - lib/noodnik/engine.rb
@@ -85,7 +83,6 @@ files:
85
83
  - test/dummy/tmp/cache/assets/C9B/0A0/sprockets%2Fc184c48971885500d230701da1c1b0fb
86
84
  - test/dummy/tmp/cache/assets/CC7/610/sprockets%2Fd85d521b5f5052344563eef989889de0
87
85
  - test/dummy/tmp/cache/assets/E38/C70/sprockets%2F7e7577dbecc6d06993be00b9daabcd9f
88
- - test/dummy/tmp/pids/server.pid
89
86
  - test/dummy/Rakefile
90
87
  - test/dummy/script/rails
91
88
  - test/dummy/Guardfile
@@ -169,7 +166,6 @@ test_files:
169
166
  - test/dummy/tmp/cache/assets/C9B/0A0/sprockets%2Fc184c48971885500d230701da1c1b0fb
170
167
  - test/dummy/tmp/cache/assets/CC7/610/sprockets%2Fd85d521b5f5052344563eef989889de0
171
168
  - test/dummy/tmp/cache/assets/E38/C70/sprockets%2F7e7577dbecc6d06993be00b9daabcd9f
172
- - test/dummy/tmp/pids/server.pid
173
169
  - test/dummy/Rakefile
174
170
  - test/dummy/script/rails
175
171
  - test/dummy/Guardfile
@@ -1,5 +0,0 @@
1
- class AddUserIdToNags < ActiveRecord::Migration
2
- def change
3
- add_column :noodnik_nags, :user_id, :integer
4
- end
5
- end
@@ -1,5 +0,0 @@
1
- class AddTopicToNags < ActiveRecord::Migration
2
- def change
3
- add_column :noodnik_nags, :topic, :string
4
- end
5
- end
@@ -1 +0,0 @@
1
- 11712