raas-client-rails 0.1.7 → 0.1.9

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: 07a2f5b6f431423df6ed2ca55e24f14e075096f4e285010da3b3943780c6fc13
4
- data.tar.gz: d4d07d577ffe0932c492dccf3bff466a07c04d9d91bd84327cea42cdc68e155b
3
+ metadata.gz: 2fc3ec830f871822dfe3146c17043229262a8706d66fa18a11ec2f98c34e979e
4
+ data.tar.gz: 2934a12975380862b995b473fffb089ce7fc47076ec031d714caf6b7b2fe977b
5
5
  SHA512:
6
- metadata.gz: 0dc69671bab34c30a4e9a56f5f97ad188b07ec771c7cbd3cfd191fd5e51696f3e6b3713b2f663e0554898a250c053b9bd5f8f07b19938ab89790c7834cef3425
7
- data.tar.gz: 9fc81b2b75162fd3c1fdfa99435322248da15ba368c49e420aeb4825c8a2d8a3a0ec93794ee4e74fb04eca6243f10fa3c4f94e447e6974e73cce4e0b52d69474
6
+ metadata.gz: 939e468c236a6611d214078c854c1dc1ec7aae2b1a78cc55f78a0d751d7b7a6842d5c5e858e5491e234b99c1bb8c72650d7896f3db092f8e033a3ad0ddceada1
7
+ data.tar.gz: 5164cf667d5bde60992a9ed0c5fa2d55a2ae85a38cbc7d77825efa1c42b52767ea6f49f103359b81029989bc6fddb1094ae8d178b63271f20fbd76df37cd1960
@@ -1,4 +1,3 @@
1
- puts "Loading Raas::Client::Rails::Engine..."
2
1
  module Raas
3
2
  module Client
4
3
  module Rails
@@ -1,7 +1,7 @@
1
1
  module Raas
2
2
  module Client
3
3
  module Rails
4
- VERSION = "0.1.7"
4
+ VERSION = "0.1.9"
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.7
4
+ version: 0.1.9
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-25 00:00:00.000000000 Z
11
+ date: 2024-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -42,8 +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/mailers/raas/client/rails/application_mailer.rb
46
- - app/models/raas/client/rails/application_record.rb
47
45
  - app/views/layouts/raas/client/rails/application.html.erb
48
46
  - config/routes.rb
49
47
  - lib/raas/client/rails.rb
@@ -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