nativegap 3.0.1 → 3.0.2

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: bb61034c7c67deadcc793970fffcc79caa51c98c8d2beff2fa24b300a283cfb6
4
- data.tar.gz: 6dc841149b090ce3ad2580f359e0884322b044d8d73e6be8ba76a7d0fee8f4b5
3
+ metadata.gz: cc8a408a604de0b56962d9cf78a90d5197de8b995e8d30b4cde70477b253655f
4
+ data.tar.gz: fc0717805eca3e8b461d7691b5fe5fcf23f4f099187db8c38677cf17292b10f7
5
5
  SHA512:
6
- metadata.gz: 8c239b4470861ce513501f7fdff51936e822dd844f37b59a573def99424caaa0f90821210e3b86ddd1e45d9e1b06e85b277a7f5dcf5cd01c8207edfd65ed3d2c
7
- data.tar.gz: dae6833e33b798cc0e3301f719ac69f07b7f6b73bc20761ae136d4c37e6fb605d035bdbddf1f0df493bdadbd885cd864f63e6915213ff1a26ecfb7ec938197f5
6
+ metadata.gz: 1ecdbaecea65f77db8b74cf846074e52fe3d03dd2ff449ec99fa86f62b92751434f3666f54cfc0af674f83bed0ad43772407d176f040a22abaf295d1017b1465
7
+ data.tar.gz: f8584659e8b24588f489370e8357a528eecfdf2c734ae17637edd0ed181fc320bfa82a1718252c8159fe58ad5ede00a25a21164edd5f1bbe6010bde4d0ef8cd3
@@ -4,12 +4,17 @@
4
4
 
5
5
  * nothing yet
6
6
 
7
- ### 3.0.1 - 2018/01/09
7
+ ### 3.0.2 - 2018/02/23
8
+
9
+ * bugfixes
10
+ * fixed `uninitialized constant NativeGap::Railtie::NativeGapModel`
11
+
12
+ ### 3.0.1 - 2018/02/09
8
13
 
9
14
  * enhancements
10
15
  * remove unnecessary configuration options
11
16
 
12
- ### 3.0.0 - 2018/01/09
17
+ ### 3.0.0 - 2018/02/09
13
18
 
14
19
  * features
15
20
  * streamlined `App` model
data/README.md CHANGED
@@ -94,7 +94,7 @@ That's it!
94
94
 
95
95
  ### Assets
96
96
 
97
- With Native it is fairly simple to add platform specific stylesheets and scripts. In your assets directory you have a new folder for your `javascripts` and `stylesheets` (`app/assets/.../nativegap`). In these two folders you are able to add custom assets for specific platforms including `web` specific assets.
97
+ With NativeGap on Rails it is fairly simple to add platform specific stylesheets and scripts. In your assets directory you have a new folder for your `javascripts` and `stylesheets` (`app/assets/.../nativegap`). In these two folders you are able to add custom assets for specific platforms including `web` specific assets.
98
98
 
99
99
  You simple have to add ...
100
100
 
@@ -1,4 +1,4 @@
1
- module NativeModel
1
+ module NativeGapModel
2
2
 
3
3
  extend ActiveSupport::Concern
4
4
 
@@ -1,5 +1,5 @@
1
1
  module NativeGap
2
2
 
3
- VERSION = '3.0.1'
3
+ VERSION = '3.0.2'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nativegap
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Hübotter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-09 00:00:00.000000000 Z
11
+ date: 2018-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -77,7 +77,7 @@ files:
77
77
  - README.md
78
78
  - app/controllers/concerns/native_gap_controller.rb
79
79
  - app/helpers/native_helper.rb
80
- - app/models/concerns/native_model.rb
80
+ - app/models/concerns/native_gap_model.rb
81
81
  - app/models/native_gap/app_library.rb
82
82
  - app/views/mozaic/nativegap/_assets.html.erb
83
83
  - lib/generators/nativegap_generator.rb