activity_consumer 0.4.0 → 0.5.0

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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -0
  3. data/app/controllers/activity_consumer/remote_activities_controller.rb +5 -5
  4. data/app/models/activity_consumer/remote_activity.rb +4 -3
  5. data/lib/activity_consumer/version.rb +1 -1
  6. data/spec/controllers/activity_consumer/remote_activities_controller_spec.rb +23 -23
  7. data/spec/dummy/config/application.rb +6 -54
  8. data/spec/dummy/config/boot.rb +2 -9
  9. data/spec/dummy/config/cable.yml +9 -0
  10. data/spec/dummy/config/environment.rb +4 -4
  11. data/spec/dummy/config/environments/development.rb +37 -20
  12. data/spec/dummy/config/environments/production.rb +57 -38
  13. data/spec/dummy/config/environments/test.rb +20 -15
  14. data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  15. data/spec/dummy/config/initializers/assets.rb +11 -0
  16. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  17. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  18. data/spec/dummy/config/initializers/inflections.rb +6 -5
  19. data/spec/dummy/config/initializers/mime_types.rb +0 -1
  20. data/spec/dummy/config/initializers/new_framework_defaults.rb +23 -0
  21. data/spec/dummy/config/initializers/session_store.rb +1 -6
  22. data/spec/dummy/config/initializers/wrap_parameters.rb +5 -5
  23. data/spec/dummy/config/locales/en.yml +20 -2
  24. data/spec/dummy/config/puma.rb +47 -0
  25. data/spec/dummy/config/routes.rb +0 -1
  26. data/spec/dummy/config/secrets.yml +22 -0
  27. data/spec/dummy/config/spring.rb +6 -0
  28. data/spec/dummy/public/assets/activity_consumer/application-da3774e883bf61cb6341af13300902649648ac9b4f3ff1009688fa92c46472aa.js +11580 -0
  29. data/spec/dummy/public/assets/application-da3774e883bf61cb6341af13300902649648ac9b4f3ff1009688fa92c46472aa.js +11580 -0
  30. data/spec/dummy/public/assets/application-da3774e883bf61cb6341af13300902649648ac9b4f3ff1009688fa92c46472aa.js.gz +0 -0
  31. data/spec/dummy/public/assets/application-f9e7c1541e1b8783561468c59162bd896007380f5a3799ef2169d3a3fdf40bed.css +14 -0
  32. data/spec/dummy/public/assets/application-f9e7c1541e1b8783561468c59162bd896007380f5a3799ef2169d3a3fdf40bed.css.gz +0 -0
  33. data/spec/models/activity_consumer/remote_activity_spec.rb +2 -2
  34. data/spec/services/activity_consumer/configuration_spec.rb +1 -1
  35. data/spec/services/activity_consumer/remote_activity_importer_spec.rb +26 -26
  36. data/spec/services/activity_consumer/remote_activity_rest_client_spec.rb +16 -16
  37. data/spec/spec_helper.rb +12 -1
  38. metadata +36 -8
  39. data/README.rdoc +0 -3
@@ -0,0 +1,14 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+
12
+
13
+ */
14
+
@@ -10,12 +10,12 @@ module ActivityConsumer
10
10
  RemoteMyTestActivity.create(timestamp: Time.parse('2013-09-25T12:00:00+0200'), action: 'create', payload: {})
11
11
  RemoteMyTestActivity.create(timestamp: Time.parse('2013-09-24T14:00:00+0200'), action: 'create', payload: {})
12
12
 
13
- ActivityConsumer::RemoteActivity.latest_timestamp.should == Time.parse('2013-09-25T12:00:00+02:00').iso8601
13
+ expect(ActivityConsumer::RemoteActivity.latest_timestamp).to eq(Time.parse('2013-09-25T12:00:00+02:00').iso8601)
14
14
  end
15
15
 
16
16
  it "has a short type" do
