acts_as_event_owner 1.0.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.
Files changed (29) hide show
  1. data/.gitignore +7 -0
  2. data/LICENSE +24 -0
  3. data/README.textile +205 -0
  4. data/Rakefile +28 -0
  5. data/acts_as_event_owner.gemspec +76 -0
  6. data/generators/acts_as_event_owner_migration/USAGE +6 -0
  7. data/generators/acts_as_event_owner_migration/acts_as_event_owner_migration_generator.rb +7 -0
  8. data/generators/acts_as_event_owner_migration/templates/acts_as_event_owner_migration.rb +38 -0
  9. data/lib/acts_as_event_owner/core.rb +38 -0
  10. data/lib/acts_as_event_owner/event_occurrence.rb +6 -0
  11. data/lib/acts_as_event_owner/event_specification.rb +152 -0
  12. data/lib/acts_as_event_owner/exception.rb +4 -0
  13. data/lib/acts_as_event_owner/railtie.rb +13 -0
  14. data/lib/acts_as_event_owner/version.rb +3 -0
  15. data/lib/acts_as_event_owner.rb +17 -0
  16. data/lib/generators/acts_as_event_owner/migration/migration_generator.rb +31 -0
  17. data/lib/generators/acts_as_event_owner/migration/templates/active_record/acts_as_event_owner_migration.rb +38 -0
  18. data/lib/generators/acts_as_event_owner_migration/USAGE +6 -0
  19. data/lib/generators/acts_as_event_owner_migration/acts_as_event_owner_migration_generator.rb +7 -0
  20. data/lib/generators/acts_as_event_owner_migration/templates/acts_as_event_owner_migration.rb +38 -0
  21. data/lib/tasks/acts_as_event_owner_tasks.rake +14 -0
  22. data/rails/init.rb +1 -0
  23. data/spec/acts_as_event_owner/core_spec.rb +62 -0
  24. data/spec/acts_as_event_owner/event_specification_spec.rb +365 -0
  25. data/spec/schema.rb +43 -0
  26. data/spec/spec_helper.rb +26 -0
  27. data/spec/support/model_builders.rb +13 -0
  28. data/spec/support/user.rb +3 -0
  29. metadata +106 -0
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: acts_as_event_owner
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 0
8
+ - 0
9
+ version: 1.0.0
10
+ platform: ruby
11
+ authors:
12
+ - Danny Burkes
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-10-17 00:00:00 -07:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: ri_cal
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ version: "0"
30
+ type: :runtime
31
+ version_requirements: *id001
32
+ description: Simple calendar events for any ActiveRecord model
33
+ email: dburkes@netable.com
34
+ executables: []
35
+
36
+ extensions: []
37
+
38
+ extra_rdoc_files:
39
+ - LICENSE
40
+ - README.textile
41
+ files:
42
+ - .gitignore
43
+ - LICENSE
44
+ - README.textile
45
+ - Rakefile
46
+ - acts_as_event_owner.gemspec
47
+ - generators/acts_as_event_owner_migration/USAGE
48
+ - generators/acts_as_event_owner_migration/acts_as_event_owner_migration_generator.rb
49
+ - generators/acts_as_event_owner_migration/templates/acts_as_event_owner_migration.rb
50
+ - lib/acts_as_event_owner.rb
51
+ - lib/acts_as_event_owner/core.rb
52
+ - lib/acts_as_event_owner/event_occurrence.rb
53
+ - lib/acts_as_event_owner/event_specification.rb
54
+ - lib/acts_as_event_owner/exception.rb
55
+ - lib/acts_as_event_owner/railtie.rb
56
+ - lib/acts_as_event_owner/version.rb
57
+ - lib/generators/acts_as_event_owner/migration/migration_generator.rb
58
+ - lib/generators/acts_as_event_owner/migration/templates/active_record/acts_as_event_owner_migration.rb
59
+ - lib/generators/acts_as_event_owner_migration/USAGE
60
+ - lib/generators/acts_as_event_owner_migration/acts_as_event_owner_migration_generator.rb
61
+ - lib/generators/acts_as_event_owner_migration/templates/acts_as_event_owner_migration.rb
62
+ - lib/tasks/acts_as_event_owner_tasks.rake
63
+ - rails/init.rb
64
+ - spec/acts_as_event_owner/core_spec.rb
65
+ - spec/acts_as_event_owner/event_specification_spec.rb
66
+ - spec/schema.rb
67
+ - spec/spec_helper.rb
68
+ - spec/support/model_builders.rb
69
+ - spec/support/user.rb
70
+ has_rdoc: true
71
+ homepage: http://github.com/dburkes/acts_as_event_owner
72
+ licenses: []
73
+
74
+ post_install_message:
75
+ rdoc_options:
76
+ - --charset=UTF-8
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ segments:
84
+ - 0
85
+ version: "0"
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ segments:
91
+ - 0
92
+ version: "0"
93
+ requirements: []
94
+
95
+ rubyforge_project:
96
+ rubygems_version: 1.3.6
97
+ signing_key:
98
+ specification_version: 3
99
+ summary: Simple calendar events for any ActiveRecord model
100
+ test_files:
101
+ - spec/acts_as_event_owner/core_spec.rb
102
+ - spec/acts_as_event_owner/event_specification_spec.rb
103
+ - spec/schema.rb
104
+ - spec/spec_helper.rb
105
+ - spec/support/model_builders.rb
106
+ - spec/support/user.rb