party_boy 0.1.0 → 0.1.1
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/Rakefile +1 -1
- data/VERSION +1 -1
- data/party_boy.gemspec +65 -0
- metadata +3 -2
data/Rakefile
CHANGED
|
@@ -6,7 +6,7 @@ begin
|
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
|
7
7
|
gem.name = "party_boy"
|
|
8
8
|
gem.summary = "Models relationships between AR models. Allows you to follow, friend, and block other AR's."
|
|
9
|
-
gem.description = "Models relationships between AR models. Allows you to follow, friend, and block other AR's. Consists of two
|
|
9
|
+
gem.description = "Models relationships between AR models. Allows you to follow, friend, and block other AR's. Consists of two mixins: acts_as_followable and acts_as_friend. These options allow an AR to inherit either a twitter-like follower system or a facebook-like friend system."
|
|
10
10
|
gem.email = "mdnelson30@gmail.com"
|
|
11
11
|
gem.homepage = "http://github.com/mnelson/party_boy"
|
|
12
12
|
gem.authors = ["Mike Nelson"]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/party_boy.gemspec
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
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{party_boy}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Mike Nelson"]
|
|
12
|
+
s.date = %q{2010-01-28}
|
|
13
|
+
s.description = %q{Models relationships between AR models. Allows you to follow, friend, and block other AR's. Consists of two mixins: acts_as_followable and acts_as_friend. These options allow an AR to inherit either a twitter-like follower system or a facebook-like friend system.}
|
|
14
|
+
s.email = %q{mdnelson30@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
|
+
"generators/party_boy/party_boy_generator.rb",
|
|
27
|
+
"generators/party_boy/templates/migration.rb",
|
|
28
|
+
"generators/party_boy/templates/model.rb",
|
|
29
|
+
"lib/party_boy.rb",
|
|
30
|
+
"party_boy.gemspec",
|
|
31
|
+
"social_lite.gemspec",
|
|
32
|
+
"spec/models/follower_class.rb",
|
|
33
|
+
"spec/models/friend_class.rb",
|
|
34
|
+
"spec/party_boy_spec.rb",
|
|
35
|
+
"spec/schema.rb",
|
|
36
|
+
"spec/spec.opts",
|
|
37
|
+
"spec/spec_helper.rb"
|
|
38
|
+
]
|
|
39
|
+
s.homepage = %q{http://github.com/mnelson/party_boy}
|
|
40
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
41
|
+
s.require_paths = ["lib"]
|
|
42
|
+
s.rubygems_version = %q{1.3.5}
|
|
43
|
+
s.summary = %q{Models relationships between AR models. Allows you to follow, friend, and block other AR's.}
|
|
44
|
+
s.test_files = [
|
|
45
|
+
"spec/models/follower_class.rb",
|
|
46
|
+
"spec/models/friend_class.rb",
|
|
47
|
+
"spec/party_boy_spec.rb",
|
|
48
|
+
"spec/schema.rb",
|
|
49
|
+
"spec/spec_helper.rb"
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
if s.respond_to? :specification_version then
|
|
53
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
54
|
+
s.specification_version = 3
|
|
55
|
+
|
|
56
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
57
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
|
58
|
+
else
|
|
59
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
60
|
+
end
|
|
61
|
+
else
|
|
62
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: party_boy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Nelson
|
|
@@ -22,7 +22,7 @@ dependencies:
|
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
23
|
version: 1.2.9
|
|
24
24
|
version:
|
|
25
|
-
description: "Models relationships between AR models. Allows you to follow, friend, and block other AR's. Consists of two
|
|
25
|
+
description: "Models relationships between AR models. Allows you to follow, friend, and block other AR's. Consists of two mixins: acts_as_followable and acts_as_friend. These options allow an AR to inherit either a twitter-like follower system or a facebook-like friend system."
|
|
26
26
|
email: mdnelson30@gmail.com
|
|
27
27
|
executables: []
|
|
28
28
|
|
|
@@ -42,6 +42,7 @@ files:
|
|
|
42
42
|
- generators/party_boy/templates/migration.rb
|
|
43
43
|
- generators/party_boy/templates/model.rb
|
|
44
44
|
- lib/party_boy.rb
|
|
45
|
+
- party_boy.gemspec
|
|
45
46
|
- social_lite.gemspec
|
|
46
47
|
- spec/models/follower_class.rb
|
|
47
48
|
- spec/models/friend_class.rb
|