social_rails 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +0 -0
  3. data/app/assets/config/social_rails_manifest.js +0 -0
  4. data/app/assets/javascripts/app.js +0 -2
  5. data/app/assets/javascripts/social_rails/social-rails.js +1 -1
  6. data/app/controllers/social_rails/social_controller.rb +0 -0
  7. data/app/views/social_rails/facebook/_description.html.erb +0 -0
  8. data/app/views/social_rails/facebook/_full_picture.html.erb +0 -0
  9. data/app/views/social_rails/facebook/latest.html.erb +0 -0
  10. data/app/views/social_rails/instagram/_caption.html.erb +0 -0
  11. data/app/views/social_rails/instagram/_picture.html.erb +0 -0
  12. data/app/views/social_rails/instagram/latest.html.erb +0 -0
  13. data/app/views/social_rails/twitter/latest.html.erb +0 -0
  14. data/config/routes.rb +0 -0
  15. data/lib/generators/social_rails/config_generator.rb +0 -0
  16. data/lib/generators/social_rails/templates/social_rails_config.rb +0 -0
  17. data/lib/generators/social_rails/views_generator.rb +0 -0
  18. data/lib/social_rails/apis/base.rb +0 -0
  19. data/lib/social_rails/apis/facebook.rb +0 -0
  20. data/lib/social_rails/apis/instagram.rb +0 -0
  21. data/lib/social_rails/apis/twitter.rb +0 -0
  22. data/lib/social_rails/apis.rb +0 -0
  23. data/lib/social_rails/cache.rb +0 -0
  24. data/lib/social_rails/engine.rb +0 -0
  25. data/lib/social_rails/helpers/base.rb +0 -0
  26. data/lib/social_rails/helpers/facebook.rb +0 -0
  27. data/lib/social_rails/helpers/helper_methods.rb +0 -0
  28. data/lib/social_rails/helpers/instagram.rb +0 -0
  29. data/lib/social_rails/helpers/tag.rb +0 -0
  30. data/lib/social_rails/helpers/twitter.rb +0 -0
  31. data/lib/social_rails/version.rb +1 -1
  32. data/lib/social_rails.rb +0 -0
  33. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8376c8b58ecc4daf929f6bf8074702a152b52ee7
4
- data.tar.gz: 0ff1d9f7965b8668102362a36b180ab008f3f16a
3
+ metadata.gz: 697d9cf3e95c5b1d7305f681762e6811dc4db271
4
+ data.tar.gz: 1ceffcbad95942d948341010e7d61610803bd6ff
5
5
  SHA512:
6
- metadata.gz: fd99ba347ca3474e243e626f578030924ee746eae641d0fc669faf9e05e4c053c92f2992bbc694e010b6e81d95122b87357588d24e36811a074ee8b1843da8ca
7
- data.tar.gz: c1c9571ac340811077b59a47e8c79dd2d83fb7772f68f8045b308a544cdd97c96eb3db9eed38692d8d65a119d3a49db60c9ada4599ec9a3958c5033f42e37606
6
+ metadata.gz: 17572d52a3d2b837940a9c22517f2afdd46e8ace219e78b5c8eaf0253ef5b75ed6b7f31885c8e942d59eaf2c8da730919c7c58a15f75869fc20b61db0e0d2046
7
+ data.tar.gz: 96c4ed6bea6735ddc395dc2a55ee21c6ff604a6c2d9ee6b293c1cba3bc57b3ac7412ec84f2b6461d11ed86926ffdb05ac32d1d39223fa04129754009a65af7c5
data/README.md CHANGED
File without changes
File without changes
@@ -22,8 +22,6 @@ window.SocialRails = () => {
22
22
  xhr.onload = () => {
23
23
  if (xhr.status === 200)
24
24
  node.outerHTML = xhr.responseText
25
- else
26
- console.log(xhr.status)
27
25
  }
28
26
 
29
27
  xhr.send()
@@ -21,7 +21,7 @@ window.SocialRails = function () {
21
21
  xhr.open('GET', routes[namespace]);
22
22
 
23
23
  xhr.onload = function () {
24
- if (xhr.status === 200) node.outerHTML = xhr.responseText;else console.log(xhr.status);
24
+ if (xhr.status === 200) node.outerHTML = xhr.responseText;
25
25
  };
26
26
 
27
27
  xhr.send();
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/config/routes.rb CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module SocialRails
2
- VERSION = '2.1.0'
2
+ VERSION = '2.1.1'
3
3
  end
data/lib/social_rails.rb CHANGED
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: social_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francis G
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-17 00:00:00.000000000 Z
11
+ date: 2017-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -137,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
137
137
  version: '0'
138
138
  requirements: []
139
139
  rubyforge_project:
140
- rubygems_version: 2.6.13
140
+ rubygems_version: 2.5.2
141
141
  signing_key:
142
142
  specification_version: 4
143
143
  summary: Ease the pain of integrating social media posts in a Rails app.