forked from caelum/restfulie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
147 lines (124 loc) · 3.67 KB
/
Rakefile
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
require 'rubygems'
require 'rubygems/specification'
require 'rake'
require 'rake/gempackagetask'
require 'rake/rdoctask'
require 'rspec'
require 'rspec/core'
require 'rspec/core/rake_task'
require File.expand_path('lib/restfulie')
GEM = "restfulie"
GEM_VERSION = Restfulie::VERSION
SUMMARY = "Hypermedia aware resource based library in ruby (client side) and ruby on rails (server side)."
AUTHOR = "Guilherme Silveira, Caue Guerra, Luis Cipriani, Everton Ribeiro, George Guimaraes, Paulo Ahagon, Several contributors"
EMAIL = "[email protected]"
HOMEPAGE = "http://restfulie.caelumobjects.com"
spec = Gem::Specification.new do |s|
s.name = GEM
s.version = GEM_VERSION
s.platform = Gem::Platform::RUBY
s.summary = SUMMARY
s.require_paths = ['lib']
s.files = FileList['lib/**/*.rb', '[A-Z]*', 'lib/**/*.rng'].to_a
s.add_dependency("nokogiri", [">= 1.4.2"])
s.add_dependency("actionpack", [">= 2.3.2"])
s.add_dependency("activesupport", [">= 2.3.2"])
s.add_dependency("json_pure", [">= 1.2.4"])
s.author = AUTHOR
s.email = EMAIL
s.homepage = HOMEPAGE
end
module FakeServer
def self.wait_server(port=3000)
(1..15).each do
begin
Net::HTTP.get(URI.parse("http://localhost:#{port}/"))
return
rescue
sleep 1
end
end
raise "Waited for the server but it did not finish"
end
def self.start_sinatra
IO.popen("cd tests && ruby ./spec/requests/fake_server.rb") do |pipe|
wait_server 4567
yield
Process.kill 'INT', pipe.pid
end
end
def self.run(setup, process)
success = IO.popen(setup) do |pipe|
wait_server
success = system "rake spec"
Process.kill 'INT', pipe.pid
success
end
if !success
raise "Some of the specs failed"
end
end
def self.start_server_and_run_spec(target_dir)
success = Dir.chdir(File.join(File.dirname(__FILE__), target_dir)) do
system('rake db:drop db:create db:migrate')
self.run "rails server", "rake spec"
end
end
end
# optionally loads a task if the required gems exist
def optionally
begin
yield
rescue LoadError; end
end
namespace :test do
task :spec do
FakeServer.start_sinatra do
FakeServer.start_server_and_run_spec "tests"
end
end
task :integration do
FakeServer.start_server_and_run_spec "full-examples/rest_from_scratch/part_1"
FakeServer.start_server_and_run_spec "full-examples/rest_from_scratch/part_2"
FakeServer.start_server_and_run_spec "full-examples/rest_from_scratch/part_3"
end
task :all => ["spec","integration"]
# namespace :rcov do
# Spec::Rake::SpecTask.new('rcov') do |t|
# t.spec_opts = %w(-fs --color)
# t.spec_files = FileList['spec/units/**/*_spec.rb']
# t.rcov = true
# t.rcov_opts = ["-e", "/Library*", "-e", "~/.rvm", "-e", "spec", "-i", "bin"]
# end
# desc 'Run coverage test with fake server'
# task :run do
# start_server_and_invoke_test('test:rcov:rcov')
# end
# end
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
end
Rake::RDocTask.new("rdoc") do |rdoc|
rdoc.options << '--line-numbers' << '--inline-source'
end
optionally do
require 'yard'
YARD::Rake::YardocTask.new do |t|
t.files = ['lib/restfulie/**/*.rb', 'README.textile']
end
end
desc "Install the gem locally"
task :install => [:package] do
sh %{gem install pkg/#{GEM}-#{GEM_VERSION} -l}
end
desc "Create a gemspec file"
task :make_spec do
File.open("#{GEM}.gemspec", "w") do |file|
file.puts spec.to_ruby
end
end
desc "Builds the project"
task :build => ["install", "test:spec"]
desc "Default build will run specs"
task :default => :build