cohesion 0.0.2 → 0.0.3

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.
@@ -21,5 +21,6 @@ Gem::Specification.new do |gem|
21
21
  gem.require_paths = ["lib"]
22
22
 
23
23
  gem.add_dependency "cobweb"
24
+ gem.add_dependency "ptools"
24
25
 
25
26
  end
@@ -1,10 +1,68 @@
1
1
  require "cohesion/version"
2
2
  require 'cobweb'
3
+ require 'ptools'
3
4
 
4
- Dir["tasks/**/*.rake"].each { |ext| load ext } if defined?(Rake)
5
+ require 'cohesion/railtie' if defined?(Rails)
5
6
 
6
7
  module Cohesion
7
8
  class Check
9
+
10
+ def self.rails_text
11
+ root_path = Rails.root.to_s
12
+ Dir.glob("**/*").each do |filename|
13
+ unless File.directory?(filename) || File.binary?(filename) || filename.ends_with?(".rdb")
14
+ f = File.open(filename, "r")
15
+ content = f.read()
16
+ f.close
17
+ if content =~ /(https?:\/\/[a-zA-Z0-9\.\/\-_%&\?]+)/
18
+ print "Checking #{$1} "
19
+ begin
20
+ status_code = Cobweb.new(:raise_exceptions => true).head($1)[:status_code].to_i
21
+ if status_code != 200
22
+ puts " [#{status_code}] \e[31m\u2717\e[0m"
23
+ else
24
+ puts "\e[32m\u2713\e[0m"
25
+ end
26
+ rescue SocketError
27
+ status_code = 0
28
+ puts " [DNS Failed] \e[31m\u2717\e[0m"
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
34
+
35
+ def self.rails_object
36
+ root_path = Rails.root.to_s
37
+ #app_name = Rails.application.name
38
+ #puts "Checking #{app_name}..."
39
+ app = CobwebSample::Application
40
+ app.routes.default_url_options = { :host => 'xxx.com' }
41
+
42
+ Dir.glob("app/controllers/**/*").each do |filename|
43
+ controller_name = filename.gsub(".rb","").split("/")[-1].classify
44
+ unless controller_name == "ApplicationController"
45
+ puts "Processing #{controller_name}"
46
+ controller = controller_name.constantize.new
47
+
48
+ view = ActionView::Base.new(ActionController::Base.view_paths, {}, controller)
49
+
50
+ view.view_paths = ActionController::Base.view_paths
51
+ view.extend ApplicationHelper
52
+ view.controller = controller
53
+ view.class_eval do
54
+ include ApplicationHelper
55
+ include app.routes.url_helpers
56
+ end
57
+ begin
58
+ puts view.render(:template => '/tests/index.html.erb')
59
+ rescue => e
60
+ puts "Error rendering view: #{e.message}"
61
+ end
62
+ end
63
+ end
64
+ end
65
+
8
66
  def self.site(url)
9
67
  errors = []
10
68
  failures = []
@@ -0,0 +1,12 @@
1
+ require 'cohesion'
2
+ require 'rails'
3
+
4
+ module Cohesion
5
+ class Railtie < Rails::Railtie
6
+ railtie_name :cohesion
7
+
8
+ rake_tasks do
9
+ load "tasks/cohesion.rake"
10
+ end
11
+ end
12
+ end
@@ -1,3 +1,3 @@
1
1
  module Cohesion
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -10,4 +10,12 @@ namespace :cohesion do
10
10
  end
11
11
  puts
12
12
  end
13
+
14
+ desc 'test rails app for broken links'
15
+ task :rails => :environment do
16
+
17
+ Cohesion::Check.rails_text
18
+
19
+
20
+ end
13
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cohesion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-28 00:00:00.000000000 Z
12
+ date: 2013-01-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cobweb
16
- requirement: &70143145459080 !ruby/object:Gem::Requirement
16
+ requirement: &70231406124400 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,18 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70143145459080
24
+ version_requirements: *70231406124400
25
+ - !ruby/object:Gem::Dependency
26
+ name: ptools
27
+ requirement: &70231406123100 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70231406123100
25
36
  description: Gem to test the cohesion of links within a rails site. The gem crawls
26
37
  the site and checks that external and internal links are valid
27
38
  email:
@@ -41,8 +52,9 @@ files:
41
52
  - bin/cohesion
42
53
  - cohesion.gemspec
43
54
  - lib/cohesion.rb
55
+ - lib/cohesion/railtie.rb
44
56
  - lib/cohesion/version.rb
45
- - lib/tasks/check.rake
57
+ - lib/tasks/cohesion.rake
46
58
  - script/rebuild
47
59
  - spec/lib/cohesion_spec.rb
48
60
  - spec/spec_helper.rb