instagramjs-rails 0.3.0.2 → 0.3.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 +5 -13
- data/lib/instagramjs-rails/version.rb +1 -1
- data/vendor/assets/javascripts/jquery.instagram.js +5 -5
- metadata +13 -13
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
data.tar.gz: !binary |-
|
|
6
|
-
ZWY4YjZiYjdmMmYyNmZjOTU1MjMwY2VjNDczODM5NTAxMmFkMTlkZA==
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 128317574b9db18d6a7489e212af3362bccadbcf
|
|
4
|
+
data.tar.gz: a4aaf6e6dd5d78f8f20625ae78b688ebd66f879b
|
|
7
5
|
SHA512:
|
|
8
|
-
metadata.gz:
|
|
9
|
-
|
|
10
|
-
NmNmNWNhYWFjZmZkZGQ2YWRkZTI4ODRkN2UyNDdjZWY0ZTkzNjQ1MDkwMjM5
|
|
11
|
-
YzIxZWJiMDYzZjFiN2Y2MjU5MDBmZmRmYWNkYWNiNjM0YWNhNWU=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
MGI0OGUyYjIyMTNiZTkwZmU3MWVjMmY0MGQzZDZkOWMyNTBiZDAyNDA5MmEz
|
|
14
|
-
ZDYwNWRiZjQ5YWQ0YTRkMzAzNmI5NTkyNDY4MWM0MzhjYTY5YjM0ODdkMjYy
|
|
15
|
-
NzMxYjFiMWEyOGFmZTQyYjQ1MjFjNGM1YjMzNjk4NTA4NDYzYzE=
|
|
6
|
+
metadata.gz: 30573673056a00ca6d86138a32d4951621f5de67ba24f5e9cef38d6f12fd87dc383a214e3c34c23fe8d50f8098a8b829fc19399bd021c17e1814f7e7c9eceeff
|
|
7
|
+
data.tar.gz: 67ff73978192c4ba54f3ff5a054d0d66eaf08b76b8c27627cad0026bc25655e33f88972acaa77f2e11c4cd8e5e16af21e2cdf5b917cbb3055dbbdcc5f07eaf3f
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/*! jQuery Instagram - v0.3.
|
|
1
|
+
/*! jQuery Instagram - v0.3.1 - 2014-06-19
|
|
2
2
|
* http://potomak.github.com/jquery-instagram
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2014 Giovanni Cappellotto; Licensed MIT */
|
|
4
4
|
(function($) {
|
|
5
5
|
|
|
6
6
|
function composeRequest(options) {
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
data = $.extend(data, {
|
|
15
|
-
access_token: options.accessToken,
|
|
16
|
-
client_id: options.clientId,
|
|
17
|
-
count: options.count
|
|
15
|
+
access_token: options.accessToken || '',
|
|
16
|
+
client_id: options.clientId || '',
|
|
17
|
+
count: options.count || ''
|
|
18
18
|
});
|
|
19
19
|
|
|
20
20
|
if (options.url != null) {
|
metadata
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: instagramjs-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ilya Bodrov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-08-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '3.1'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - '>='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '3.1'
|
|
27
|
-
description:
|
|
28
|
-
|
|
29
|
-
plugin by Giovanni Cappellotto.
|
|
27
|
+
description: |-
|
|
28
|
+
A ruby gem that uses the Rails asset pipeline to include the Instagram.js
|
|
29
|
+
plugin by Giovanni Cappellotto.
|
|
30
30
|
email:
|
|
31
31
|
- golosizpru@gmail.com
|
|
32
32
|
executables: []
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/instagramjs-rails/version.rb
|
|
37
|
-
- lib/instagramjs-rails.rb
|
|
38
|
-
- vendor/assets/javascripts/jquery.instagram.js
|
|
39
36
|
- LICENSE
|
|
40
37
|
- README.md
|
|
38
|
+
- lib/instagramjs-rails.rb
|
|
39
|
+
- lib/instagramjs-rails/version.rb
|
|
40
|
+
- vendor/assets/javascripts/jquery.instagram.js
|
|
41
41
|
homepage: https://github.com/bodrovis/instagramjs-rails
|
|
42
42
|
licenses:
|
|
43
43
|
- MIT
|
|
@@ -48,17 +48,17 @@ require_paths:
|
|
|
48
48
|
- lib
|
|
49
49
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
|
51
|
-
- -
|
|
51
|
+
- - '>='
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
53
|
version: '0'
|
|
54
54
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
55
|
requirements:
|
|
56
|
-
- -
|
|
56
|
+
- - '>='
|
|
57
57
|
- !ruby/object:Gem::Version
|
|
58
58
|
version: '0'
|
|
59
59
|
requirements: []
|
|
60
60
|
rubyforge_project:
|
|
61
|
-
rubygems_version: 2.1
|
|
61
|
+
rubygems_version: 2.4.1
|
|
62
62
|
signing_key:
|
|
63
63
|
specification_version: 4
|
|
64
64
|
summary: Includes javascript and css files for the Instagram.js.
|