native 2.1.0 → 2.1.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +6 -0
- data/lib/native/owner.rb +1 -1
- data/lib/native/railtie.rb +5 -3
- data/lib/native/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c9487166fab6292d3ced2ed2e03d84bd9ba446e4462178be9b9f1a566edd1ac
|
4
|
+
data.tar.gz: a7fbcf4ebd7ab0a2e9c517efc08f362aeb29a5aabac5fe37aa65d838e818fccc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8599632781aedf75103f7a4de50f82904fe9fd3ef1d42c55a46887d13a0db9dcd811e25f1aadc5070c3d3aa57e7aeb38a11c1ba46109da8ecbe9ef5531a2e2bb
|
7
|
+
data.tar.gz: 74f1e4a8568ed6873f12f64d02bcfa07c8ae77d1fd9444421a7051545b49f1f746af28e8d08981318198411507e2e709f770c3c1738b54fdfcbc141a2b51832c
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -166,6 +166,12 @@ end
|
|
166
166
|
|
167
167
|
**Note:** Essentially `set_app_owner` has to return a class object *or* `nil`.
|
168
168
|
|
169
|
+
Now you are able to access the applications used by an user:
|
170
|
+
|
171
|
+
```ruby
|
172
|
+
User.first.native_apps
|
173
|
+
```
|
174
|
+
|
169
175
|
### View methods
|
170
176
|
|
171
177
|
**`current_app`** Returns `App` object related to current session. Returns `nil` when the Rails is being used normally.
|
data/lib/native/owner.rb
CHANGED
data/lib/native/railtie.rb
CHANGED
@@ -3,13 +3,15 @@ require 'rails'
|
|
3
3
|
module Native
|
4
4
|
class Railtie < Rails::Railtie
|
5
5
|
|
6
|
-
initializer 'native.
|
7
|
-
Rails.application.config.assets.precompile += %w( native/android.js native/ios.js native/uwp.js native/chrome.js native/osx.js native/win32.js native/win64.js native/lin32.js native/lin64.js native/web.js native/android.css native/ios.css native/uwp.css native/chrome.css native/osx.css native/win32.css native/win64.css native/lin32.css native/lin64.css native/web.css )
|
8
|
-
|
6
|
+
initializer 'native.active_record' do
|
9
7
|
ActiveSupport.on_load :active_record do
|
10
8
|
include Native::Owner
|
11
9
|
end
|
12
10
|
end
|
13
11
|
|
12
|
+
initializer 'native.sprockets-rails' do
|
13
|
+
Rails.application.config.assets.precompile += %w( native/android.js native/ios.js native/uwp.js native/chrome.js native/osx.js native/win32.js native/win64.js native/lin32.js native/lin64.js native/web.js native/android.css native/ios.css native/uwp.css native/chrome.css native/osx.css native/win32.css native/win64.css native/lin32.css native/lin64.css native/web.css )
|
14
|
+
end
|
15
|
+
|
14
16
|
end
|
15
17
|
end
|
data/lib/native/version.rb
CHANGED