nativegap 3.0.0 → 3.0.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: 77ad6cce9642d37cc02fcfbc3fbfe1c328193d5ab08f3ddb31ebdac0093556f0
4
- data.tar.gz: 73ea7e3f58805d79587aa58f31600949aa2abb2936f9f98808d1d5a8a29b9679
3
+ metadata.gz: bb61034c7c67deadcc793970fffcc79caa51c98c8d2beff2fa24b300a283cfb6
4
+ data.tar.gz: 6dc841149b090ce3ad2580f359e0884322b044d8d73e6be8ba76a7d0fee8f4b5
5
5
  SHA512:
6
- metadata.gz: 125bc598a87fe1754606e7ab1e190b80f60d80ebe430c7832153e46e0d4a10e632a2a38984fa7dac11ce0f04006cf112351a7805c17fd9015b43b759e396e88b
7
- data.tar.gz: 4dd7ebf420e0b29d2bc300f81fcc6a2ea9dc7402b8774d65edc59d17f0940790f724b346437297752cad7e12b9789e38c80e0d0f27965d630957108239d409a9
6
+ metadata.gz: 8c239b4470861ce513501f7fdff51936e822dd844f37b59a573def99424caaa0f90821210e3b86ddd1e45d9e1b06e85b277a7f5dcf5cd01c8207edfd65ed3d2c
7
+ data.tar.gz: dae6833e33b798cc0e3301f719ac69f07b7f6b73bc20761ae136d4c37e6fb605d035bdbddf1f0df493bdadbd885cd864f63e6915213ff1a26ecfb7ec938197f5
data/CHANGELOG.md CHANGED
@@ -4,7 +4,12 @@
4
4
 
5
5
  * nothing yet
6
6
 
7
- ### 3.0.0 - 2018/01/06
7
+ ### 3.0.1 - 2018/01/09
8
+
9
+ * enhancements
10
+ * remove unnecessary configuration options
11
+
12
+ ### 3.0.0 - 2018/01/09
8
13
 
9
14
  * features
10
15
  * streamlined `App` model
@@ -6,10 +6,4 @@ NativeGap.configure do |config|
6
6
  # config.windows = true
7
7
  # config.chrome = true
8
8
 
9
- # Specify a stringified url helper to set a start url for each platform.
10
- # config.android_url = 'root_url'
11
- # config.ios_url = 'root_url'
12
- # config.windows_url = 'root_url'
13
- # config.chrome_url = 'root_url'
14
-
15
9
  end
@@ -15,20 +15,12 @@ module NativeGap
15
15
  attr_accessor :ios
16
16
  attr_accessor :windows
17
17
  attr_accessor :chrome
18
- attr_accessor :android_url
19
- attr_accessor :ios_url
20
- attr_accessor :windows_url
21
- attr_accessor :chrome_url
22
18
 
23
19
  def initialize
24
20
  @android = true
25
21
  @ios = true
26
22
  @windows = true
27
23
  @chrome = true
28
- @android_url = 'root_url'
29
- @ios_url = 'root_url'
30
- @windows_url = 'root_url'
31
- @chrome_url = 'root_url'
32
24
  end
33
25
 
34
26
  end
@@ -1,5 +1,5 @@
1
1
  module NativeGap
2
2
 
3
- VERSION = '3.0.0'
3
+ VERSION = '3.0.1'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nativegap
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Hübotter