aranha 0.12.0 → 0.12.1

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
  SHA256:
3
- metadata.gz: db34adb104f5de9708578794621137871bde994581b4bb07bb7425c2907220b9
4
- data.tar.gz: 6c3bce94b9388d5122551ea2afb1a3c704fd7054809a63dc40144411b0f1ce6b
3
+ metadata.gz: 757ddf38d7f136f555d33165d6848447f7b0e299d39797bc5e857a2a5bd90710
4
+ data.tar.gz: 64fd157452e0cbf1683b4a83f01adf766d341f576184add18409c2e3a0e99ce3
5
5
  SHA512:
6
- metadata.gz: fc790ae44a143f26fa28aac89a1c642d84f8b9a24db5308cded58410c4e784da57b30e4bf1b98c332a0ebff80f1a962647bb38a1e84503f69db02d87404c0319
7
- data.tar.gz: 24be38bb10be2ecb1653bb0465063070b622450eaa62827450fd5b1a14f83029701f6607e2c657a828a54b1f64b26d5e6640b1ed9a6b57d1f82a420b170e9f6d
6
+ metadata.gz: a467c10ef68ab3d834c43f53e40de95b7a721e52e614691955d1f7d221145236c064df40a5a6695c3c07235a90b27618c763f06d655a5095b68d599feb753b33
7
+ data.tar.gz: e75d62110669c105d9a2e3c11b0be6d77e96e9483a6dea4e0e1a5abf9e6263e9879dc9213d834afdb394fa62a2cf32769315716a89995f605060f60db6076fe7
@@ -1,9 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_dependency 'aranha/application_controller'
4
-
5
3
  module Aranha
6
- class AddressesController < ApplicationController
4
+ class AddressesController < ::ApplicationController
7
5
  active_scaffold :'aranha/address' do |_conf|
8
6
  end
9
7
  end
@@ -0,0 +1,6 @@
1
+ en:
2
+ activerecord:
3
+ models:
4
+ aranha/address:
5
+ one: Aranha address
6
+ other: Aranha addresses
@@ -0,0 +1,6 @@
1
+ pt-BR:
2
+ activerecord:
3
+ models:
4
+ aranha/address:
5
+ one: Endereço Aranha
6
+ other: Endereços Aranha
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Aranha
4
- VERSION = '0.12.0'
4
+ VERSION = '0.12.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aranha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo H. Bogoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-20 00:00:00.000000000 Z
11
+ date: 2019-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_scaffold
@@ -135,10 +135,11 @@ files:
135
135
  - app/assets/javascripts/aranha/application.js
136
136
  - app/assets/stylesheets/aranha/application.css
137
137
  - app/controllers/aranha/addresses_controller.rb
138
- - app/controllers/aranha/application_controller.rb
139
138
  - app/helpers/aranha/application_helper.rb
140
139
  - app/models/aranha/address.rb
141
140
  - app/views/layouts/aranha/application.html.erb
141
+ - config/locales/en.yml
142
+ - config/locales/pt-BR.yml
142
143
  - config/routes.rb
143
144
  - db/migrate/20171201021251_create_aranha_addresses.rb
144
145
  - db/migrate/20181125042102_add_extra_data_to_aranha_addresses.rb
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Aranha
4
- class ApplicationController < ActionController::Base
5
- protect_from_forgery with: :exception
6
- end
7
- end