17
17
  a = RemoteMyTestActivity.create(timestamp: Time.parse('2013-09-25T12:00:00+0200'), action: 'create', payload: {})
18
- a.short_type.should == "my_test"
18
+ expect(a.short_type).to eq("my_test")
19
19
  end
20
20
 
21
21
  end
@@ -9,7 +9,7 @@ module ActivityConsumer
9
9
  c.activity_uri = 'http://example.com/my.xml'
10
10
  end
11
11
 
12
- ActivityConsumer::RemoteActivityRestClient.new.send(:request_url).should == 'http://example.com/my.xml'
12
+ expect(ActivityConsumer::RemoteActivityRestClient.new.send(:request_url)).to eq('http://example.com/my.xml')
13
13
  end
14
14
 
15
15
  end
@@ -26,10 +26,10 @@ module ActivityConsumer
26
26
  it "imports all activities" do
27
27
  a1 = RemoteFooActivity.new(action: 'create', timestamp: Time.now)
28
28
  a2 = RemoteFooActivity.new(action: 'update', timestamp: Time.now)
29
- importer.stub(:activities).and_return([a1,a2])
29
+ allow(importer).to receive(:activities).and_return([a1,a2])
30
30
 
31
- a1.should_receive(:import!).once
32
- a2.should_receive(:import!).once
31
+ expect(a1).to receive(:import!).once
32
+ expect(a2).to receive(:import!).once
33
33
 
34
34
  importer.import
35
35
  end
@@ -37,18 +37,18 @@ module ActivityConsumer
37
37
  it "marks unsuccessful imports" do
38
38
  a1 = RemoteFooActivity.new(action: 'create', timestamp: Time.now)
39
39
  a2 = RemoteFooActivity.new(action: 'update', timestamp: Time.now)
40
- importer.stub(:activities).and_return([a1,a2])
40
+ allow(importer).to receive(:activities).and_return([a1,a2])
41
41
 
42
- a1.should_receive(:import!).once
43
- a2.should_receive(:import!).and_raise(RuntimeError.new("If this happens, call Batman!"))
42
+ expect(a1).to receive(:import!).once
43
+ expect(a2).to receive(:import!).and_raise(RuntimeError.new("If this happens, call Batman!"))
44
44
 
45
45
  importer.import
46
46
 
47
47
  a1.reload
48
- a1.was_successful.should == true
48
+ expect(a1.was_successful).to eq(true)
49
49
  a2.reload
50
- a2.was_successful.should == false
51
- a2.error.should == "If this happens, call Batman!"
50
+ expect(a2.was_successful).to eq(false)
51
+ expect(a2.error).to eq("If this happens, call Batman!")
52
52
  end
53
53
 
54
54
  it "returns stats about imported activities" do
@@ -56,38 +56,38 @@ module ActivityConsumer
56
56
  a2 = RemoteFooActivity.new(action: 'update', timestamp: Time.now)
57
57
  a3 = RemoteFooActivity.new(action: 'destroy', timestamp: Time.now)
58
58
  a4 = RemoteFooActivity.new(action: 'create', timestamp: Time.now)
59
- importer.stub(:activities).and_return([a1, a2, a3, a4])
59
+ allow(importer).to receive(:activities).and_return([a1, a2, a3, a4])
60
60
 
61
- a1.should_receive(:import!).once
62
- a2.should_receive(:import!).once
63
- a4.should_receive(:import!).and_raise(RuntimeError)
64
- a3.should_receive(:import!).once
61
+ expect(a1).to receive(:import!).once
62
+ expect(a2).to receive(:import!).once
63
+ expect(a4).to receive(:import!).and_raise(RuntimeError)
64
+ expect(a3).to receive(:import!).once
65
65
 
66
66
  stats = importer.import
67
67
 
68
- stats[:no_activities].should == 3
69
- stats[:no_errors].should == 1
68
+ expect(stats[:no_activities]).to eq(3)
69
+ expect(stats[:no_errors]).to eq(1)
70
70
 
