pluginaweek-has_messages 0.4.0

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.
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pluginaweek-has_messages
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.0
5
+ platform: ruby
6
+ authors:
7
+ - Aaron Pfeifer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-08 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: state_machine
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.7.0
24
+ version:
25
+ description: Demonstrates a reference implementation for sending messages between users in ActiveRecord
26
+ email: aaron@pluginaweek.org
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files: []
32
+
33
+ files:
34
+ - app/models
35
+ - app/models/message.rb
36
+ - app/models/message_recipient.rb
37
+ - db/migrate
38
+ - db/migrate/001_create_messages.rb
39
+ - db/migrate/002_create_message_recipients.rb
40
+ - lib/has_messages.rb
41
+ - test/unit
42
+ - test/unit/message_test.rb
43
+ - test/unit/message_recipient_test.rb
44
+ - test/factory.rb
45
+ - test/app_root
46
+ - test/app_root/app
47
+ - test/app_root/app/models
48
+ - test/app_root/app/models/user.rb
49
+ - test/app_root/db
50
+ - test/app_root/db/migrate
51
+ - test/app_root/db/migrate/001_create_users.rb
52
+ - test/app_root/db/migrate/002_migrate_has_messages_to_version_2.rb
53
+ - test/app_root/config
54
+ - test/app_root/config/environment.rb
55
+ - test/test_helper.rb
56
+ - test/functional
57
+ - test/functional/has_messages_test.rb
58
+ - CHANGELOG.rdoc
59
+ - init.rb
60
+ - LICENSE
61
+ - Rakefile
62
+ - README.rdoc
63
+ has_rdoc: true
64
+ homepage: http://www.pluginaweek.org
65
+ post_install_message:
66
+ rdoc_options: []
67
+
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: "0"
75
+ version:
76
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: "0"
81
+ version:
82
+ requirements: []
83
+
84
+ rubyforge_project: pluginaweek
85
+ rubygems_version: 1.2.0
86
+ signing_key:
87
+ specification_version: 2
88
+ summary: Demonstrates a reference implementation for sending messages between users in ActiveRecord
89
+ test_files:
90
+ - test/unit/message_test.rb
91
+ - test/unit/message_recipient_test.rb
92
+ - test/functional/has_messages_test.rb