apple-app-site-association 0.1.1 → 0.1.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
  SHA1:
3
- metadata.gz: fcc46b777a06d08212ff7521f0ad9595dcb8c289
4
- data.tar.gz: 338cb1013b9a9c39443bba7af94df2d73ccc62da
3
+ metadata.gz: 6009bd61221ded7bfd25e014e53cd3c73c16da02
4
+ data.tar.gz: e07431788f6c5d1be4739099ac54dc7f1de2b300
5
5
  SHA512:
6
- metadata.gz: e3655fb7039ee78bf90fa7389bf5f67dc51c0e78bdeab6a7c048f59ca4cebb062781354cba90f7eb344d35927d81d35a728f783a62a78a87029b66553e177dbb
7
- data.tar.gz: dcd8cab4523706ce8a88a0e8f37642dc25d232239bc013eb1b21725238262c5400e2f62ee7eb64c898b7c5e59d7d894e1f6502ed1553021681bf0a8a8b34ecc1
6
+ metadata.gz: 72772d5bb28cd72acf94270e7831df850f2d73861686f9bc9063055e6a5356a6754cdd87c9a2143ed1e9686d0a1b865db05989face48c94805bdb957ebdd4314
7
+ data.tar.gz: f1e35ae0f58137aac3dc6b5cd47f1122272e315170173ca44105aebe98831634371b42126304c20c28f36601142b513becc1db249cca752e62f61d10adadb746
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/apple-app-site-association.svg)](https://badge.fury.io/rb/apple-app-site-association)
4
4
  [![Build Status](https://travis-ci.org/toihrk/apple-app-site-association.svg?branch=master)](https://travis-ci.org/toihrk/apple-app-site-association)
5
5
 
6
- A mountable Sinatra application for introduce the universal link to your application.
6
+ A mountable Sinatra application for introduce the [universal link](https://developer.apple.com/library/content/documentation/General/Conceptual/AppSearch/UniversalLinks.html) to your application.
7
7
 
8
8
 
9
9
  ## Installation
@@ -18,10 +18,6 @@ And then execute:
18
18
 
19
19
  $ bundle
20
20
 
21
- Or install it yourself as:
22
-
23
- $ gem install apple-app-site-association
24
-
25
21
 
26
22
  ## Usage
27
23
 
@@ -37,8 +33,8 @@ Configure:
37
33
  # config/initializers/apple-app-site-association.rb
38
34
 
39
35
  Apple::App::Site::Association.configure do |c|
40
- c.datails { appID: '9JA89QQLNQ.com.apple.wwdc', paths: ['/wwdc/news/', '/videos/wwdc/2015/*'] },
41
- { appID: 'ABCD1234.com.apple.wwdc', paths: '*' }
36
+ c.datails({ appID: '9JA89QQLNQ.com.apple.wwdc', paths: ['/wwdc/news/', '/videos/wwdc/2015/*'] },
37
+ { appID: 'ABCD1234.com.apple.wwdc', paths: '*' })
42
38
  end
43
39
  ```
44
40
 
@@ -60,7 +56,7 @@ end
60
56
 
61
57
  After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
62
58
 
63
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
59
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in [`apple-app-site-association.gemspec`](https://github.com/toihrk/apple-app-site-association/blob/master/apple-app-site-accosiation.gemspec), and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
64
60
 
65
61
  ## Contributing
66
62
 
@@ -6,13 +6,13 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = 'apple-app-site-association'
9
- s.version = '0.1.1'
9
+ s.version = '0.1.2'
10
10
  s.authors = ['toihrk']
11
11
  s.email = ['toihrk@me.com']
12
12
 
13
13
  s.summary = 'A mountable Sinatra application for introduce the universal link to your application'
14
14
  s.description = s.summary
15
- s.homepage = 'https://github.com/toihrk/apple-app-site-accosiation'
15
+ s.homepage = 'https://github.com/toihrk/apple-app-site-association'
16
16
  s.license = 'MIT'
17
17
 
18
18
  raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' unless s.respond_to?(:metadata)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apple-app-site-association
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - toihrk
@@ -131,7 +131,7 @@ files:
131
131
  - lib/apple/app/site/association.rb
132
132
  - lib/generators/templates/initializer.rb
133
133
  - lib/generators/universal_link/install_generator.rb
134
- homepage: https://github.com/toihrk/apple-app-site-accosiation
134
+ homepage: https://github.com/toihrk/apple-app-site-association
135
135
  licenses:
136
136
  - MIT
137
137
  metadata: {}