71
- stats[:activities][:foo][:create].should == 1
72
- stats[:activities][:foo][:update].should == 1
73
- stats[:activities][:foo][:destroy].should == 1
71
+ expect(stats[:activities][:foo][:create]).to eq(1)
72
+ expect(stats[:activities][:foo][:update]).to eq(1)
73
+ expect(stats[:activities][:foo][:destroy]).to eq(1)
74
74
  end
75
75
 
76
76
  it "the stats hash has no default" do
77
77
  a1 = RemoteFooActivity.new(action: 'create', timestamp: Time.now)
78
- importer.stub(:activities).and_return([a1])
78
+ allow(importer).to receive(:activities).and_return([a1])
79
79
 
80
- a1.should_receive(:import!).once
80
+ expect(a1).to receive(:import!).once
81
81
 
82
82
  stats = importer.import
83
- stats[:no_activities].should == 1
84
- stats[:xyz].should == nil
83
+ expect(stats[:no_activities]).to eq(1)
84
+ expect(stats[:xyz]).to eq(nil)
85
85
  end
86
86
 
87
87
  it "saves the latest etag" do
88
88
  VCR.insert_cassette 'activities-etag-xyz789'
89
89
  importer.import
90
- RemoteActivity.last.etag.should == '"xyz789"'
90
+ expect(RemoteActivity.last.etag).to eq('"xyz789"')
91
91
  end
92
92
 
93
93
  end
@@ -98,7 +98,7 @@ module ActivityConsumer
98
98
  let(:importer) {ActivityConsumer::RemoteActivityImporter.new(:delta)}
99
99
 
100
100
  it "gets the correct set of activities from rest client" do
101
- ActivityConsumer::RemoteActivityRestClient.any_instance.should_receive(:fetch)
101
+ expect_any_instance_of(ActivityConsumer::RemoteActivityRestClient).to receive(:fetch)
102
102
  importer.send(:activities)
103
103
  end
104
104
  end
@@ -107,7 +107,7 @@ module ActivityConsumer
107
107
  let(:importer) {ActivityConsumer::RemoteActivityImporter.new(:initial)}
108
108
 
109
109
  it "gets the correct set of activities from rest client" do
110
- ActivityConsumer::RemoteActivityRestClient.any_instance.should_receive(:fetch)
110
+ expect_any_instance_of(ActivityConsumer::RemoteActivityRestClient).to receive(:fetch)
111
111
  importer.send(:activities)
112
112
  end
113
113
  end
@@ -28,14 +28,14 @@ module ActivityConsumer
28
28
  context "on delta" do
29
29
  let(:client) { ActivityConsumer::RemoteActivityRestClient.new(:delta) }
30
30
  it "uses the correct url" do
31
- client.send(:request_url).should == FEED_URL
31
+ expect(client.send(:request_url)).to eq(FEED_URL)
32
32
  end
33
33
  end
34
34
 
35
35
  context "on initial" do
36
36
  let(:client) { ActivityConsumer::RemoteActivityRestClient.new(:initial) }
37
37
  it "uses the correct url" do
38
- client.send(:request_url).should == FULLEXPORT_URL
38
+ expect(client.send(:request_url)).to eq(FULLEXPORT_URL)
39
39
  end
40
40
  end
41
41
  end
@@ -48,10 +48,10 @@ module ActivityConsumer
48
48
 
49
49
  activities = client.fetch
50
50
 
51
- activities.class.should == Array
52
- activities.count.should == 3 # there should be some activities in the feed
51
+ expect(activities.class).to eq(Array)
52
+ expect(activities.count).to eq(3) # there should be some activities in the feed
53
53
  activities.each do |a|
54
- a.should be_kind_of ActivityConsumer::RemoteActivity #each activity should be a kind of RemoteActivity
54
+ expect(a).to be_kind_of ActivityConsumer::RemoteActivity #each activity should be a kind of RemoteActivity
55
55
  end
56
56
  end
57
57
 
