eol_scenarios 0.3.3 → 0.3.4

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.
Files changed (3) hide show
  1. data/VERSION +1 -1
  2. data/eol_scenarios.gemspec +80 -0
  3. metadata +4 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.3
1
+ 0.3.4
@@ -0,0 +1,80 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{eol_scenarios}
8
+ s.version = "0.3.4"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Jeremy Rice"]
12
+ s.date = %q{2010-06-10}
13
+ s.description = %q{Based on openrain-scenarios, q.v. Depends on hard-to-find gems at the moment: remi-indifferent-variable-hash and remi-simplecli}
14
+ s.email = %q{jrice.blue@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "eol_scenarios.gemspec",
27
+ "examples/additional_scenarios/load_me.rb",
28
+ "examples/additional_scenarios/load_me_too.rb",
29
+ "examples/more_scenarios/foo.rb",
30
+ "examples/scenarios/first.rb",
31
+ "examples/testing_dependencies/load_more_stuff.rb",
32
+ "examples/testing_dependencies/load_stuff.rb",
33
+ "examples/yaml_frontmatter/yaml_in_header.rb",
34
+ "lib/eol_scenarios.rb",
35
+ "lib/eol_scenarios/eol_scenario.rb",
36
+ "lib/eol_scenarios/eol_scenarios.rb",
37
+ "lib/eol_scenarios/spec.rb",
38
+ "lib/eol_scenarios/tasks.rb",
39
+ "rails_generators/scenario/USAGE",
40
+ "rails_generators/scenario/scenario_generator.rb",
41
+ "rails_generators/scenario/templates/scenario.erb",
42
+ "spec/scenario_spec.rb",
43
+ "spec/scenario_spec_spec.rb",
44
+ "spec/scenarios_spec.rb",
45
+ "spec/spec.opts",
46
+ "spec/spec_helper.rb"
47
+ ]
48
+ s.homepage = %q{http://github.com/JRice/eol_scenarios}
49
+ s.rdoc_options = ["--charset=UTF-8"]
50
+ s.require_paths = ["lib"]
51
+ s.rubygems_version = %q{1.3.7}
52
+ s.summary = %q{Execute arbitrary blocks of ruby code for loading testing scenarios}
53
+ s.test_files = [
54
+ "spec/scenario_spec.rb",
55
+ "spec/scenario_spec_spec.rb",
56
+ "spec/scenarios_spec.rb",
57
+ "spec/spec_helper.rb",
58
+ "examples/additional_scenarios/load_me.rb",
59
+ "examples/additional_scenarios/load_me_too.rb",
60
+ "examples/more_scenarios/foo.rb",
61
+ "examples/scenarios/first.rb",
62
+ "examples/testing_dependencies/load_more_stuff.rb",
63
+ "examples/testing_dependencies/load_stuff.rb",
64
+ "examples/yaml_frontmatter/yaml_in_header.rb"
65
+ ]
66
+
67
+ if s.respond_to? :specification_version then
68
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
69
+ s.specification_version = 3
70
+
71
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
72
+ s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
73
+ else
74
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
75
+ end
76
+ else
77
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
78
+ end
79
+ end
80
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eol_scenarios
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 3
10
- version: 0.3.3
9
+ - 4
10
+ version: 0.3.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jeremy Rice
@@ -50,6 +50,7 @@ files:
50
50
  - README.rdoc
51
51
  - Rakefile
52
52
  - VERSION
53
+ - eol_scenarios.gemspec
53
54
  - examples/additional_scenarios/load_me.rb
54
55
  - examples/additional_scenarios/load_me_too.rb
55
56
  - examples/more_scenarios/foo.rb