beyond 0.0.7 → 0.0.8

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: c250168474a50aea584ab2780e581786da922ec4
4
- data.tar.gz: 51a773175fc6dd3622f46ab6bdc96bae8aa8de11
3
+ metadata.gz: ae36ebe673f9b808b7641c77542187e32b05c7b5
4
+ data.tar.gz: 81df88d78be12e12cdaf9926de9d6e4e7911b63e
5
5
  SHA512:
6
- metadata.gz: 51178e36fc4bb7509abf8f87e524f344ceaef0ef3430328c280debba615851fe6d9d6acf7ddeaf45ec6b82da5f66aa37e58e5c9405ce36dab25161df90b357a7
7
- data.tar.gz: f0946b07f79d6505b20898d2a30a1e532dd2ad43204e47523b828701d86453faf71e95019681fcc9220d5d22f8462089257a00745051e2f83cd1933224a064e7
6
+ metadata.gz: 0f91784241e033b69eeb48158e48a2a33d8cd5f5325c0d44324de821dc22a553c48e4abfb2f28ab74a9878637fdb24e638cb1c6e35b78105f7ca4be4e2d1621b
7
+ data.tar.gz: fb11ce4cfbc5bb70ab1988f1a2d53ddfbf0551e6072ab44b5dafd7ab4127304a4128080c99a56896174143fa21ee89bba45ba723ed34f4b503c9ee3aa820c235
@@ -8,7 +8,7 @@ module Beyond
8
8
  has_attached_file :archive, path: File.join(ENV['tenants_plugins_dir'], ':plugin_tenant_name', ':filename')
9
9
 
10
10
  validates_attachment :archive, :presence => true,
11
- :content_type => { :content_type => "application/x-gzip" },
11
+ :content_type => { :content_type => "application/gzip" },
12
12
  :size => { :in => 0..10.megabytes }
13
13
 
14
14
  def extract
@@ -1,3 +1,3 @@
1
1
  module Beyond
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -1,3 +1,3 @@
1
- kamino_bin: /myr/kamino/kamino
2
- tenants_plugins_dir: /myr/plugins
3
- tenants_configs_dir: /myr/configs
1
+ kamino_bin: /home/me/programming/thesis/system/kamino/kamino
2
+ tenants_plugins_dir: /home/me/programming/thesis/system/plugins
3
+ tenants_configs_dir: /home/me/programming/thesis/system/configs
@@ -7833,3 +7833,444 @@ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:36:07
7833
7833
 
7834
7834
 
7835
7835
  Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:36:07 +0200