@@ -59,9 +59,9 @@ module ActivityConsumer
59
59
  VCR.insert_cassette 'activities-foo'
60
60
 
61
61
  activities = client.fetch
62
- activities.count.should == 3 # there should be some activities in the feed
62
+ expect(activities.count).to eq(3) # there should be some activities in the feed
63
63
  activities.each do |a|
64
- a.should be_kind_of RemoteFooActivity #each activity should be a kind of RemoteFooActivity
64
+ expect(a).to be_kind_of RemoteFooActivity #each activity should be a kind of RemoteFooActivity
65
65
  end
66
66
  end
67
67
 
@@ -83,9 +83,9 @@ module ActivityConsumer
83
83
  end
84
84
 
85
85
  activities = client.fetch
86
- activities.count.should == 2 # there should be some activities in the feed
86
+ expect(activities.count).to eq(2) # there should be some activities in the feed
87
87
  activities.each do |a|
88
- a.should be_kind_of RemoteFooActivity #each activity should be a kind of RemoteFooActivity
88
+ expect(a).to be_kind_of RemoteFooActivity #each activity should be a kind of RemoteFooActivity
89
89
  end
90
90
  end
91
91
 
@@ -102,17 +102,17 @@ module ActivityConsumer
102
102
 
103
103
  activities = client.fetch
104
104
  activities.each do |a|
105
- a.timestamp.should > latest_timestamp #activity should be newer than timestamp'
105
+ expect(a.timestamp).to be > latest_timestamp #activity should be newer than timestamp'
106
106
  end
107
107
  end
108
108
 
109
109
  it "uses a correctly formatted query parameter to get a delta" do
110
110
  RemoteFooActivity.create(timestamp: Time.parse('2013-09-25T12:00:00+0200'), action: 'create')
111
- client.send(:request_params).should == '?since=2013-09-25T12:00:00+02:00'
111
+ expect(client.send(:request_params)).to eq('?since=2013-09-25T12:00:00+02:00')
112
112
  end
113
113
 
114
114
  it "fallsback to full import if there is no activity yet" do
115
- client.send(:request_params).should == ''
115
+ expect(client.send(:request_params)).to eq('')
116
116
  end
117
117
  end
118
118
  end
@@ -126,7 +126,7 @@ module ActivityConsumer
126
126
  end
127
127
 
128
128
  it "uses a HEAD request with If-None-Match" do
129
- RemoteActivityRestClient.should_receive(:head)
129
+ expect(RemoteActivityRestClient).to receive(:head)
130
130
  .with(anything(), hash_including(headers: {"If-None-Match" => '"abc123"'}))
131
131
  .and_return(double("Response").as_null_object)
132
132
 
@@ -135,17 +135,17 @@ module ActivityConsumer
135
135
 
136
136
  it "recognizes a 304 as 'no update needed'" do
137
137
  VCR.insert_cassette 'activities-etag-abc123'
138
- client.is_fresh?.should == true
138
+ expect(client.is_fresh?).to eq(true)
139
139
  end
140
140
 
141
141
  it "recognizes a 200 as 'update needed'" do
142
142
  VCR.insert_cassette 'activities-etag-def456'
143
- client.is_fresh?.should == false
143
+ expect(client.is_fresh?).to eq(false)
144
144
  end
145
145
 
146
146
  it "doesn't puke if there is no actvity yet" do
147
147
  RemoteFooActivity.all.each {|a| a.destroy}
148
- RemoteActivityRestClient.stub(:head).and_return(double("Response").as_null_object)
148
+ allow(RemoteActivityRestClient).to receive(:head).and_return(double("Response").as_null_object)
149
149
  expect {
150
150
  client.is_fresh?
151
151
  }.not_to raise_error
data/spec/spec_helper.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  ENV['RAILS_ENV'] ||= 'test'
2
+
2
3
  require File.expand_path("../dummy/config/environment.rb", __FILE__)
3
4
  require 'rspec/rails'
