spectie 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :minor: 0
3
- :patch: 3
3
+ :patch: 4
4
4
  :major: 0
@@ -41,11 +41,20 @@ namespace :package do
41
41
 
42
42
  Jeweler::RubyforgeTasks.new do |rubyforge|
43
43
  rubyforge.doc_task = "rdoc"
44
- end
44
+ end
45
+
46
+ Jeweler::GemcutterTasks.new
45
47
  rescue LoadError
46
48
  puts "Jeweler not available. It's only needed if you're going to build the gem for this library. Install it with something like: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
47
49
  end
48
50
 
49
51
  desc "Cleans the project package artifacts, generates all files needed to build the gem, and builds it"
50
52
  task :full => ["clean", "rdoc", "gemspec", "build"]
53
+
54
+ namespace :release do
55
+ desc "Do the full packaging of the gem and release it everywhere"
56
+ task :full => ["package:full", "package:rubyforge:release", "package:gemcutter:release"] do
57
+
58
+ end
59
+ end
51
60
  end
@@ -1 +1 @@
1
- Thu, 22 Oct 2009 23:08:43 -0500
1
+ Thu, 22 Oct 2009 23:56:31 -0500
@@ -5,12 +5,12 @@
5
5
 
6
6
  <!--
7
7
 
8
- spectie 0.0.3
8
+ spectie 0.0.4
9
9
 
10
10
  -->
11
11
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
12
12
  <head>
13
- <title>spectie 0.0.3</title>
13
+ <title>spectie 0.0.4</title>
14
14
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
15
15
  </head>
16
16
  <frameset rows="20%, 80%">
@@ -0,0 +1,114 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{spectie}
8
+ s.version = "0.0.4"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Ryan Kinderman"]
12
+ s.date = %q{2009-10-22}
13
+ s.description = %q{ Spectie (rhymes with "necktie") is a pure Ruby acceptance testing framework for RSpec.
14
+ The philosophy of Spectie is that, since the business stakeholders on most projects
15
+ don't care about exactly how you test, you're free to write the acceptance tests on
16
+ a project how *you*, the developer, need to in order to ensure that the implementation
17
+ is correct, easily understood, and maintainable. Furthermore, since you're a developer,
18
+ the easiest, most straight-forward and maintainable way for you to write your tests is
19
+ by using the highly expressive language that you're already coding in for the project;
20
+ that's Ruby, baby!
21
+ }
22
+ s.email = %q{ryan@kinderman.net}
23
+ s.extra_rdoc_files = [
24
+ "LICENSE",
25
+ "README.rdoc"
26
+ ]
27
+ s.files = [
28
+ "LICENSE",
29
+ "README.rdoc",
30
+ "Rakefile",
31
+ "VERSION.yml",
32
+ "initialize.rb",
33
+ "lib/spectie.rb",
34
+ "lib/spectie/configuration.rb",
35
+ "lib/spectie/main.rb",
36
+ "lib/spectie/rails.rb",
37
+ "lib/spectie/rails_story_example_group.rb",
38
+ "lib/spectie/selenium.rb",
39
+ "lib/spectie/selenium/configuration.rb",
40
+ "lib/spectie/selenium/story_example_group.rb",
41
+ "lib/spectie/story_example_group_methods.rb",
42
+ "rake_tasks/package.rake",
43
+ "rake_tasks/publish.rake",
44
+ "rake_tasks/spec.rake",
45
+ "rake_tasks/utility.rake",
46
+ "rdoc/classes/Spectie.html",
47
+ "rdoc/classes/Spectie/Configuration.html",
48
+ "rdoc/classes/Spectie/Configuration/ForScenarios.html",
49
+ "rdoc/classes/Spectie/Configuration/Selenium.html",
50
+ "rdoc/classes/Spectie/Main.html",
51
+ "rdoc/classes/Spectie/RailsStoryExampleGroup.html",
52
+ "rdoc/classes/Spectie/SeleniumStoryExampleGroup.html",
53
+ "rdoc/classes/Spectie/StoryExampleGroupMethods.html",
54
+ "rdoc/created.rid",
55
+ "rdoc/files/README_rdoc.html",
56
+ "rdoc/files/lib/spectie/configuration_rb.html",
57
+ "rdoc/files/lib/spectie/main_rb.html",
58
+ "rdoc/files/lib/spectie/rails_rb.html",
59
+ "rdoc/files/lib/spectie/rails_story_example_group_rb.html",
60
+ "rdoc/files/lib/spectie/selenium/configuration_rb.html",
61
+ "rdoc/files/lib/spectie/selenium/story_example_group_rb.html",
62
+ "rdoc/files/lib/spectie/selenium_rb.html",
63
+ "rdoc/files/lib/spectie/story_example_group_methods_rb.html",
64
+ "rdoc/files/lib/spectie_rb.html",
65
+ "rdoc/fr_class_index.html",
66
+ "rdoc/fr_file_index.html",
67
+ "rdoc/fr_method_index.html",
68
+ "rdoc/index.html",
69
+ "rdoc/rdoc-style.css",
70
+ "script/selenium_webapp",
71
+ "script/spec",
72
+ "spec/example_run_state_tracking.rb",
73
+ "spec/selenium_config.rb",
74
+ "spec/spec_helper.rb",
75
+ "spec/spectie/rails_helper.rb",
76
+ "spec/spectie/rails_story_example_group_spec.rb",
77
+ "spec/spectie/selenium/configuration_spec.rb",
78
+ "spec/spectie/selenium/spec_helper.rb",
79
+ "spec/spectie/selenium/story_example_group_spec.rb",
80
+ "spec/spectie/spec_helper.rb",
81
+ "spec/spectie/story_example_group_methods_spec.rb",
82
+ "spec/spectie_spec.rb",
83
+ "spec/support/rails_app/controllers/application_controller.rb",
84
+ "spectie.gemspec",
85
+ "tags"
86
+ ]
87
+ s.homepage = %q{http://github.com/ryankinderman/spectie}
88
+ s.rdoc_options = ["--charset=UTF-8"]
89
+ s.require_paths = ["lib"]
90
+ s.required_ruby_version = Gem::Requirement.new(">= 1.8.6")
91
+ s.rubyforge_project = %q{kinderman}
92
+ s.rubygems_version = %q{1.3.5}
93
+ s.summary = %q{A Ruby integration testing framework written on top of RSpec.}
94
+ s.test_files = [
95
+ "spec/spectie/rails_story_example_group_spec.rb",
96
+ "spec/spectie/selenium/configuration_spec.rb",
97
+ "spec/spectie/selenium/story_example_group_spec.rb",
98
+ "spec/spectie/story_example_group_methods_spec.rb",
99
+ "spec/spectie_spec.rb"
100
+ ]
101
+
102
+ if s.respond_to? :specification_version then
103
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
104
+ s.specification_version = 3
105
+
106
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
107
+ s.add_runtime_dependency(%q<rspec>, [">= 1.2.7"])
108
+ else
109
+ s.add_dependency(%q<rspec>, [">= 1.2.7"])
110
+ end
111
+ else
112
+ s.add_dependency(%q<rspec>, [">= 1.2.7"])
113
+ end
114
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spectie
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Kinderman
@@ -88,6 +88,7 @@ files:
88
88
  - spec/spectie/story_example_group_methods_spec.rb
89
89
  - spec/spectie_spec.rb
90
90
  - spec/support/rails_app/controllers/application_controller.rb
91
+ - spectie.gemspec
91
92
  - tags
92
93
  has_rdoc: true
93
94
  homepage: http://github.com/ryankinderman/spectie