g5_prom_rails 0.2.0 → 0.3.0

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
  SHA1:
3
- metadata.gz: 26f2e4fc24881fa6fc383f69ffa57108a6194e02
4
- data.tar.gz: fb1e5fd89456cc43d0bcf00c44cda9af8c188e01
3
+ metadata.gz: 6bc20803779b0772690357f3d5982926b3d1f2ac
4
+ data.tar.gz: 6749752184cea03076373233cbfffa632b4ec853
5
5
  SHA512:
6
- metadata.gz: f411c57b452898f94939900701f030d3d53e0bbe32ad412dfd0f36560d80e6f079f0a7df2029191225eb79c5df90eb3fe3d06f3e5a29692479e339fd154e208f
7
- data.tar.gz: 252b576492228b9fd7bf0456bb41d1664fafd4f477d450c1f0a7e0a3daf978ee884c578ca5430c4e966c15d075a73a5eb351dd5cc7fc7ec059172b9283a4c574
6
+ metadata.gz: 473ec2350a816b44ef4e0e40a0813ad80ea7a049359cdf9be9118cb4b56a8af007dd10796e0f65ec9ff8fa1d21c0a24615eba2a344fd5e25466f2ec2610478f2
7
+ data.tar.gz: d84afd21c2983fddc2f1584db58ba999f8db396aedaf9ecdb8ad0f89c99aff14245e2399853785718f5017f9d2ad7da72daa9386714c5ea4d59b5e3378f08079
@@ -1,3 +1,3 @@
1
1
  module G5PromRails
2
- VERSION = '0.2.0'
2
+ VERSION = '0.3.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: g5_prom_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Don Petersen
@@ -90,14 +90,8 @@ files:
90
90
  - MIT-LICENSE
91
91
  - README.md
92
92
  - Rakefile
93
- - app/assets/config/g5_prom_rails_manifest.js
94
- - app/assets/javascripts/g5_prom_rails/application.js
95
- - app/assets/stylesheets/g5_prom_rails/application.css
96
93
  - app/controllers/g5_prom_rails/application_controller.rb
97
94
  - app/helpers/g5_prom_rails/application_helper.rb
98
- - app/jobs/g5_prom_rails/application_job.rb
99
- - app/mailers/g5_prom_rails/application_mailer.rb
100
- - app/models/g5_prom_rails/application_record.rb
101
95
  - app/views/layouts/g5_prom_rails/application.html.erb
102
96
  - config/routes.rb
103
97
  - lib/g5_prom_rails.rb
@@ -1,2 +0,0 @@
1
- //= link_directory ../javascripts/g5_prom_rails .js
2
- //= link_directory ../stylesheets/g5_prom_rails .css
@@ -1,13 +0,0 @@
1
- // This is a manifest file that'll be compiled into application.js, which will include all the files
2
- // listed below.
3
- //
4
- // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
- // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
- //
7
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
- // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
- //
10
- // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
- // about supported directives.
12
- //
13
- //= require_tree .
@@ -1,15 +0,0 @@
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 any plugin's vendor/assets/stylesheets directory 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 bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,4 +0,0 @@
1
- module G5PromRails
2
- class ApplicationJob < ActiveJob::Base
3
- end
4
- end
@@ -1,6 +0,0 @@
1
- module G5PromRails
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: 'from@example.com'
4
- layout 'mailer'
5
- end
6
- end
@@ -1,5 +0,0 @@
1
- module G5PromRails
2
- class ApplicationRecord < ActiveRecord::Base
3
- self.abstract_class = true
4
- end
5
- end