scudco-taza 0.8.6 → 0.8.7

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/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 0.8.7
2
+
3
+ * Added script/console Utility
4
+ * Integration with user_choices
5
+ * Attach to open IE instance
6
+
1
7
  === 0.8.6
2
8
 
3
9
  * Added feature to keep browser open after tests
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 6
2
+ :patch: 7
3
3
  :major: 0
4
4
  :minor: 8
@@ -24,6 +24,8 @@ class TazaGenerator < RubiGen::Base
24
24
  m.template "spec_helper.rb.erb", File.join("spec","spec_helper.rb")
25
25
  m.dependency "install_rubigen_scripts", [destination_root, 'taza'],
26
26
  :shebang => options[:shebang], :collision => :force
27
+ m.template "console.erb", File.join("script","console")
28
+ m.template "console.cmd.erb", File.join("script","console.cmd")
27
29
  end
28
30
  end
29
31
 
@@ -33,6 +35,7 @@ class TazaGenerator < RubiGen::Base
33
35
  m.directory File.join('spec','isolation')
34
36
  m.directory File.join('spec','integration')
35
37
  m.directory File.join('spec','story')
38
+ m.directory 'script'
36
39
  end
37
40
 
38
41
  protected
@@ -1,3 +1,3 @@
1
1
  ---
2
- :browser: :firefox
3
- :driver: :selenium
2
+ browser: firefox
3
+ driver: selenium
@@ -0,0 +1 @@
1
+ @ruby script/console %*
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+ irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'
3
+
4
+ libs = ""
5
+ Dir.glob(File.expand_path("#{File.dirname(__FILE__)}/../lib/sites/*.rb")).each do |file|
6
+ libs << " -r '#{file}'"
7
+ end
8
+
9
+ ENV['TAZA_ENV'] = ARGV.first || ENV['TAZA_ENV'] || 'isolation'
10
+ exec "#{irb} #{libs} --simple-prompt"
@@ -2,4 +2,14 @@ class Hash
2
2
  def convert_hash_keys_to_methods(fixture) # :nodoc:
3
3
  Taza::Entity.new(self,fixture)
4
4
  end
5
+
6
+ # Recursively replace key names that should be symbols with symbols.
7
+ def key_strings_to_symbols!
8
+ result = Hash.new
9
+ self.each_pair do |key,value|
10
+ value.key_strings_to_symbols! if value.kind_of? Hash and value.respond_to? :key_strings_to_symbols!
11
+ result[key.to_sym] = value
12
+ end
13
+ self.replace(result)
14
+ end
5
15
  end
data/lib/taza/browser.rb CHANGED
@@ -19,7 +19,7 @@ module Taza
19
19
  def self.create_watir(params)
20
20
  method = "watir_#{params[:browser]}"
21
21
  raise BrowserUnsupportedError unless self.respond_to?(method)
22
- watir = self.send(method).new
22
+ watir = self.send(method,params)
23
23
  watir
24
24
  end
25
25
 
@@ -28,19 +28,22 @@ module Taza
28
28
  Selenium::SeleniumDriver.new(params[:server_ip],params[:server_port],'*' + params[:browser].to_s,params[:timeout])
29
29
  end
30
30
 
31
- def self.watir_firefox
31
+ def self.watir_firefox(params)
32
32
  require 'firewatir'
33
- FireWatir::Firefox
33
+ FireWatir::Firefox.new
34
34
  end
35
35
 
36
- def self.watir_safari
36
+ def self.watir_safari(params)
37
37
  require 'safariwatir'
38
- Watir::Safari
38
+ Watir::Safari.new
39
39
  end
40
40
 
41
- def self.watir_ie
41
+ def self.watir_ie(params)
42
42
  require 'watir'
