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
@@ -1,5 +1,5 @@
1
1
  # Be sure to restart your server when you modify this file.
2
- #
2
+
3
3
  # This file contains settings for ActionController::ParamsWrapper which
4
4
  # is enabled by default.
5
5
 
@@ -8,7 +8,7 @@ ActiveSupport.on_load(:action_controller) do
8
8
  wrap_parameters format: [:json]
9
9
  end
10
10
 
11
- # Disable root element in JSON by default.
12
- ActiveSupport.on_load(:active_record) do
13
- self.include_root_in_json = false
14
- end
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -1,5 +1,23 @@
1
- # Sample localization file for English. Add more files in this directory for other locales.
2
- # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
3
21
 
4
22
  en:
5
23
  hello: "Hello world"
@@ -0,0 +1,47 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum, this matches the default thread size of Active Record.
6
+ #
7
+ threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }.to_i
8
+ threads threads_count, threads_count
9
+
10
+ # Specifies the `port` that Puma will listen on to receive requests, default is 3000.
11
+ #
12
+ port ENV.fetch("PORT") { 3000 }
13
+
14
+ # Specifies the `environment` that Puma will run in.
15
+ #
16
+ environment ENV.fetch("RAILS_ENV") { "development" }
17
+
18
+ # Specifies the number of `workers` to boot in clustered mode.
19
+ # Workers are forked webserver processes. If using threads and workers together
20
+ # the concurrency of the application would be max `threads` * `workers`.
21
+ # Workers do not work on JRuby or Windows (both of which do not support
22
+ # processes).
23
+ #
24
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
25
+
26
+ # Use the `preload_app!` method when specifying a `workers` number.
27
+ # This directive tells Puma to first boot the application and load code
28
+ # before forking the application. This takes advantage of Copy On Write
29
+ # process behavior so workers use less memory. If you use this option
30
+ # you need to make sure to reconnect any threads in the `on_worker_boot`
31
+ # block.
32
+ #
33
+ # preload_app!
34
+
35
+ # The code in the `on_worker_boot` will be called if you are using
36
+ # clustered mode by specifying a number of `workers`. After each worker
37
+ # process is booted this block will be run, if you are using `preload_app!`
38
+ # option you will want to use this block to reconnect to any threads
39
+ # or connections that may have been created at application boot, Ruby
40
+ # cannot share connections between processes.
41
+ #
42
+ # on_worker_boot do
43
+ # ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
44
+ # end
45
+
46
+ # Allow puma to be restarted by `rails restart` command.
47
+ plugin :tmp_restart
@@ -1,4 +1,3 @@
1
1
  Rails.application.routes.draw do
2
-
3
2
  mount ActivityConsumer::Engine => "/activity_consumer"
4
3
  end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rails secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 6028fcee75c2c046cd31d3182b63370442ca89b736fb67adfb6c7a4ec9b4e3f07bbe477cd9b9ad15435a2bb3648d04558ef75691bfbfb108256d5fab8773dc23
15
+
16
+ test:
17
+ secret_key_base: 5ec3a816806e3de5398109c9108dad099886e4b086a2ed8743e1f8afa96441363c89964c84fa760d41796d9213de1634282d2aab3a1ed3f6740a038ad5cefc1d
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,6 @@
1
+ %w(
2
+ .ruby-version
3
+ .rbenv-vars
4
+ tmp/restart.txt
5
+ tmp/caching-dev.txt
6
+ ).each { |path| Spring.watch(path) }