7836
+
7837
+
7838
+ Started GET "/" for 127.0.0.1 at 2014-03-16 13:44:02 +0200
7839
+ Processing by Beyond::TenantsController#new as HTML
7840
+ Beyond::User Load (0.4ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7841
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/tenants/new.html.haml within layouts/application (31.9ms)
7842
+ Completed 200 OK in 195ms (Views: 57.0ms | ActiveRecord: 4.4ms)
7843
+
7844
+
7845
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:44:02 +0200
7846
+
7847
+
7848
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:44:02 +0200
7849
+
7850
+
7851
+ Started POST "/tenants" for 127.0.0.1 at 2014-03-16 13:44:05 +0200
7852
+ Processing by Beyond::TenantsController#create as HTML
7853
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"B+HVliLhktYTnh7D7gxmg7VHgCjmHYdGqXOyswHj8zE=", "tenant"=>{"name"=>"baba"}, "commit"=>"Create Tenant"}
7854
+ Beyond::User Load (0.5ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7855
+  (0.4ms) begin transaction
7856
+ Beyond::Tenant Exists (0.4ms) SELECT 1 AS one FROM "beyond_tenants" WHERE "beyond_tenants"."name" = 'baba' LIMIT 1
7857
+ SQL (6.0ms) INSERT INTO "beyond_tenants" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Sun, 16 Mar 2014 11:44:05 UTC +00:00], ["name", "baba"], ["updated_at", Sun, 16 Mar 2014 11:44:05 UTC +00:00], ["user_id", 1]]
7858
+  (614.2ms) commit transaction
7859
+ Redirected to http://localhost:3001/
7860
+ Completed 302 Found in 5300ms (ActiveRecord: 621.5ms)
7861
+
7862
+
7863
+ Started GET "/" for 127.0.0.1 at 2014-03-16 13:44:10 +0200
7864
+ Processing by Beyond::TenantsController#new as HTML
7865
+ Beyond::User Load (0.5ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7866
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/tenants/new.html.haml within layouts/application (4.1ms)
7867
+ Completed 200 OK in 16ms (Views: 11.1ms | ActiveRecord: 0.5ms)
7868
+
7869
+
7870
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:44:11 +0200
7871
+
7872
+
7873
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:44:11 +0200
7874
+
7875
+
7876
+ Started GET "/plugins/new" for 127.0.0.1 at 2014-03-16 13:44:46 +0200
7877
+ Processing by Beyond::PluginsController#new as HTML
7878
+ Beyond::User Load (0.5ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7879
+ Beyond::Tenant Load (0.4ms) SELECT "beyond_tenants".* FROM "beyond_tenants" WHERE "beyond_tenants"."user_id" = ? [["user_id", 1]]
7880
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/plugins/new.html.haml within layouts/application (64.0ms)
7881
+ Completed 200 OK in 98ms (Views: 73.3ms | ActiveRecord: 1.8ms)
7882
+
7883
+
7884
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:44:46 +0200
7885
+
7886
+
7887
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:44:46 +0200
7888
+
7889
+
7890
+ Started POST "/plugins" for 127.0.0.1 at 2014-03-16 13:44:55 +0200
7891
+ Processing by Beyond::PluginsController#create as HTML
7892
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"B+HVliLhktYTnh7D7gxmg7VHgCjmHYdGqXOyswHj8zE=", "plugin"=>{"name"=>"check", "description"=>"desc", "public"=>"1", "archive"=>#<ActionDispatch::Http::UploadedFile:0x007f8a602e60e8 @tempfile=#<Tempfile:/tmp/RackMultipart20140316-6677-120ke0z>, @original_filename="plugin.tar.gz", @content_type="application/gzip", @headers="Content-Disposition: form-data; name=\"plugin[archive]\"; filename=\"plugin.tar.gz\"\r\nContent-Type: application/gzip\r\n">, "tenant"=>"baba"}, "commit"=>"Create Plugin"}
7893
+ Beyond::User Load (0.4ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7894
+ Command :: file -b --mime-type '/tmp/5c3d02b12532362f8293aeb60893a3fb20140316-6677-1hslag'
7895
+ Beyond::Tenant Load (0.4ms) SELECT "beyond_tenants".* FROM "beyond_tenants" WHERE "beyond_tenants"."name" = 'baba' LIMIT 1
7896
+  (0.3ms) begin transaction
7897
+ Command :: file -b --mime-type '/tmp/73584e25df9e13263d70dc58143493f320140316-6677-62b3hn'
7898
+  (0.2ms) rollback transaction
7899
+ Redirected to http://localhost:3001/
7900
+ Completed 302 Found in 77ms (ActiveRecord: 1.4ms)
7901
+
7902
+
7903
+ Started GET "/" for 127.0.0.1 at 2014-03-16 13:44:56 +0200
7904
+ Processing by Beyond::TenantsController#new as HTML
7905
+ Beyond::User Load (0.5ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7906
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/tenants/new.html.haml within layouts/application (4.4ms)
7907
+ Completed 200 OK in 16ms (Views: 11.8ms | ActiveRecord: 0.5ms)
7908
+
7909
+
7910
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:44:56 +0200
7911
+
7912
+
7913
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:44:56 +0200
7914
+
7915
+
7916
+ Started POST "/tenants" for 127.0.0.1 at 2014-03-16 13:45:27 +0200
7917
+ Processing by Beyond::TenantsController#create as HTML
7918
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"B+HVliLhktYTnh7D7gxmg7VHgCjmHYdGqXOyswHj8zE=", "tenant"=>{"name"=>"jojo"}, "commit"=>"Create Tenant"}
7919
+ Beyond::User Load (0.4ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7920
+  (0.2ms) begin transaction
7921
+ Beyond::Tenant Exists (0.3ms) SELECT 1 AS one FROM "beyond_tenants" WHERE "beyond_tenants"."name" = 'jojo' LIMIT 1
7922
+ SQL (0.7ms) INSERT INTO "beyond_tenants" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Sun, 16 Mar 2014 11:45:27 UTC +00:00], ["name", "jojo"], ["updated_at", Sun, 16 Mar 2014 11:45:27 UTC +00:00], ["user_id", 1]]
7923
+  (655.0ms) commit transaction
7924
+ Redirected to http://localhost:3001/
7925
+ Completed 302 Found in 1590ms (ActiveRecord: 656.6ms)
7926
+
7927
+
7928
+ Started GET "/" for 127.0.0.1 at 2014-03-16 13:45:28 +0200
7929
+ Processing by Beyond::TenantsController#new as HTML
7930
+ Beyond::User Load (0.4ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7931
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/tenants/new.html.haml within layouts/application (5.4ms)
7932
+ Completed 200 OK in 82ms (Views: 78.2ms | ActiveRecord: 0.4ms)
7933
+
7934
+
7935
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:45:29 +0200
7936
+
7937
+
7938
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:45:29 +0200
7939
+
7940
+
7941
+ Started GET "/plugins/new" for 127.0.0.1 at 2014-03-16 13:45:35 +0200
7942
+ Processing by Beyond::PluginsController#new as HTML
7943
+ Beyond::User Load (0.4ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7944
+ Beyond::Tenant Load (0.3ms) SELECT "beyond_tenants".* FROM "beyond_tenants" WHERE "beyond_tenants"."user_id" = ? [["user_id", 1]]
7945
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/plugins/new.html.haml within layouts/application (14.4ms)
7946
+ Completed 200 OK in 25ms (Views: 20.4ms | ActiveRecord: 0.7ms)
7947
+
7948
+
7949
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:45:35 +0200
7950
+
7951
+
7952
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:45:35 +0200
7953
+
7954
+
7955
+ Started POST "/plugins" for 127.0.0.1 at 2014-03-16 13:45:46 +0200
7956
+ Processing by Beyond::PluginsController#create as HTML
7957
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"B+HVliLhktYTnh7D7gxmg7VHgCjmHYdGqXOyswHj8zE=", "plugin"=>{"name"=>"check", "description"=>"desc", "public"=>"0", "archive"=>#<ActionDispatch::Http::UploadedFile:0x00000003cb15f8 @tempfile=#<Tempfile:/tmp/RackMultipart20140316-6677-1tgo6uw>, @original_filename="plugin.tar.gz", @content_type="application/gzip", @headers="Content-Disposition: form-data; name=\"plugin[archive]\"; filename=\"plugin.tar.gz\"\r\nContent-Type: application/gzip\r\n">, "tenant"=>"jojo"}, "commit"=>"Create Plugin"}
7958
+ Beyond::User Load (0.5ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7959
+ Command :: file -b --mime-type '/tmp/77f1940a68c20d400df80dd8df52df2420140316-6677-1ubll1e'
7960
+ Beyond::Tenant Load (0.5ms) SELECT "beyond_tenants".* FROM "beyond_tenants" WHERE "beyond_tenants"."name" = 'jojo' LIMIT 1
7961
+  (0.2ms) begin transaction
7962
+ Command :: file -b --mime-type '/tmp/0666a94b81dd24b215df5ea2f651832620140316-6677-xdkayz'
7963
+  (0.2ms) rollback transaction
7964
+ Redirected to http://localhost:3001/
7965
+ Completed 302 Found in 99ms (ActiveRecord: 1.3ms)
7966
+
7967
+
7968
+ Started GET "/" for 127.0.0.1 at 2014-03-16 13:45:47 +0200
7969
+ Processing by Beyond::TenantsController#new as HTML
7970
+ Beyond::User Load (0.4ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7971
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/tenants/new.html.haml within layouts/application (4.7ms)
7972
+ Completed 200 OK in 15ms (Views: 11.4ms | ActiveRecord: 0.4ms)
7973
+
7974
+
7975
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:45:47 +0200
7976
+
7977
+
7978
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:45:47 +0200
7979
+
7980
+
7981
+ Started GET "/plugins/new" for 127.0.0.1 at 2014-03-16 13:46:52 +0200
7982
+ Processing by Beyond::PluginsController#new as HTML
7983
+ Beyond::User Load (0.5ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
7984
+ Completed 500 Internal Server Error in 129ms
7985
+
7986
+ NoMethodError (undefined method `merge!' for "application/x-gzip":String):
7987
+ paperclip (4.0.0) lib/paperclip/validators.rb:46:in `block in validates_attachment'
7988
+ paperclip (4.0.0) lib/paperclip/validators.rb:37:in `each'
7989
+ paperclip (4.0.0) lib/paperclip/validators.rb:37:in `validates_attachment'
7990
+ /home/me/programming/thesis/beyond/app/models/beyond/plugin.rb:10:in `<class:Plugin>'
7991
+ /home/me/programming/thesis/beyond/app/models/beyond/plugin.rb:2:in `<module:Beyond>'
7992
+ /home/me/programming/thesis/beyond/app/models/beyond/plugin.rb:1:in `<top (required)>'
7993
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
7994
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
7995
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
7996
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
7997
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
7998
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
7999
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
8000
+ activesupport (4.0.2) lib/active_support/dependencies.rb:495:in `load_missing_constant'
8001
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
8002
+ /home/me/programming/thesis/beyond/app/controllers/beyond/plugins_controller.rb:6:in `new'
8003
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
8004
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
8005
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
8006
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
8007
+ activesupport (4.0.2) lib/active_support/callbacks.rb:393:in `_run__2583346994441005650__process_action__callbacks'
8008
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
8009
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
8010
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
8011
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
8012
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
8013
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
8014
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
8015
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
8016
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
8017
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
8018
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
8019
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
8020
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
8021
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
8022
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
8023
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
8024
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
8025
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
8026
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
8027
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
8028
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
8029
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
8030
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
8031
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
8032
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
8033
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
8034
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
8035
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
8036
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
8037
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
8038
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
8039
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
8040
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
8041
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
8042
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8043
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
8044
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
8045
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
8046
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
8047
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
8048
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
8049
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
8050
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8051
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1805823918513458209__call__callbacks'
8052
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
8053
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8054
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
8055
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8056
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8057
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8058
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
8059
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
8060
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
8061
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
8062
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
8063
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
8064
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8065
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
8066
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
8067
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8068
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8069
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
8070
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
8071
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
8072
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
8073
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8074
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
8075
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
8076
+ /home/me/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
8077
+ /home/me/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
8078
+ /home/me/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
8079
+
8080
+
8081
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
8082
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
8083
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
8084
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.7ms)
8085
+
8086
+
8087
+ Started GET "/plugins/new" for 127.0.0.1 at 2014-03-16 13:47:26 +0200
8088
+ Processing by Beyond::PluginsController#new as HTML
8089
+ Beyond::User Load (0.4ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
8090
+ Beyond::Tenant Load (3.1ms) SELECT "beyond_tenants".* FROM "beyond_tenants" WHERE "beyond_tenants"."user_id" = ? [["user_id", 1]]
8091
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/plugins/new.html.haml within layouts/application (167.9ms)
8092
+ Completed 200 OK in 244ms (Views: 183.8ms | ActiveRecord: 6.9ms)
8093
+
8094
+
8095
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:47:26 +0200
8096
+
8097
+
8098
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:47:26 +0200
8099
+
8100
+
8101
+ Started GET "/plugins/new" for 127.0.0.1 at 2014-03-16 13:49:19 +0200
8102
+ Processing by Beyond::PluginsController#new as HTML
8103
+ Beyond::User Load (0.3ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
8104
+ Beyond::Tenant Load (0.4ms) SELECT "beyond_tenants".* FROM "beyond_tenants" WHERE "beyond_tenants"."user_id" = ? [["user_id", 1]]
8105
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/plugins/new.html.haml within layouts/application (60.7ms)
8106
+ Completed 200 OK in 133ms (Views: 68.4ms | ActiveRecord: 4.4ms)
8107
+
8108
+
8109
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:49:19 +0200
8110
+
8111
+
8112
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:49:19 +0200
8113
+
8114
+
8115
+ Started POST "/plugins" for 127.0.0.1 at 2014-03-16 13:49:28 +0200
8116
+ Processing by Beyond::PluginsController#create as HTML
8117
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"B+HVliLhktYTnh7D7gxmg7VHgCjmHYdGqXOyswHj8zE=", "plugin"=>{"name"=>"check", "description"=>"desc", "public"=>"1", "archive"=>#<ActionDispatch::Http::UploadedFile:0x007fe9d87e77e0 @tempfile=#<Tempfile:/tmp/RackMultipart20140316-7706-paynce>, @original_filename="plugin.tar.gz", @content_type="application/gzip", @headers="Content-Disposition: form-data; name=\"plugin[archive]\"; filename=\"plugin.tar.gz\"\r\nContent-Type: application/gzip\r\n">, "tenant"=>"jojo"}, "commit"=>"Create Plugin"}
8118
+ Beyond::User Load (0.5ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
8119
+ Command :: file -b --mime-type '/tmp/91e1925c8bf2b042aefbd4088a385efc20140316-7706-1o8qcqz'
8120
+ Beyond::Tenant Load (0.4ms) SELECT "beyond_tenants".* FROM "beyond_tenants" WHERE "beyond_tenants"."name" = 'jojo' LIMIT 1
8121
+  (0.2ms) begin transaction
8122
+ Command :: file -b --mime-type '/tmp/552c79a8c42a7b274a9f1813ba50cb7920140316-7706-o5jvoe'
8123
+  (0.3ms) rollback transaction
8124
+ Redirected to http://localhost:3001/
8125
+ Completed 302 Found in 93ms (ActiveRecord: 1.5ms)
8126
+
8127
+
8128
+ Started GET "/" for 127.0.0.1 at 2014-03-16 13:49:28 +0200
8129
+ Processing by Beyond::TenantsController#new as HTML
8130
+ Beyond::User Load (0.4ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
8131
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/tenants/new.html.haml within layouts/application (7.4ms)
8132
+ Completed 200 OK in 19ms (Views: 14.6ms | ActiveRecord: 0.4ms)
8133
+
8134
+
8135
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:49:28 +0200
8136
+
8137
+
8138
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:49:28 +0200
8139
+
8140
+
8141
+ Started GET "/" for 127.0.0.1 at 2014-03-16 13:50:37 +0200
8142
+ Processing by Beyond::TenantsController#new as HTML
8143
+ Beyond::User Load (0.3ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
8144
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/tenants/new.html.haml within layouts/application (17.3ms)
8145
+ Completed 200 OK in 75ms (Views: 24.3ms | ActiveRecord: 2.3ms)
8146
+
8147
+
8148
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:50:37 +0200
8149
+
8150
+
8151
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:50:37 +0200
8152
+
8153
+
8154
+ Started GET "/plugins/new" for 127.0.0.1 at 2014-03-16 13:50:40 +0200
8155
+ Processing by Beyond::PluginsController#new as HTML
8156
+ Beyond::User Load (0.5ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
8157
+ Beyond::Tenant Load (0.4ms) SELECT "beyond_tenants".* FROM "beyond_tenants" WHERE "beyond_tenants"."user_id" = ? [["user_id", 1]]
8158
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/plugins/new.html.haml within layouts/application (39.8ms)
8159
+ Completed 200 OK in 69ms (Views: 47.3ms | ActiveRecord: 1.9ms)
8160
+
8161
+
8162
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:50:40 +0200
8163
+
8164
+
8165
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:50:40 +0200
8166
+
8167
+
8168
+ Started POST "/plugins" for 127.0.0.1 at 2014-03-16 13:50:47 +0200
8169
+ Processing by Beyond::PluginsController#create as HTML
8170
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"B+HVliLhktYTnh7D7gxmg7VHgCjmHYdGqXOyswHj8zE=", "plugin"=>{"name"=>"check", "description"=>"desc", "public"=>"1", "archive"=>#<ActionDispatch::Http::UploadedFile:0x007fe9d456bb50 @tempfile=#<Tempfile:/tmp/RackMultipart20140316-7706-clrlin>, @original_filename="plugin.tar.gz", @content_type="application/gzip", @headers="Content-Disposition: form-data; name=\"plugin[archive]\"; filename=\"plugin.tar.gz\"\r\nContent-Type: application/gzip\r\n">, "tenant"=>"jojo"}, "commit"=>"Create Plugin"}
8171
+ Beyond::User Load (0.5ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
8172
+ Command :: file -b --mime-type '/tmp/6ee5906fa5ba947fa172888e425c6ea120140316-7706-su4qop'
8173
+ Beyond::Tenant Load (0.5ms) SELECT "beyond_tenants".* FROM "beyond_tenants" WHERE "beyond_tenants"."name" = 'jojo' LIMIT 1
8174
+  (0.2ms) begin transaction
8175
+ Command :: file -b --mime-type '/tmp/54de6e6b8dc4e6a880ced36cebbba34820140316-7706-hd86fw'
8176
+ Binary data inserted for `string` type on column `archive_content_type`
8177
+ SQL (2.6ms) INSERT INTO "beyond_plugins" ("archive_content_type", "archive_file_name", "archive_file_size", "archive_updated_at", "created_at", "description", "name", "public", "tenant_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["archive_content_type", "application/gzip"], ["archive_file_name", "plugin.tar.gz"], ["archive_file_size", 145], ["archive_updated_at", Sun, 16 Mar 2014 11:50:47 UTC +00:00], ["created_at", Sun, 16 Mar 2014 11:50:47 UTC +00:00], ["description", "desc"], ["name", "check"], ["public", true], ["tenant_id", 3], ["updated_at", Sun, 16 Mar 2014 11:50:47 UTC +00:00]]
8178
+  (136.0ms) commit transaction
8179
+ Redirected to http://localhost:3001/
8180
+ Completed 302 Found in 202ms (ActiveRecord: 139.7ms)
8181
+
8182
+
8183
+ Started GET "/" for 127.0.0.1 at 2014-03-16 13:50:48 +0200
8184
+ Processing by Beyond::TenantsController#new as HTML
8185
+ Beyond::User Load (0.4ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
8186
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/tenants/new.html.haml within layouts/application (3.9ms)
8187
+ Completed 200 OK in 17ms (Views: 12.6ms | ActiveRecord: 0.4ms)
8188
+
8189
+
8190
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:50:48 +0200
8191
+
8192
+
8193
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:50:48 +0200
8194
+
8195
+
8196
+ Started GET "/plugins/" for 127.0.0.1 at 2014-03-16 13:51:03 +0200
8197
+
8198
+ ActionController::RoutingError (No route matches [GET] "/plugins"):
8199
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8200
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8201
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
8202
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
8203
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
8204
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
8205
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
8206
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
8207
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8208
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
8209
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
8210
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8211
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8212
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
8213
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
8214
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
8215
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
8216
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8217
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
8218
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
8219
+ /home/me/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
8220
+ /home/me/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
8221
+ /home/me/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
8222
+
8223
+
8224
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.5ms)
8225
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
8226
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms)
8227
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms)
8228
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (104.1ms)
8229
+
8230
+
8231
+ Started GET "/plugins/1/start" for 127.0.0.1 at 2014-03-16 13:51:32 +0200
8232
+
8233
+ ActionController::RoutingError (No route matches [GET] "/plugins/1/start"):
8234
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8235
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8236
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
8237
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
8238
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
8239
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
8240
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
8241
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
8242
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8243
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
8244
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
8245
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8246
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8247
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
8248
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
8249
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
8250
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
8251
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8252
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
8253
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
8254
+ /home/me/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
8255
+ /home/me/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
8256
+ /home/me/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
8257
+
8258
+
8259
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
8260
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
8261
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms)
8262
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms)
8263
+ Rendered /home/me/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (47.8ms)
8264
+
8265
+
8266
+ Started GET "/" for 127.0.0.1 at 2014-03-16 13:51:44 +0200
8267
+ Processing by Beyond::TenantsController#new as HTML
8268
+ Beyond::User Load (0.4ms) SELECT "beyond_users".* FROM "beyond_users" WHERE "beyond_users"."id" = 1 ORDER BY "beyond_users"."id" ASC LIMIT 1
8269
+ Rendered /home/me/programming/thesis/beyond/app/views/beyond/tenants/new.html.haml within layouts/application (3.6ms)
8270
+ Completed 200 OK in 20ms (Views: 14.3ms | ActiveRecord: 0.4ms)
8271
+
8272
+
8273
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-16 13:51:44 +0200
8274
+
8275
+
8276
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-16 13:51:44 +0200
@@ -1 +1 @@
1
- 6355
1
+ 7706
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beyond
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mihail Zdravkov