rails_set_locale 0.2.3 → 0.2.4

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: d66fd091ca70afa5c4b0b181697a4f115c8759a5
4
- data.tar.gz: a4d529872af327909e2d59b321c97ddaccf8377b
3
+ metadata.gz: 5774c0ad36835b9466814429ba85fe05696fba9e
4
+ data.tar.gz: 54fcb30473e9db432fbf32a90977fe3b43de6d73
5
5
  SHA512:
6
- metadata.gz: f14f58c7b490554d924bf11bf1e397f6ee20fe4d492238255760894275da762de5a9b4b97255335cb3cca9c2b36bb1e85501faa89c8e1b02c78eab88206fcd97
7
- data.tar.gz: b44eb8a2dcac76de83afeaa678f824c42cc4b4cb867908f036ad5b04a107cdb5ccab9f71b103760b9f20559d6aaf506bae51aa8b45a32f8756f6d9099b69607b
6
+ metadata.gz: f9578da2af47d0c96fbb58ad3e6bc2bd9cb19f62d1d3941703794ac139442e6a222b337435621fa0d3c569fa8a77febc519865580cd20845e4cd3c920876eea7
7
+ data.tar.gz: df2b565536a5c87f809d8654bac644fa368e05e8fe21a83a64c403da2c825c6bd1d1a9eea18580cf0162c155f33bcb4441e08c9b9c8d9ff9f6d6abc1fa06f608
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsSetLocale
4
- VERSION = '0.2.3'
4
+ VERSION = '0.2.4'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_set_locale
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Panos Matsinopoulos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-21 00:00:00.000000000 Z
11
+ date: 2018-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http_accept_language
@@ -129,7 +129,6 @@ email:
129
129
  - panagiotis@matsinopoulos.gr
130
130
  executables:
131
131
  - console
132
- - rails
133
132
  - setup
134
133
  extensions: []
135
134
  extra_rdoc_files: []
@@ -146,7 +145,6 @@ files:
146
145
  - app/controllers/rails_set_locale/application_controller.rb
147
146
  - app/controllers/rails_set_locale/locale_controller.rb
148
147
  - bin/console
149
- - bin/rails
150
148
  - bin/setup
151
149
  - config/routes.rb
152
150
  - lib/rails_set_locale.rb
data/bin/rails DELETED
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- #!/usr/bin/env ruby
4
- # This command will automatically be run when you run "rails" with Rails gems
5
- # installed from the root of your application.
6
-
7
- ENGINE_ROOT = File.expand_path('..', __dir__)
8
- ENGINE_PATH = File.expand_path('../lib/rails_set_locale/engine', __dir__)
9
- APP_PATH = File.expand_path('../test/dummy/config/application', __dir__)
10
-
11
- # Set up gems listed in the Gemfile.
12
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
13
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
14
-
15
- require 'rails/all'
16
- require 'rails/engine/commands'