acts_as_acts_as 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/acts_as_acts_as.gemspec +61 -0
- data/lib/acts_as_acts_as.rb +1 -1
- metadata +2 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
@@ -0,0 +1,61 @@
|
|
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{acts_as_acts_as}
|
8
|
+
s.version = "0.0.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["phinze"]
|
12
|
+
s.date = %q{2010-01-11}
|
13
|
+
s.description = %q{Generate temporary tables and models, specify defined
|
14
|
+
and required methods, all sorts of fun stuff!}
|
15
|
+
s.email = %q{paul.t.hinze@gmail.com}
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE",
|
18
|
+
"README.rdoc"
|
19
|
+
]
|
20
|
+
s.files = [
|
21
|
+
".document",
|
22
|
+
".gitignore",
|
23
|
+
"LICENSE",
|
24
|
+
"README.rdoc",
|
25
|
+
"Rakefile",
|
26
|
+
"VERSION",
|
27
|
+
"acts_as_acts_as.gemspec",
|
28
|
+
"lib/acts_as_acts_as.rb",
|
29
|
+
"lib/acts_as_acts_as/group_macros.rb",
|
30
|
+
"lib/acts_as_acts_as/macros.rb",
|
31
|
+
"lib/acts_as_acts_as/requirements.rb",
|
32
|
+
"lib/acts_as_acts_as/requirements/collector.rb",
|
33
|
+
"lib/acts_as_acts_as/requirements/verifier.rb",
|
34
|
+
"spec/acts_as_acts_as_spec.rb",
|
35
|
+
"spec/spec.opts",
|
36
|
+
"spec/spec_helper.rb"
|
37
|
+
]
|
38
|
+
s.homepage = %q{http://github.com/phinze/acts_as_acts_as}
|
39
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
40
|
+
s.require_paths = ["lib"]
|
41
|
+
s.rubygems_version = %q{1.3.5}
|
42
|
+
s.summary = %q{Testing harness for acts_as plugins}
|
43
|
+
s.test_files = [
|
44
|
+
"spec/spec_helper.rb",
|
45
|
+
"spec/acts_as_acts_as_spec.rb"
|
46
|
+
]
|
47
|
+
|
48
|
+
if s.respond_to? :specification_version then
|
49
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
50
|
+
s.specification_version = 3
|
51
|
+
|
52
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
53
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
54
|
+
else
|
55
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
56
|
+
end
|
57
|
+
else
|
58
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
data/lib/acts_as_acts_as.rb
CHANGED
@@ -7,7 +7,7 @@ require 'acts_as_acts_as/group_macros'
|
|
7
7
|
# Example:
|
8
8
|
# require 'rubygems'
|
9
9
|
# require 'acts_as_acts_as'
|
10
|
-
if defined? Spec::Runner
|
10
|
+
if defined? Spec::Runner && Spec::Runner.respond_to?(:configure)
|
11
11
|
Spec::Runner.configure do |config|
|
12
12
|
config.include ActsAsActsAs::Macros, :type => :helper
|
13
13
|
config.extend ActsAsActsAs::GroupMacros, :type => :helper
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: acts_as_acts_as
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- phinze
|
@@ -40,6 +40,7 @@ files:
|
|
40
40
|
- README.rdoc
|
41
41
|
- Rakefile
|
42
42
|
- VERSION
|
43
|
+
- acts_as_acts_as.gemspec
|
43
44
|
- lib/acts_as_acts_as.rb
|
44
45
|
- lib/acts_as_acts_as/group_macros.rb
|
45
46
|
- lib/acts_as_acts_as/macros.rb
|