4
- require 'rspec/autorun'
5
5
  require 'factory_girl_rails'
6
6
  require 'webmock/rspec'
7
7
  require 'vcr'
@@ -14,6 +14,17 @@ RSpec.configure do |config|
14
14
  config.use_transactional_fixtures = true
15
15
  config.infer_base_class_for_anonymous_controllers = false
16
16
  config.order = "random"
17
+
18
+ # rspec-rails 3 will no longer automatically infer an example group's spec type
19
+ # from the file location. You can explicitly opt-in to the feature using this
20
+ # config option.
21
+ # To explicitly tag specs without using automatic inference, set the `:type`
22
+ # metadata manually:
23
+ #
24
+ # describe ThingsController, :type => :controller do
25
+ # # Equivalent to being in spec/controllers
26
+ # end
27
+ config.infer_spec_type_from_file_location!
17
28
  end
18
29
 
19
30
  VCR.configure do |c|
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activity_consumer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Torsten Mangner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-10 00:00:00.000000000 Z
11
+ date: 2018-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 3.2.12
19
+ version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 3.2.12
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: httparty
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -144,7 +144,7 @@ extensions: []
144
144
  extra_rdoc_files: []
145
145
  files:
146
146
  - MIT-LICENSE
147
- - README.rdoc
147
+ - README.md
148
148
  - Rakefile
149
149
  - app/assets/images/activity_consumer/cross.png
150
150
  - app/assets/images/activity_consumer/tick.png
@@ -180,19 +180,28 @@ files:
180
180
  - spec/dummy/config.ru
181
181
  - spec/dummy/config/application.rb
182
182
  - spec/dummy/config/boot.rb
183
+ - spec/dummy/config/cable.yml
183
184
  - spec/dummy/config/database.yml
184
185
  - spec/dummy/config/environment.rb
185
186
  - spec/dummy/config/environments/development.rb
186
187
  - spec/dummy/config/environments/production.rb
187
188
  - spec/dummy/config/environments/test.rb
189
+ - spec/dummy/config/initializers/application_controller_renderer.rb
190
+ - spec/dummy/config/initializers/assets.rb
188
191
  - spec/dummy/config/initializers/backtrace_silencers.rb
192
+ - spec/dummy/config/initializers/cookies_serializer.rb
193
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
189
194
  - spec/dummy/config/initializers/inflections.rb
190
195
  - spec/dummy/config/initializers/mime_types.rb
196
+ - spec/dummy/config/initializers/new_framework_defaults.rb
191
197
  - spec/dummy/config/initializers/secret_token.rb
192
198
  - spec/dummy/config/initializers/session_store.rb
193
199
  - spec/dummy/config/initializers/wrap_parameters.rb
194
200
  - spec/dummy/config/locales/en.yml
201
+ - spec/dummy/config/puma.rb
195
202
  - spec/dummy/config/routes.rb
203
+ - spec/dummy/config/secrets.yml
204
+ - spec/dummy/config/spring.rb
196
205
  - spec/dummy/db/development.sqlite3
197
206
  - spec/dummy/db/schema.rb
198
207
  - spec/dummy/db/test.sqlite3
@@ -201,6 +210,11 @@ files:
201
210
  - spec/dummy/public/404.html
202
211
  - spec/dummy/public/422.html
203
212
  - spec/dummy/public/500.html
213
+ - spec/dummy/public/assets/activity_consumer/application-da3774e883bf61cb6341af13300902649648ac9b4f3ff1009688fa92c46472aa.js
214
+ - spec/dummy/public/assets/application-da3774e883bf61cb6341af13300902649648ac9b4f3ff1009688fa92c46472aa.js
215
+ - spec/dummy/public/assets/application-da3774e883bf61cb6341af13300902649648ac9b4f3ff1009688fa92c46472aa.js.gz
216
+ - spec/dummy/public/assets/application-f9e7c1541e1b8783561468c59162bd896007380f5a3799ef2169d3a3fdf40bed.css
217
+ - spec/dummy/public/assets/application-f9e7c1541e1b8783561468c59162bd896007380f5a3799ef2169d3a3fdf40bed.css.gz
204
218
  - spec/dummy/public/favicon.ico
