intercom-app 0.2.5 → 0.2.6
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 +4 -0
- data/README.md +7 -1
- data/intercom-app.gemspec +1 -1
- data/lib/intercom-app/version.rb +1 -1
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f96ed0fc25b6630bb6755010b880ec0e2483746e
|
|
4
|
+
data.tar.gz: cd8289d3cfd3694f7bec11aaf1db7cafac176a70
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3779f9a2f1a999ca01567d67db6f7e8b2e005e69073c118296ecf7e2f8e2f817d797febaea8b618543da615a8e95737891aaa0fac1e03d3f7e777c45918669d1
|
|
7
|
+
data.tar.gz: 52873d84679c129037290e06c7d92717b18176ffb90ce8cbd29accb9402e333f6e4f889067f5c6349b39a8cb9d765f1bcb5bdcbf15649eed4ba7fd56a82f3074
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -24,7 +24,7 @@ $ rails new my_intercom_app
|
|
|
24
24
|
$ cd my_intercom_app
|
|
25
25
|
```
|
|
26
26
|
Then add `intercom-app` to your Gemfile and bundle install :
|
|
27
|
-
`gem 'intercom-app', '>= 0.2.
|
|
27
|
+
`gem 'intercom-app', '>= 0.2.6'`
|
|
28
28
|
and run :
|
|
29
29
|
``` sh
|
|
30
30
|
$ bundle install
|
|
@@ -211,3 +211,9 @@ http://github.com/intercom/intercom-ruby <= Intercom Ruby API wrapper
|
|
|
211
211
|
- **Send coherent history**. Make sure each individual commit in your pull
|
|
212
212
|
request is meaningful. If you had to make multiple intermediate commits while
|
|
213
213
|
developing, please squash them before sending them to us.
|
|
214
|
+
|
|
215
|
+
## Troubleshooting
|
|
216
|
+
|
|
217
|
+
#### omniauth-intercom > omniauth-oauth2 dependency in v0.1.4
|
|
218
|
+
|
|
219
|
+
From v0.1.4 of our `omniauth-intercom` gem we have defined our `omniauth-oauth2` dependency to allow any version from 1.2 on. If you relied on our Gemspec version config for `omniauth-oauth2` you can simply add `gem 'omniauth-oauth2', '~> 1.2'` to your Gemfile. This will ensure your `omniauth-oauth2` version is `1.2.x` again.
|
data/intercom-app.gemspec
CHANGED
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.required_ruby_version = '>= 2.2.2'
|
|
21
21
|
|
|
22
22
|
s.add_runtime_dependency 'intercom', '~> 3.5.8'
|
|
23
|
-
s.add_runtime_dependency 'omniauth-intercom', '~> 0.1.
|
|
23
|
+
s.add_runtime_dependency 'omniauth-intercom', '~> 0.1.4'
|
|
24
24
|
|
|
25
25
|
s.add_development_dependency 'rails', '~> 4.2'
|
|
26
26
|
s.add_development_dependency 'sqlite3', '~> 1.3'
|
data/lib/intercom-app/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: intercom-app
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Antoine
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.1.
|
|
33
|
+
version: 0.1.4
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.1.
|
|
40
|
+
version: 0.1.4
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rails
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -201,9 +201,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
201
201
|
version: '0'
|
|
202
202
|
requirements: []
|
|
203
203
|
rubyforge_project:
|
|
204
|
-
rubygems_version: 2.
|
|
204
|
+
rubygems_version: 2.5.1
|
|
205
205
|
signing_key:
|
|
206
206
|
specification_version: 4
|
|
207
207
|
summary: Intercom.io ruby application boilerplate
|
|
208
208
|
test_files: []
|
|
209
|
-
has_rdoc:
|