raas-client-rails 0.1.6 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73224b8261b776a9d69737cb95659977510da4634b7b4e62efec9717100052fb
4
- data.tar.gz: 46f7e4de1c3aabda52410ba8d7823b9e97da3330ebf3dc533c5c0ede86c993c8
3
+ metadata.gz: 28fb47c8523d81135f4e581cb0841cfeaab7636ab8ea14662fe5a6e4dd915d67
4
+ data.tar.gz: 5dda847c19faeed2bf19af9ed4f83dc8d1cb23c6a61803ce7ff78cbd0c1bfd3c
5
5
  SHA512:
6
- metadata.gz: e7af93c7af68218729e2c29a7af2d4bd316e84dad45391b45d4e1d4fc1b48a035832bba97cc419ad0fea26f6c7e4277eacc0b26da9488864c42d7fbb06a5aac1
7
- data.tar.gz: 9788d726f4105fc96ed9476cc2b71016b4f4638dff3dd74b4f8041890cb306187d5718caed74b375fb42eb036bc285684de4c2d2d6483dde9f72b20e8e43b0da
6
+ metadata.gz: f3fab5d0751b127564f519999a583c646a349cae507e4b0585cefe54af93949e0e95ad0036b25309ca8c47ac48096ce96ba6e2b8de0b7ae1f443842bfc41ffa9
7
+ data.tar.gz: be6976f80ff00b3276136c0473ae133e71b075f621f56330be22e88f8dabce91ccd1187194bd6af7e844bacdc4c41c2798c9fb27b456022f7302d2ce394aeaad
@@ -1,7 +1,7 @@
1
1
  module Raas
2
2
  module Client
3
3
  module Rails
4
- VERSION = "0.1.6"
4
+ VERSION = "0.1.8"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raas-client-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sunao Suzuki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-18 00:00:00.000000000 Z
11
+ date: 2024-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -42,9 +42,6 @@ files:
42
42
  - app/controllers/raas/client/rails/rest_client.rb
43
43
  - app/helpers/raas/client/rails/application_helper.rb
44
44
  - app/helpers/raas/client/rails/raa_s_helper.rb
45
- - app/jobs/raas/client/rails/application_job.rb
46
- - app/mailers/raas/client/rails/application_mailer.rb
47
- - app/models/raas/client/rails/application_record.rb
48
45
  - app/views/layouts/raas/client/rails/application.html.erb
49
46
  - config/routes.rb
50
47
  - lib/raas/client/rails.rb
@@ -1,8 +0,0 @@
1
- module Raas
2
- module Client
3
- module Rails
4
- class ApplicationJob < ActiveJob::Base
5
- end
6
- end
7
- end
8
- end
@@ -1,10 +0,0 @@
1
- module Raas
2
- module Client
3
- module Rails
4
- class ApplicationMailer < ActionMailer::Base
5
- default from: "from@example.com"
6
- layout "mailer"
7
- end
8
- end
9
- end
10
- end
@@ -1,9 +0,0 @@
1
- module Raas
2
- module Client
3
- module Rails
4
- class ApplicationRecord < ActiveRecord::Base
5
- self.abstract_class = true
6
- end
7
- end
8
- end
9
- end