public
Description: Rack::Test is a layer on top of Rack's MockRequest similar to Merb's RequestHelper
Homepage:
Clone URL: git://github.com/brynary/rack-test.git
rack-test / Thorfile
100644 114 lines (94 sloc) 3.166 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
module GemHelpers
 
  def generate_gemspec
    $LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), "lib")))
    require "rack/test"
 
    Gem::Specification.new do |s|
      s.name = "rack-test"
      s.version = Rack::Test::VERSION
      s.author = "Bryan Helmkamp"
      s.email = "bryan@brynary.com"
      s.homepage = "http://github.com/brynary/rack-test"
      s.summary = "Simple testing API built on Rack"
      s.description = <<-EOS.strip
Rack::Test is a small, simple testing API for Rack apps. It can be used on its
own or as a reusable starting point for Web frameworks and testing libraries
to build on. Most of its initial functionality is an extraction of Merb 1.0's
request helpers feature.
      EOS
      s.rubyforge_project = "rack-test"
 
      require "git"
      repo = Git.open(".")
 
      s.files = normalize_files(repo.ls_files.keys - repo.lib.ignored_files)
      s.test_files = normalize_files(Dir['spec/**/*.rb'] - repo.lib.ignored_files)
 
      s.has_rdoc = true
      s.extra_rdoc_files = %w[README.rdoc MIT-LICENSE.txt]
 
      s.add_dependency "rack", ">= 1.0"
    end
  end
 
  def normalize_files(array)
    # only keep files, no directories, and sort
    array.select do |path|
      File.file?(path)
    end.sort
  end
 
  # Adds extra space when outputting an array. This helps create better version
  # control diffs, because otherwise it is all on the same line.
  def prettyify_array(gemspec_ruby, array_name)
    gemspec_ruby.gsub(/s\.#{array_name.to_s} = \[.+?\]/) do |match|
      leadin, files = match[0..-2].split("[")
      leadin + "[\n #{files.split(",").join(",\n ")}\n ]"
    end
  end
 
  def read_gemspec
    @read_gemspec ||= eval(File.read("rack-test.gemspec"))
  end
 
  def sh(command)
    puts command
    system command
  end
end
 
class Default < Thor
  include GemHelpers
 
  desc "gemspec", "Regenerate rack-test.gemspec"
  def gemspec
    File.open("rack-test.gemspec", "w") do |file|
      gemspec_ruby = generate_gemspec.to_ruby
      gemspec_ruby = prettyify_array(gemspec_ruby, :files)
      gemspec_ruby = prettyify_array(gemspec_ruby, :test_files)
      gemspec_ruby = prettyify_array(gemspec_ruby, :extra_rdoc_files)
 
      file.write gemspec_ruby
    end
 
    puts "Wrote gemspec to rack-test.gemspec"
    read_gemspec.validate
  end
 
  desc "build", "Build a rack-test gem"
  def build
    sh "gem build rack-test.gemspec"
    FileUtils.mkdir_p "pkg"
    FileUtils.mv read_gemspec.file_name, "pkg"
  end
 
  desc "install", "Install the latest built gem"
  def install
    sh "gem install --local pkg/#{read_gemspec.file_name}"
  end
 
  desc "release", "Release the current branch to GitHub and Gemcutter"
  def release
    gemspec
    build
    Release.new.tag
    Release.new.gem
  end
end
 
class Release < Thor
  include GemHelpers
 
  desc "tag", "Tag the gem on the origin server"
  def tag
    release_tag = "v#{read_gemspec.version}"
    sh "git tag -a #{release_tag} -m 'Tagging #{release_tag}'"
    sh "git push origin #{release_tag}"
  end
 
  desc "gem", "Push the gem to Gemcutter"
  def gem
    sh "gem push pkg/#{read_gemspec.file_name}"
  end
end