trusty-rad-social-extension 2.0.2 → 2.1.0

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: e3266ef74830686644daa58be2e0376ba7312951
4
- data.tar.gz: 6677d7cdb76fc20a3018a3710c6ba1eebba1029f
3
+ metadata.gz: f928c02404c0c8b6e20583084d3cd03593646781
4
+ data.tar.gz: 920129933630185191feda75f67acda95d24ec29
5
5
  SHA512:
6
- metadata.gz: edede9bb1068a5e5fefcbf6910accc1a466747256f150ad7e32911dcad39e949b267fb52118c470e1a51dc2b2460ba323781bd81fc53f3202c508710906de686
7
- data.tar.gz: 4896793cc3683a638f39769df52c43a7313fc823c41e46181f7138c87bbd013465d352e9cdb80f7635a9176eb4b65978ea49056e855a71ec36ce7429c8fb3439
6
+ metadata.gz: 4edb0829d9e9d75234881fdffe09552fb5f6caad023c8c4618ab8292ae417fe0278005978e57b332cf0d34aaa5197ec04ac2a9dde78ca84d23fba1ddfe514bf1
7
+ data.tar.gz: a92416c64a8ed33eeb7eba864b1ac53cd9b786b50091e9d2aa54398a1a16830ed6255688268b70699f0d62569670256004c609b9f648c1401f6a98b3f850cb4a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trusty-rad-social-extension (2.0.2)
4
+ trusty-rad-social-extension (2.1.0)
5
5
  recaptcha (~> 0.3.6)
6
6
  trusty-cms (~> 2.0.0)
7
7
  trusty-layouts-extension (~> 2.0.0)
@@ -92,7 +92,7 @@ GEM
92
92
  diff-lcs (1.2.5)
93
93
  erubis (2.7.0)
94
94
  eventmachine (1.0.8)
95
- execjs (2.5.2)
95
+ execjs (2.6.0)
96
96
  factory_girl (4.5.0)
97
97
  activesupport (>= 3.0.0)
98
98
  factory_girl_rails (4.5.0)
@@ -109,7 +109,7 @@ GEM
109
109
  haml (>= 4.0.6, < 5.0)
110
110
  html2haml (>= 1.0.1)
111
111
  railties (>= 4.0.1)
112
- highline (1.7.3)
112
+ highline (1.7.7)
113
113
  hike (1.2.3)
114
114
  html2haml (2.0.0)
115
115
  erubis (~> 2.7.0)
@@ -117,7 +117,7 @@ GEM
117
117
  nokogiri (~> 1.6.0)
118
118
  ruby_parser (~> 3.5)
119
119
  i18n (0.7.0)
120
- jquery-rails (3.1.3)
120
+ jquery-rails (3.1.4)
121
121
  railties (>= 3.0, < 5.0)
122
122
  thor (>= 0.14, < 2.0)
123
123
  json (1.8.3)
@@ -262,13 +262,13 @@ GEM
262
262
  tzinfo (~> 1.2)
263
263
  uglifier (~> 2.6)
264
264
  will_paginate (~> 3.0)
265
- trusty-layouts-extension (2.0.1)
266
- trusty-cms (~> 2.0.0.pre.beta)
265
+ trusty-layouts-extension (2.0.2)
266
+ trusty-cms (~> 2.0.0)
267
267
  trustygems (0.2.1)
268
268
  rake
269
269
  tzinfo (1.2.2)
270
270
  thread_safe (~> 0.1)
271
- uglifier (2.7.1)
271
+ uglifier (2.7.2)
272
272
  execjs (>= 0.3.0)
273
273
  json (>= 1.8.0)
274
274
  websocket-driver (0.6.2)
@@ -297,3 +297,6 @@ DEPENDENCIES
297
297
  thin (~> 1.6.2)
298
298
  trusty-rad-social-extension!
299
299
  trustygems (~> 0.2.0)
300
+
301
+ BUNDLED WITH
302
+ 1.10.6
@@ -1,6 +1,18 @@
1
1
  .rad-icon {
2
2
  float: left;
3
3
  padding-right: 3px;
4
+ .rad-facebook {
5
+ background-image: url('rad_social/facebook.png');
6
+ }
7
+ .rad-twitter {
8
+ background-image: url('rad_social/twitter.png');
9
+ }
10
+ .rad-email {
11
+ background-image: url('rad_social/email.png');
12
+ }
13
+ .rad-gplus {
14
+ background-image: url('rad_social/gplus.png');
15
+ }
4
16
  }
5
17
  .rad-email-form {
6
18
  position: relative;
@@ -10,16 +10,15 @@
10
10
  .rad-widget
11
11
  .rad-icon
12
12
  %a{:class => "rad-popup-window rad-facebook", :href => "https://www.facebook.com/sharer/sharer.php?u=#{CGI::escape(url)}", :target=> "_blank"}
13
- %img{:src => image_path("rad_social/facebook.png"), :alt => "Facebook", :title => "Share to Facebook", :height => "26", :width => "26"}
14
13
  .rad-icon
15
14
  %a{:class => "rad-popup-window rad-twitter", :href => "https://twitter.com/intent/tweet?text=#{CGI::escape(message + " " + url)}"}
16
- %img{:src => image_path("rad_social/twitter.png"), :alt => "Twitter", :title => "Share to Twitter", :height => "26", :width => "26"}
15
+
17
16
  .rad-icon
18
17
  %a{:class => "rad-popup-window rad-email", :href => rad_social_mail_form_url(:email_subject => email_subject, :email_message => email_message, :email_action_url => email_action_url)}
19
- %img{:src => image_path("rad_social/email.png"), :alt => "Email a Friend", :title => "Email a Friend", :height => "26", :width => "26"}
18
+
20
19
  .rad-icon
21
20
  %a{:class => "rad-popup-window rad-gplus", :href => "https://plus.google.com/share?url=#{CGI::escape(url)}"}
22
- %img{:src => image_path("rad_social/googleplus.png"), :alt => "Google+", :title => "Share to Google+", :height => "26", :width => "26"}
21
+
23
22
 
24
23
 
25
24
 
@@ -1,5 +1,5 @@
1
1
  module TrustyRadSocialExtension
2
- VERSION = "2.0.2"
2
+ VERSION = "2.1.0"
3
3
  SUMMARY = "Rad Social for Trusty CMS"
4
4
  DESCRIPTION = "Makes Trusty CMS better by adding rad_social!"
5
5
  URL = "http://example.com/rad_social"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty-rad-social-extension
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Sipple
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-13 00:00:00.000000000 Z
11
+ date: 2015-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: recaptcha
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  version: '0'
123
123
  requirements: []
124
124
  rubyforge_project:
125
- rubygems_version: 2.4.3
125
+ rubygems_version: 2.4.8
126
126
  signing_key:
127
127
  specification_version: 4
128
128
  summary: Rad Social for Trusty CMS