205
219
  - spec/dummy/script/rails
206
220
  - spec/dummy/tmp/cache/assets/CB9/640/sprockets%2F055df7094ed3c73903db121ec7947478
@@ -227,7 +241,7 @@ files:
227
241
  - spec/services/activity_consumer/remote_activity_importer_spec.rb
228
242
  - spec/services/activity_consumer/remote_activity_rest_client_spec.rb
229
243
  - spec/spec_helper.rb
230
- homepage: http://inoxio.de
244
+ homepage: http://www.inoxio.de
231
245
  licenses: []
232
246
  metadata: {}
233
247
  post_install_message:
@@ -257,19 +271,28 @@ test_files:
257
271
  - spec/dummy/app/assets/javascripts/application.js
258
272
  - spec/dummy/app/assets/stylesheets/application.css
259
273
  - spec/dummy/app/helpers/application_helper.rb
274
+ - spec/dummy/config/secrets.yml
260
275
  - spec/dummy/config/routes.rb
261
276
  - spec/dummy/config/locales/en.yml
277
+ - spec/dummy/config/cable.yml
262
278
  - spec/dummy/config/environments/production.rb
263
279
  - spec/dummy/config/environments/development.rb
264
280
  - spec/dummy/config/environments/test.rb
281
+ - spec/dummy/config/spring.rb
265
282
  - spec/dummy/config/environment.rb
266
283
  - spec/dummy/config/application.rb
284
+ - spec/dummy/config/puma.rb
267
285
  - spec/dummy/config/database.yml
268
286
  - spec/dummy/config/boot.rb
287
+ - spec/dummy/config/initializers/application_controller_renderer.rb
269
288
  - spec/dummy/config/initializers/backtrace_silencers.rb
270
289
  - spec/dummy/config/initializers/mime_types.rb
290
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
271
291
  - spec/dummy/config/initializers/session_store.rb
272
292
  - spec/dummy/config/initializers/wrap_parameters.rb
293
+ - spec/dummy/config/initializers/new_framework_defaults.rb
294
+ - spec/dummy/config/initializers/assets.rb
295
+ - spec/dummy/config/initializers/cookies_serializer.rb
273
296
  - spec/dummy/config/initializers/secret_token.rb
274
297
  - spec/dummy/config/initializers/inflections.rb
275
298
  - spec/dummy/config.ru
@@ -279,6 +302,11 @@ test_files:
279
302
  - spec/dummy/public/422.html
280
303
  - spec/dummy/public/500.html
281
304
  - spec/dummy/public/404.html
305
+ - spec/dummy/public/assets/application-da3774e883bf61cb6341af13300902649648ac9b4f3ff1009688fa92c46472aa.js.gz
306
+ - spec/dummy/public/assets/activity_consumer/application-da3774e883bf61cb6341af13300902649648ac9b4f3ff1009688fa92c46472aa.js
307
+ - spec/dummy/public/assets/application-da3774e883bf61cb6341af13300902649648ac9b4f3ff1009688fa92c46472aa.js
308
+ - spec/dummy/public/assets/application-f9e7c1541e1b8783561468c59162bd896007380f5a3799ef2169d3a3fdf40bed.css
309
+ - spec/dummy/public/assets/application-f9e7c1541e1b8783561468c59162bd896007380f5a3799ef2169d3a3fdf40bed.css.gz
282
310
  - spec/dummy/db/schema.rb
283
311
  - spec/dummy/db/test.sqlite3
284
312
  - spec/dummy/db/development.sqlite3
data/README.rdoc DELETED
@@ -1,3 +0,0 @@
1
- = ActivityConsumer
2
-
3
- This project rocks and uses MIT-LICENSE.