43
- Watir::IE
43
+ if params[:attach]
44
+ browser = Watir::IE.find(:title, //)
45
+ end
46
+ browser || Watir::IE.new
44
47
  end
45
48
  end
46
49
 
data/lib/taza/entity.rb CHANGED
@@ -42,7 +42,8 @@ module Taza
42
42
  end
43
43
 
44
44
  def to_hash
45
- @hash
45
+ cloned_hash = @hash.clone
46
+ cloned_hash.key_strings_to_symbols!
46
47
  end
47
48
 
48
49
  private
@@ -0,0 +1,25 @@
1
+ require 'user-choices'
2
+ module Taza
3
+ class Options < UserChoices::Command
4
+ include UserChoices
5
+
6
+ def add_sources(builder)
7
+ # builder.add_source(CommandLineSource, :usage, "Usage: ruby #{$0} [options] file1 [file2]")
8
+ builder.add_source(EnvironmentSource, :mapping, {:browser => 'BROWSER', :driver => 'DRIVER', :attach => 'ATTACH', :timeout => 'TIMEOUT', :server_ip => 'SERVER_IP', :server_port => 'SERVER_PORT'})
9
+ builder.add_source(YamlConfigFileSource, :from_complete_path, Settings.config_file_path)
10
+ end
11
+
12
+ def add_choices(builder)
13
+ builder.add_choice(:browser, :type=>:string, :default=>'firefox')
14
+ builder.add_choice(:driver, :type=>:string, :default=>'selenium')
15
+ builder.add_choice(:attach, :type=>:boolean, :default=>false)
16
+ builder.add_choice(:timeout, :type=>:string)
17
+ builder.add_choice(:server_ip, :type=>:string)
18
+ builder.add_choice(:server_port, :type=>:string)
19
+ end
20
+
21
+ def execute
22
+ @user_choices
23
+ end
24
+ end
25
+ end
data/lib/taza/settings.rb CHANGED
@@ -1,25 +1,11 @@
1
1
  require 'activesupport'
2
+ require 'taza/options'
2
3
 
3
4
  module Taza
4
5
  class Settings
5
- # The config settings for a site.yml file. ENV variables will override the settings:
6
- # Can override the browser in config via ENV['BROWSER']
7
- # Can override the driver in config via ENV['DRIVER']
8
- # Can override the timeout in config via ENV['TIMEOUT']
9
- # Can override the server_ip in config via ENV['SERVER_IP']
10
- # Can override the server_port in config via ENV['SERVER_PORT']
11
- #
12
- # Example:
13
6
  # Taza::Settings.Config('google')
14
7
  def self.config(site_name)
15
- env_settings = {}
16
- env_settings[:browser] = ENV['BROWSER'].to_sym if ENV['BROWSER']
17
- env_settings[:driver] = ENV['DRIVER'].to_sym if ENV['DRIVER']
18
- env_settings[:timeout] = ENV['TIMEOUT'] if ENV['TIMEOUT']
19
- env_settings[:server_ip] = ENV['SERVER_IP'] if ENV['SERVER_IP']
20
- env_settings[:server_port] = ENV['SERVER_PORT'] if ENV['SERVER_PORT']
21
- env_settings = {:browser=>:firefox,:driver=>:selenium}.merge(config_file.merge(env_settings))
22
- site_file(site_name).merge(env_settings)
8
+ site_file(site_name).merge(Options.new.execute)
23
9
  end
24
10
 
25
11
  # Loads the config file for the entire project and returns the hash.
data/spec/browser_spec.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  require 'spec/spec_helper'
2
2
  require 'taza/browser'
3
3
  require 'taza/settings'
4
+ require 'taza/options'
4
5
  require 'selenium'
5
6
  require 'watir'
6
7
 
@@ -25,7 +26,7 @@ describe Taza::Browser do
25
26
  Selenium::SeleniumDriver.expects(:new).with(anything,anything,'*opera',anything)
26
27
  Taza::Browser.create(:browser => browser_type, :driver => :selenium)
27
28
  end
28
-
29
+
29
30
  it "should raise selenium unsupported browser error" do
30
31
  Taza::Browser.create(:browser => :foo, :driver => :selenium)
31
32
  end
@@ -55,4 +56,31 @@ describe Taza::Browser do
55
56
  Taza::Browser.browser_class(:browser => :safari, :driver => :watir).should eql(Object)
56
57
  end
57
58
 
59
+ it "should be able to attach to an open IE instance" do
60
+ require 'watir'
61
+ browser = Object.new
62
+ Watir::IE.stubs(:find).returns(browser)
63
+ Watir::IE.stubs(:new).returns(browser)
64
+ old_browser = Watir::IE.new
65
+ new_browser = Taza::Browser.create(:browser => :ie, :driver => :watir, :attach => true)
66
+ new_browser.should eql(old_browser)
67
+ end
68
+
69
+ it "should be able to open a new IE instance if there is no instance to attach to" do
70
+ require 'watir'
71
+ browser = Object.new
72
+ Watir::IE.stubs(:find).returns()
73
+ Watir::IE.stubs(:new).returns(browser)
74
+ new_browser = Taza::Browser.create(:browser => :ie, :driver => :watir)
75
+ browser.nil?.should be_false
76
+ end
77
+ it "should be able to open a new IE instance if attach not specified" do
78
+ require 'watir'
79
+ foo = Object.new
80
+ bar = Object.new
81
+ Watir::IE.stubs(:find).returns(foo)
82
+ Watir::IE.stubs(:new).returns(bar)
83
+ new_browser = Taza::Browser.create(:browser => :ie, :driver => :watir)
84
+ new_browser.should_not eql(foo)
85
+ end
58
86
  end
data/spec/entity_spec.rb CHANGED
@@ -21,5 +21,15 @@ describe Taza::Entity do
21
21
  entity = Taza::Entity.new({:apple => 'pie' },nil)
22
22
  entity.to_hash[:apple].should eql('pie')
23
23
  end
24
+
25
+ it "should be able to do string-to-symbol conversion for hash keys using to_hash" do
26
+ entity = Taza::Entity.new({'apple' => 'pie' },nil)
27
+ entity.to_hash[:apple].should eql('pie')
28
+ end
29
+
30
+ it "should be able to do string-to-symbol conversion for hash keys" do
31
+ entity = Taza::Entity.new({'fruits' => {'apple' => 'pie' }},nil)
32
+ entity.to_hash[:fruits][:apple].should eql('pie')
33
+ end
24
34
 
25
35
  end
@@ -43,4 +43,14 @@ describe "Project Generator" do
43
43
  ENV['TAZA_ENV'].should eql('orange pie? is there such a thing?')
44
44
  end
45
45
 
46
+ it "should generate a console script" do
47
+ run_generator('taza', [APP_ROOT], generator_sources)
48
+ File.exists?(File.join(APP_ROOT,'script','console')).should be_true
49
+ end
50
+
51
+ it "should generate a windows console script" do
52
+ run_generator('taza', [APP_ROOT], generator_sources)
53
+ File.exists?(File.join(APP_ROOT,'script','console.cmd')).should be_true
54
+ end
55
+
46
56
  end
@@ -1 +1 @@
1
- :nothing: :something
1
+ nothing: something
@@ -1,6 +1,7 @@
1
1
  require 'spec/spec_helper'
2
2
  require 'rubygems'
3
3
  require 'taza/settings'
4
+ require 'taza/options'
4
5
  require 'taza/site'
5
6
 
6
7
  describe Taza::Settings do
@@ -13,24 +14,26 @@ describe Taza::Settings do
13
14
  ENV['TAZA_ENV'] = 'isolation'
14
15
  ENV['BROWSER'] = nil
15
16
  ENV['DRIVER'] = nil
17
+ ENV['ATTACH'] = nil
16
18
  end
17
19
 
18
20
  it "should use environment variable for browser settings" do
19
21
  Taza::Settings.stubs(:path).returns("spec/sandbox")
20
22
  ENV['BROWSER'] = 'foo'
21
- Taza::Settings.config(@site_name)[:browser].should eql(:foo)
23
+ Taza::Settings.config(@site_name)[:browser].should eql('foo')
22
24
  end
23
25
 
24
26
  it "should provide default values if no config file or environment settings provided" do
25
27
  Taza::Settings.stubs(:path).returns("spec/sandbox")
26
- Taza::Settings.config(@site_name)[:driver].should eql(:selenium)
27
- Taza::Settings.config(@site_name)[:browser].should eql(:firefox)
28
+ Taza::Settings.config(@site_name)[:driver].should eql('selenium')
29
+ Taza::Settings.config(@site_name)[:browser].should eql('firefox')
30
+ Taza::Settings.config(@site_name)[:attach].should eql(false)
28
31
  end
29
32
 
30
33
  it "should use environment variable for driver settings" do
31
34
  Taza::Settings.stubs(:path).returns("spec/sandbox")
32
35
  ENV['DRIVER'] = 'bar'
33
- Taza::Settings.config(@site_name)[:driver].should eql(:bar)
36
+ Taza::Settings.config(@site_name)[:driver].should eql('bar')
34
37
  end
35
38
 
36
39
  it "should be able to load the site yml" do
@@ -45,16 +48,16 @@ describe Taza::Settings do
45
48
  end
46
49
 
47
50
  it "should use the config file's variable for browser settings if no environment variable is set" do
48
- Taza::Settings.expects(:config_file).returns({:browser => :fu})
49
- Taza::Settings.stubs(:path).returns("spec/sandbox")
50
- Taza::Settings.config(@site_name)[:browser].should eql(:fu)
51
+ UserChoices::YamlConfigFileSource.any_instance.stubs(:format_specific_reading).returns({'browser' => 'fu'})
52
+ Taza::Settings.stubs(:path).returns("./spec/sandbox")
53
+ Taza::Settings.config(@site_name)[:browser].should eql('fu')
51
54
  end
52
55
 
53
56
  it "should use the ENV variables if specfied instead of config files" do
54
57
  ENV['BROWSER'] = 'opera'
55
- Taza::Settings.expects(:config_file).returns({:browser => :fu})
58
+ UserChoices::YamlConfigFileSource.any_instance.stubs(:format_specific_reading).returns({'browser' => 'fu'})
56
59
  Taza::Settings.stubs(:path).returns("spec/sandbox")
57
- Taza::Settings.config(@site_name)[:browser].should eql(:opera)
60
+ Taza::Settings.config(@site_name)[:browser].should eql('opera')
58
61
  end
59
62
 
60
63
  it "should use the correct config file to set defaults" do
@@ -72,9 +75,9 @@ describe Taza::Settings do
72
75
  end
73
76
 
74
77
  it "should use the config file's variable for driver settings if no environment variable is set" do
78
+ UserChoices::YamlConfigFileSource.any_instance.stubs(:format_specific_reading).returns({'driver' => 'fun'})
75
79
  Taza::Settings.stubs(:path).returns("spec/sandbox")
76
- Taza::Settings.stubs(:config_file).returns({:driver => :fun})
77
- Taza::Settings.config(@site_name)[:driver].should eql(:fun)
80
+ Taza::Settings.config(@site_name)[:driver].should eql('fun')
78
81
  end
79
82
 
80
83
  class SiteName < Taza::Site
data/spec/site_spec.rb CHANGED
@@ -2,6 +2,7 @@ require 'spec/spec_helper'
2
2
  require 'rubygems'
3
3
  require 'taza/site'
4
4
  require 'taza/settings'
5
+ require 'taza/options'
5
6
  require 'taza/browser'
6
7
  require 'taza/page'
7
8
  require 'taza/flow'
data/taza.gemspec CHANGED
@@ -1,16 +1,16 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{taza}
3
- s.version = "0.8.6"
3
+ s.version = "0.8.7"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Adam Anderson"]
7
- s.date = %q{2009-04-08}
7
+ s.date = %q{2009-05-07}
8
8
  s.default_executable = %q{taza}
9
9
  s.description = %q{Taza is an opionated browser-based testing framework.}
10
10
  s.email = %q{adamandersonis@gmail.com}
11
11
  s.executables = ["taza"]
12
12
  s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README"]
13
- s.files = ["History.txt", "Manifest.txt", "README.textile", "taza.gemspec", "VERSION.yml", "bin/taza", "generators/flow", "generators/flow/flow_generator.rb", "generators/flow/templates", "generators/flow/templates/flow.rb.erb", "generators/page", "generators/page/page_generator.rb", "generators/page/templates", "generators/page/templates/functional_page_spec.rb.erb", "generators/page/templates/page.rb.erb", "generators/partial", "generators/partial/partial_generator.rb", "generators/partial/templates", "generators/partial/templates/partial.rb.erb", "generators/site", "generators/site/site_generator.rb", "generators/site/templates", "generators/site/templates/site.rb.erb", "generators/site/templates/site.yml.erb", "lib/app_generators", "lib/app_generators/taza", "lib/app_generators/taza/taza_generator.rb", "lib/app_generators/taza/templates", "lib/app_generators/taza/templates/config.yml.erb", "lib/app_generators/taza/templates/rakefile.rb.erb", "lib/app_generators/taza/templates/spec_helper.rb.erb", "lib/extensions", "lib/extensions/array.rb", "lib/extensions/hash.rb", "lib/extensions/object.rb", "lib/extensions/string.rb", "lib/taza", "lib/taza/browser.rb", "lib/taza/browsers", "lib/taza/entity.rb", "lib/taza/fixture.rb", "lib/taza/fixtures.rb", "lib/taza/flow.rb", "lib/taza/page.rb", "lib/taza/settings.rb", "lib/taza/site.rb", "lib/taza/tasks.rb", "lib/taza.rb", "spec/array_spec.rb", "spec/browser_spec.rb", "spec/entity_spec.rb", "spec/fixtures_spec.rb", "spec/fixture_spec.rb", "spec/flow_generator_spec.rb", "spec/hash_spec.rb", "spec/object_spec.rb", "spec/page_generator_spec.rb", "spec/page_module_spec.rb", "spec/page_spec.rb", "spec/partial_generator_spec.rb", "spec/platform", "spec/platform/osx", "spec/platform/windows", "spec/project_generator_spec.rb", "spec/sandbox", "spec/sandbox/config", "spec/sandbox/config/config.yml", "spec/sandbox/config/site_name.yml", "spec/sandbox/config.yml", "spec/sandbox/fixtures", "spec/sandbox/fixtures/examples.yml", "spec/sandbox/fixtures/foos.yml", "spec/sandbox/fixtures/foo_site", "spec/sandbox/fixtures/foo_site/bars.yml", "spec/sandbox/fixtures/users.yml", "spec/sandbox/flows", "spec/sandbox/flows/batman.rb", "spec/sandbox/flows/robin.rb", "spec/sandbox/pages", "spec/sandbox/pages/foo", "spec/sandbox/pages/foo/bar.rb", "spec/sandbox/pages/foo/bay.rb", "spec/sandbox/pages/foo/baz.rb", "spec/sandbox/pages/foo/partials", "spec/sandbox/pages/foo/partials/partial_the_reckoning.rb", "spec/settings_spec.rb", "spec/site_fixtures_spec.rb", "spec/site_generator_spec.rb", "spec/site_spec.rb", "spec/spec_helper.rb", "spec/string_spec.rb", "spec/taza_bin_spec.rb", "spec/taza_tasks_spec.rb", "README"]
13
+ s.files = ["History.txt", "Manifest.txt", "README.textile", "taza.gemspec", "VERSION.yml", "bin/taza", "generators/flow", "generators/flow/flow_generator.rb", "generators/flow/templates", "generators/flow/templates/flow.rb.erb", "generators/page", "generators/page/page_generator.rb", "generators/page/templates", "generators/page/templates/functional_page_spec.rb.erb", "generators/page/templates/page.rb.erb", "generators/partial", "generators/partial/partial_generator.rb", "generators/partial/templates", "generators/partial/templates/partial.rb.erb", "generators/site", "generators/site/site_generator.rb", "generators/site/templates", "generators/site/templates/site.rb.erb", "generators/site/templates/site.yml.erb", "lib/app_generators", "lib/app_generators/taza", "lib/app_generators/taza/taza_generator.rb", "lib/app_generators/taza/templates", "lib/app_generators/taza/templates/config.yml.erb", "lib/app_generators/taza/templates/rakefile.rb.erb", "lib/app_generators/taza/templates/spec_helper.rb.erb", "lib/app_generators/taza/templates/console.cmd.erb", "lib/app_generators/taza/templates/console.erb", "lib/extensions", "lib/extensions/array.rb", "lib/extensions/hash.rb", "lib/extensions/object.rb", "lib/extensions/string.rb", "lib/taza", "lib/taza/browser.rb", "lib/taza/entity.rb", "lib/taza/fixture.rb", "lib/taza/fixtures.rb", "lib/taza/flow.rb", "lib/taza/page.rb", "lib/taza/settings.rb", "lib/taza/options.rb", "lib/taza/site.rb", "lib/taza/tasks.rb", "lib/taza.rb", "spec/array_spec.rb", "spec/browser_spec.rb", "spec/entity_spec.rb", "spec/fixtures_spec.rb", "spec/fixture_spec.rb", "spec/flow_generator_spec.rb", "spec/hash_spec.rb", "spec/object_spec.rb", "spec/page_generator_spec.rb", "spec/page_module_spec.rb", "spec/page_spec.rb", "spec/partial_generator_spec.rb", "spec/project_generator_spec.rb", "spec/sandbox", "spec/sandbox/config", "spec/sandbox/config/config.yml", "spec/sandbox/config/site_name.yml", "spec/sandbox/config.yml", "spec/sandbox/fixtures", "spec/sandbox/fixtures/examples.yml", "spec/sandbox/fixtures/foos.yml", "spec/sandbox/fixtures/foo_site", "spec/sandbox/fixtures/foo_site/bars.yml", "spec/sandbox/fixtures/users.yml", "spec/sandbox/flows", "spec/sandbox/flows/batman.rb", "spec/sandbox/flows/robin.rb", "spec/sandbox/pages", "spec/sandbox/pages/foo", "spec/sandbox/pages/foo/bar.rb", "spec/sandbox/pages/foo/bay.rb", "spec/sandbox/pages/foo/baz.rb", "spec/sandbox/pages/foo/partials", "spec/sandbox/pages/foo/partials/partial_the_reckoning.rb", "spec/settings_spec.rb", "spec/site_fixtures_spec.rb", "spec/site_generator_spec.rb", "spec/site_spec.rb", "spec/spec_helper.rb", "spec/string_spec.rb", "spec/taza_bin_spec.rb", "spec/taza_tasks_spec.rb", "README"]
14
14
  s.has_rdoc = true
15
15
  s.homepage = %q{http://github.com/scudco/taza}
16
16
  s.rdoc_options = ["--main", "README", "--inline-source", "--charset=UTF-8"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scudco-taza
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.6
4
+ version: 0.8.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Anderson
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-08 00:00:00 -07:00
12
+ date: 2009-05-07 00:00:00 -07:00
13
13
  default_executable: taza
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -104,6 +104,8 @@ files:
104
104
  - lib/app_generators/taza/templates/config.yml.erb
105
105
  - lib/app_generators/taza/templates/rakefile.rb.erb
106
106
  - lib/app_generators/taza/templates/spec_helper.rb.erb
107
+ - lib/app_generators/taza/templates/console.cmd.erb
108
+ - lib/app_generators/taza/templates/console.erb
107
109
  - lib/extensions
108
110
  - lib/extensions/array.rb
109
111
  - lib/extensions/hash.rb
@@ -111,13 +113,13 @@ files:
111
113
  - lib/extensions/string.rb
112
114
  - lib/taza
113
115
  - lib/taza/browser.rb
114
- - lib/taza/browsers
115
116
  - lib/taza/entity.rb
116
117
  - lib/taza/fixture.rb
117
118
  - lib/taza/fixtures.rb
118
119
  - lib/taza/flow.rb
119
120
  - lib/taza/page.rb
120
121
  - lib/taza/settings.rb
122
+ - lib/taza/options.rb
121
123
  - lib/taza/site.rb
122
124
  - lib/taza/tasks.rb
123
125
  - lib/taza.rb
@@ -133,9 +135,6 @@ files:
133
135
  - spec/page_module_spec.rb
134
136
  - spec/page_spec.rb
135
137
  - spec/partial_generator_spec.rb
136
- - spec/platform
137
- - spec/platform/osx
138
- - spec/platform/windows
139
138
  - spec/project_generator_spec.rb
140
139
  - spec/sandbox
141
140
  - spec/sandbox/config