conred 0.0.2
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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/conred.gemspec +20 -0
- data/lib/conred.rb +87 -0
- data/lib/conred/version.rb +3 -0
- data/spec/conred_spec.rb +53 -0
- metadata +87 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Janis Miezitis
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Conred
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'conred'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install conred
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/conred.gemspec
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/conred/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Janis Miezitis"]
|
6
|
+
gem.email = ["janjiss@gmail.com"]
|
7
|
+
gem.description = %q{Gem to remove repetative tasks}
|
8
|
+
gem.summary = %q{ConcepticHQ reusable code}
|
9
|
+
gem.homepage = "http://github.com/janjiss/conred"
|
10
|
+
|
11
|
+
gem.add_development_dependency "rspec"
|
12
|
+
gem.add_dependency "actionpack"
|
13
|
+
|
14
|
+
gem.files = `git ls-files`.split($\)
|
15
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
16
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
17
|
+
gem.name = "conred"
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
gem.version = Conred::VERSION
|
20
|
+
end
|
data/lib/conred.rb
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
require "conred/version"
|
2
|
+
require "action_view"
|
3
|
+
|
4
|
+
module Conred
|
5
|
+
|
6
|
+
class Helpers
|
7
|
+
def self.sanitize_and_trim(text, word_count = nil, omission = '...')
|
8
|
+
action_view = ActionView::Base.new
|
9
|
+
text = action_view.strip_tags(text)
|
10
|
+
if word_count
|
11
|
+
action_view.truncate(text, :length => word_count, :omission => omission)
|
12
|
+
else
|
13
|
+
text
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
class Video
|
19
|
+
attr_reader :code
|
20
|
+
|
21
|
+
def initialize(video_url)
|
22
|
+
@video_url = video_url
|
23
|
+
if youtube_video?
|
24
|
+
@code = video_from_youtube_url(video_url)
|
25
|
+
elsif vimeo_video?
|
26
|
+
@code = video_from_vimeo_url(video_url)
|
27
|
+
else
|
28
|
+
""
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def youtube_video?
|
33
|
+
if /^(http:\/\/)*(www\.)*(youtube.com|youtu.be)/ =~ @video_url
|
34
|
+
true
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def vimeo_video?
|
39
|
+
if /^(http:\/\/)*(www\.)*(vimeo.com)/ =~ @video_url
|
40
|
+
true
|
41
|
+
else
|
42
|
+
false
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
|
47
|
+
def video_from_vimeo_url(vimeo_url, width = 670, height = 450)
|
48
|
+
if vimeo_url[/youtu\.be\/([^\?]*)/]
|
49
|
+
vimeo_id = $1
|
50
|
+
else
|
51
|
+
vimeo_url[/^.*((v\/)|(embed\/)|(watch\?))\??v?=?([^\&\?]*).*/]
|
52
|
+
vimeo_id = $5
|
53
|
+
end
|
54
|
+
"<iframe
|
55
|
+
src='http://player.vimeo.com/video/#{vimeo_id}'
|
56
|
+
width='#{width}'
|
57
|
+
height='#{height}'
|
58
|
+
frameborder='0'
|
59
|
+
webkitAllowFullScreen
|
60
|
+
mozallowfullscreen
|
61
|
+
allowFullScreen>
|
62
|
+
</iframe>"
|
63
|
+
end
|
64
|
+
|
65
|
+
def video_from_youtube_url(youtube_url, width = 670, height = 450)
|
66
|
+
if youtube_url[/youtu\.be\/([^\?]*)/]
|
67
|
+
youtube_id = $1
|
68
|
+
else
|
69
|
+
youtube_url[/^.*((v\/)|(embed\/)|(watch\?))\??v?=?([^\&\?]*).*/]
|
70
|
+
youtube_id = $5
|
71
|
+
end
|
72
|
+
"<iframe
|
73
|
+
id='youtube_video'
|
74
|
+
title='YouTube video player'
|
75
|
+
width='#{width}'
|
76
|
+
height='#{height}'
|
77
|
+
src='http://www.youtube.com/embed/#{ youtube_id }'
|
78
|
+
frameborder='0'
|
79
|
+
allowfullscreen>
|
80
|
+
</iframe>".html_safe
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
class Links
|
85
|
+
|
86
|
+
end
|
87
|
+
end
|
data/spec/conred_spec.rb
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
require "conred"
|
2
|
+
|
3
|
+
describe Conred do
|
4
|
+
describe Conred::Helpers do
|
5
|
+
|
6
|
+
before do
|
7
|
+
@html_text = "<p>Evil string</p> <a href='http://evilsite.com'>Link to some evil site</a>"
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should return cleaned out text from html" do
|
11
|
+
Conred::Helpers.sanitize_and_trim(@html_text).should == "Evil string Link to some evil site"
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should truncate string to fourteen symbols" do
|
15
|
+
Conred::Helpers.sanitize_and_trim(@html_text, 14).should == "Evil string..."
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should use different truncate text at the ending of the line" do
|
19
|
+
Conred::Helpers.sanitize_and_trim(@html_text, 11, "").should == "Evil string"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe Conred::Video do
|
24
|
+
it "should match youtube video" do
|
25
|
+
Conred::Video.new("http://www.youtube.com/watch?v=SZt5RFzqEfY&feature=g-all-fbc").should be_youtube_video
|
26
|
+
Conred::Video.new("http://youtu.be/SZt5RFzqEfY").should be_youtube_video
|
27
|
+
Conred::Video.new("youtu.be/SZt5RFzqEfY").should be_youtube_video
|
28
|
+
Conred::Video.new("youtube.com/watch?v=SZt5RFzqEfY&feature=g-all-fbc").should be_youtube_video
|
29
|
+
Conred::Video.new("www.youtube.com/watch?v=SZt5RFzqEfY&feature=g-all-fbc").should be_youtube_video
|
30
|
+
Conred::Video.new("www.youtu.be/SZt5RFzqEfY").should be_youtube_video
|
31
|
+
Conred::Video.new("youtube.com/watch?v=SZt5RFzqEfY&feature=g-all-fbc").should be_youtube_video
|
32
|
+
Conred::Video.new("www.youtube.com/watch?v=SZt5RFzqEfY&feature=g-all-fbc").should be_youtube_video
|
33
|
+
Conred::Video.new("www.youtu.be/SZt5RFzqEfY").should be_youtube_video
|
34
|
+
end
|
35
|
+
it "should match vimeo video" do
|
36
|
+
Conred::Video.new("http://vimeo.com/12311233").youtube_video? == false
|
37
|
+
Conred::Video.new("vimeo.com/12311233").youtube_video? == false
|
38
|
+
Conred::Video.new("http://www.vimeo.com/12311233http://youtube.com/12311233").youtube_video? == false
|
39
|
+
Conred::Video.new("eeevil vimeo www.vimeo.com/12311233").youtube_video? == false
|
40
|
+
end
|
41
|
+
# it "should not match any video video" do
|
42
|
+
# Conred::Video.new("http://youtube.com/12311233").should not_be_vimeo_video
|
43
|
+
# Conred::Video.new("ftp://vimeo.com/12311233").should not_be_vimeo_video
|
44
|
+
# Conred::Video.new("http://www.youtube.com/watch?vimeo.com/12311233").should not_be_vimeo_video
|
45
|
+
# Conred::Video.new("evil string http://vimeo.com/12311233").should not_be_vimeo_video
|
46
|
+
# end
|
47
|
+
end
|
48
|
+
|
49
|
+
describe Conred::Links do
|
50
|
+
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: conred
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Janis Miezitis
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-09-19 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: actionpack
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
description: Gem to remove repetative tasks
|
47
|
+
email:
|
48
|
+
- janjiss@gmail.com
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- .gitignore
|
54
|
+
- Gemfile
|
55
|
+
- LICENSE
|
56
|
+
- README.md
|
57
|
+
- Rakefile
|
58
|
+
- conred.gemspec
|
59
|
+
- lib/conred.rb
|
60
|
+
- lib/conred/version.rb
|
61
|
+
- spec/conred_spec.rb
|
62
|
+
homepage: http://github.com/janjiss/conred
|
63
|
+
licenses: []
|
64
|
+
post_install_message:
|
65
|
+
rdoc_options: []
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
70
|
+
requirements:
|
71
|
+
- - ! '>='
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
76
|
+
requirements:
|
77
|
+
- - ! '>='
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0'
|
80
|
+
requirements: []
|
81
|
+
rubyforge_project:
|
82
|
+
rubygems_version: 1.8.24
|
83
|
+
signing_key:
|
84
|
+
specification_version: 3
|
85
|
+
summary: ConcepticHQ reusable code
|
86
|
+
test_files:
|
87
|
+
- spec/conred_spec.rb
|