actic 0.0.2 → 0.0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/MIT-LICENSE +1 -1
  2. data/README.rdoc +3 -0
  3. data/Rakefile +26 -1
  4. data/lib/actic.rb +1 -177
  5. data/lib/actic/engine.rb +3 -3
  6. data/lib/app/models/alarm.rb +10 -0
  7. data/lib/app/models/calendar.rb +40 -0
  8. data/lib/app/models/component.rb +99 -0
  9. data/lib/app/models/event.rb +58 -0
  10. data/lib/app/models/free_busy.rb +3 -0
  11. data/lib/app/models/inspectable.rb +2 -0
  12. data/lib/app/models/journal.rb +4 -0
  13. data/lib/app/models/pattern.rb +7 -0
  14. data/lib/app/models/patterns/ex_date.rb +5 -0
  15. data/lib/app/models/patterns/ex_rule.rb +5 -0
  16. data/lib/app/models/patterns/r_date.rb +5 -0
  17. data/lib/app/models/patterns/r_rule.rb +5 -0
  18. data/lib/app/models/sub_calendar.rb +3 -0
  19. data/lib/app/models/todo.rb +5 -0
  20. data/lib/migrate/20101217173535_create_components.rb +87 -0
  21. data/lib/migrate/20101218062739_create_inspectables.rb +12 -0
  22. metadata +43 -38
  23. data/.DS_Store +0 -0
  24. data/.idea/.rakeTasks +0 -7
  25. data/.idea/actic.iml +0 -33
  26. data/.idea/encodings.xml +0 -5
  27. data/.idea/misc.xml +0 -8
  28. data/.idea/modules.xml +0 -9
  29. data/.idea/vcs.xml +0 -8
  30. data/.idea/workspace.xml +0 -373
  31. data/Gemfile +0 -29
  32. data/Gemfile.lock +0 -21
  33. data/README +0 -52
  34. data/actic.gemspec +0 -23
  35. data/lib/actic/models/actic_calendar.rb +0 -8
  36. data/lib/actic/models/event.rb +0 -5
  37. data/lib/actic/models/sub_component.rb +0 -5
  38. data/lib/actic/railtie.rb +0 -62
  39. data/lib/actic/version.rb +0 -3
  40. data/lib/generators/actic/USAGE +0 -8
  41. data/lib/generators/actic/actic_generator.rb +0 -3
  42. data/lib/generators/actic_calendar/USAGE +0 -8
  43. data/lib/generators/actic_calendar/actic_calendar_generator.rb +0 -51
  44. data/lib/generators/actic_calendar/templates/actic_calendar.rb.txt +0 -4
  45. data/lib/generators/actic_calendar/templates/migration.rb.txt +0 -20
  46. data/lib/generators/actic_subcomponent/USAGE +0 -8
  47. data/lib/generators/actic_subcomponent/actic_subcomponent_generator.rb +0 -13
  48. data/lib/generators/actic_subcomponent/templates/event.rb.txt +0 -2
  49. data/lib/generators/actic_subcomponent/templates/journal.rb.txt +0 -2
@@ -0,0 +1,2 @@
1
+ class Inspectable < ActiveRecord::Base
2
+ end
@@ -0,0 +1,4 @@
1
+ class Journal < Component
2
+ has_many :components, :as => :parent
3
+ has_many :alarms, :as => :owner
4
+ end
@@ -0,0 +1,7 @@
1
+ class Pattern < ActiveRecord::Base
2
+ belongs_to :owner, :polymorphic => true
3
+
4
+ def owner_type=(sType)
5
+ super(sType.to_s.classify.constantize.base_class.to_s)
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ module Patterns
2
+ class ExDate < Pattern
3
+
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module Patterns
2
+ class ExRule < Pattern
3
+
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module Patterns
2
+ class RDate < Pattern
3
+
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module Patterns
2
+ class RRule < Pattern
3
+
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ class SubCalendar < Calendar
2
+
3
+ end
@@ -0,0 +1,5 @@
1
+ class Todo < Component
2
+ belongs_to :calendar
3
+ has_many :alarms, :as => :owner
4
+ end
5
+
@@ -0,0 +1,87 @@
1
+ class CreateComponents < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :calendars do |t|
4
+ t.string :ical
5
+
6
+ t.timestamps
7
+ end
8
+
9
+ create_table :events do |t|
10
+ t.references :calendar
11
+ t.string :dtstart
12
+ t.string :dtend
13
+ t.string :ical
14
+
15
+ t.timestamps
16
+ end
17
+
18
+ create_table :patterns do |t|
19
+ t.references :owner, :polymorphic => true
20
+ t.string :type
21
+ t.string :rule
22
+ end
23
+
24
+ create_table :journals do |t|
25
+ t.references :calendar
26
+ t.string :dtstart
27
+ t.string :dtend
28
+ t.string :ical
29
+ t.string :categories
30
+ t.string :description
31
+
32
+ t.timestamps
33
+ end
34
+
35
+ create_table :todos do |t|
36
+ t.references :calendar
37
+ t.string :dtstart
38
+ t.string :dtend
39
+ t.string :ical
40
+
41
+ t.timestamps
42
+ end
43
+
44
+ create_table :free_busies do |t|
45
+ t.references :calendar
46
+ t.string :dtstart
47
+ t.string :dtend
48
+ t.string :ical
49
+
50
+ t.timestamps
51
+ end
52
+
53
+
54
+ # Alarm components can belong to other 'owner' components
55
+ create_table :alarms do |t|
56
+ t.references :calendar
57
+ t.string :owner_type
58
+ t.integer :owner_id
59
+ t.string :dtstart
60
+ t.string :dtend
61
+ t.string :ical
62
+
63
+ t.timestamps
64
+ end
65
+ end
66
+
67
+ def self.down
68
+ drop_table :calendars
69
+ drop_table :events
70
+ drop_table :journals
71
+ drop_table :todos
72
+ drop_table :alarms
73
+ end
74
+ end
75
+
76
+ =begin
77
+ def self.up
78
+ create_table :components do |t|
79
+ t.string :type
80
+ t.string :parent_type
81
+ t.integer :parent_id
82
+ t.string :ical
83
+
84
+ t.timestamps
85
+ end
86
+ end
87
+ =end
@@ -0,0 +1,12 @@
1
+ class CreateInspectables < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :inspectables do |t|
4
+
5
+ t.timestamps
6
+ end
7
+ end
8
+
9
+ def self.down
10
+ drop_table :inspectables
11
+ end
12
+ end
metadata CHANGED
@@ -6,20 +6,20 @@ version: !ruby/object:Gem::Version
6
6
  - 0
7
7
  - 0
8
8
  - 2
9
- version: 0.0.2
9
+ - 1
10
+ version: 0.0.2.1
10
11
  platform: ruby
11
- authors:
12
- - Steve A Martin
12
+ authors: []
13
+
13
14
  autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-10-31 00:00:00 +01:00
18
+ date: 2010-12-21 00:00:00 +00:00
18
19
  default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
22
  name: ri_cal
22
- prerelease: false
23
23
  requirement: &id001 !ruby/object:Gem::Requirement
24
24
  none: false
25
25
  requirements:
@@ -31,10 +31,23 @@ dependencies:
31
31
  - 7
32
32
  version: 0.8.7
33
33
  type: :runtime
34
+ prerelease: false
34
35
  version_requirements: *id001
35
- description: This gem includes the actic orm wrapperb and a series of generators, it is purely for rails 3
36
+ - !ruby/object:Gem::Dependency
37
+ name: recurs
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ segments:
44
+ - 0
45
+ version: "0"
46
+ type: :runtime
47
+ prerelease: false
48
+ version_requirements: *id002
49
+ description: Insert Actic description.
36
50
  email:
37
- - steve@shakewell.co.uk
38
51
  executables: []
39
52
 
40
53
  extensions: []
@@ -42,39 +55,29 @@ extensions: []
42
55
  extra_rdoc_files: []
43
56
 
44
57
  files:
45
- - .DS_Store
46
- - .idea/.rakeTasks
47
- - .idea/actic.iml
48
- - .idea/encodings.xml
49
- - .idea/misc.xml
50
- - .idea/modules.xml
51
- - .idea/vcs.xml
52
- - .idea/workspace.xml
53
- - Gemfile
54
- - Gemfile.lock
58
+ - lib/actic/engine.rb
59
+ - lib/actic.rb
60
+ - lib/app/models/alarm.rb
61
+ - lib/app/models/calendar.rb
62
+ - lib/app/models/component.rb
63
+ - lib/app/models/event.rb
64
+ - lib/app/models/free_busy.rb
65
+ - lib/app/models/inspectable.rb
66
+ - lib/app/models/journal.rb
67
+ - lib/app/models/pattern.rb
68
+ - lib/app/models/patterns/ex_date.rb
69
+ - lib/app/models/patterns/ex_rule.rb
70
+ - lib/app/models/patterns/r_date.rb
71
+ - lib/app/models/patterns/r_rule.rb
72
+ - lib/app/models/sub_calendar.rb
73
+ - lib/app/models/todo.rb
74
+ - lib/migrate/20101217173535_create_components.rb
75
+ - lib/migrate/20101218062739_create_inspectables.rb
55
76
  - MIT-LICENSE
56
- - README
57
77
  - Rakefile
58
- - actic.gemspec
59
- - lib/actic.rb
60
- - lib/actic/engine.rb
61
- - lib/actic/models/actic_calendar.rb
62
- - lib/actic/models/event.rb
63
- - lib/actic/models/sub_component.rb
64
- - lib/actic/railtie.rb
65
- - lib/actic/version.rb
66
- - lib/generators/actic/USAGE
67
- - lib/generators/actic/actic_generator.rb
68
- - lib/generators/actic_calendar/USAGE
69
- - lib/generators/actic_calendar/actic_calendar_generator.rb
70
- - lib/generators/actic_calendar/templates/actic_calendar.rb.txt
71
- - lib/generators/actic_calendar/templates/migration.rb.txt
72
- - lib/generators/actic_subcomponent/USAGE
73
- - lib/generators/actic_subcomponent/actic_subcomponent_generator.rb
74
- - lib/generators/actic_subcomponent/templates/event.rb.txt
75
- - lib/generators/actic_subcomponent/templates/journal.rb.txt
78
+ - README.rdoc
76
79
  has_rdoc: true
77
- homepage: http://rubygems.org/gems/actic
80
+ homepage:
78
81
  licenses: []
79
82
 
80
83
  post_install_message:
@@ -87,6 +90,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
87
90
  requirements:
88
91
  - - ">="
89
92
  - !ruby/object:Gem::Version
93
+ hash: -1966887561958811626
90
94
  segments:
91
95
  - 0
92
96
  version: "0"
@@ -95,6 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
99
  requirements:
96
100
  - - ">="
97
101
  - !ruby/object:Gem::Version
102
+ hash: -1966887561958811626
98
103
  segments:
99
104
  - 0
100
105
  version: "0"
@@ -104,6 +109,6 @@ rubyforge_project: actic
104
109
  rubygems_version: 1.3.7
105
110
  signing_key:
106
111
  specification_version: 3
107
- summary: A fusion of ORM and ical
112
+ summary: Insert Actic summary.
108
113
  test_files: []
109
114
 
data/.DS_Store DELETED
Binary file
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Settings><!--This file was automatically generated by Ruby plugin.
3
- You are allowed to:
4
- 1. Remove rake task
5
- 2. Add existing rake tasks
6
- To add existing rake tasks automatically delete this file and reload the project.
7
- --><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Remove rdoc products" fullCmd="clobber_rdoc" taksId="clobber_rdoc" /><RakeTask description="Default: run unit tests" fullCmd="default" taksId="default" /><RakeTask description="Build the rdoc HTML Files" fullCmd="rdoc" taksId="rdoc" /><RakeTask description="Force a rebuild of the RDOC files" fullCmd="rerdoc" taksId="rerdoc" /><RakeTask description="Run tests" fullCmd="test" taksId="test" /><RakeTask description="" fullCmd="clobber" taksId="clobber" /><RakeTask description="" fullCmd="rdoc/index.html" taksId="rdoc/index.html" /></RakeGroup></Settings>
@@ -1,33 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="RUBY_MODULE" version="4">
3
- <component name="NewModuleRootManager">
4
- <content url="file://$MODULE_DIR$" />
5
- <orderEntry type="inheritedJdk" />
6
- <orderEntry type="sourceFolder" forTests="false" />
7
- <orderEntry type="library" scope="PROVIDED" name="[gem] rake (v0.8.7, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174@global/gems/rake-0.8.7)" level="application" />
8
- <orderEntry type="library" scope="PROVIDED" name="[gem] bundler (v0.9.26, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/bundler-0.9.26)" level="application" />
9
- <orderEntry type="library" scope="PROVIDED" name="[gem] rails (v3.0.0.beta4, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/rails-3.0.0.beta4)" level="application" />
10
- <orderEntry type="library" scope="PROVIDED" name="[gem] mail (v2.2.5, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/mail-2.2.5)" level="application" />
11
- <orderEntry type="library" scope="PROVIDED" name="[gem] mime-types (v1.16, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/mime-types-1.16)" level="application" />
12
- <orderEntry type="library" scope="PROVIDED" name="[gem] railties (v3.0.0.beta4, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/railties-3.0.0.beta4)" level="application" />
13
- <orderEntry type="library" scope="PROVIDED" name="[gem] rack-test (v0.5.4, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/rack-test-0.5.4)" level="application" />
14
- <orderEntry type="library" scope="PROVIDED" name="[gem] activerecord (v3.0.0.beta4, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/activerecord-3.0.0.beta4)" level="application" />
15
- <orderEntry type="library" scope="PROVIDED" name="[gem] actionmailer (v3.0.0.beta4, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/actionmailer-3.0.0.beta4)" level="application" />
16
- <orderEntry type="library" scope="PROVIDED" name="[gem] rack (v1.1.0, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/rack-1.1.0)" level="application" />
17
- <orderEntry type="library" scope="PROVIDED" name="[gem] tzinfo (v0.3.22, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/tzinfo-0.3.22)" level="application" />
18
- <orderEntry type="library" scope="PROVIDED" name="[gem] i18n (v0.4.1, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/i18n-0.4.1)" level="application" />
19
- <orderEntry type="library" scope="PROVIDED" name="[gem] abstract (v1.0.0, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/abstract-1.0.0)" level="application" />
20
- <orderEntry type="library" scope="PROVIDED" name="[gem] actionpack (v3.0.0.beta4, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/actionpack-3.0.0.beta4)" level="application" />
21
- <orderEntry type="library" scope="PROVIDED" name="[gem] thor (v0.13.7, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/thor-0.13.7)" level="application" />
22
- <orderEntry type="library" scope="PROVIDED" name="[gem] polyglot (v0.3.1, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/polyglot-0.3.1)" level="application" />
23
- <orderEntry type="library" scope="PROVIDED" name="[gem] activesupport (v3.0.0.beta4, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/activesupport-3.0.0.beta4)" level="application" />
24
- <orderEntry type="library" scope="PROVIDED" name="[gem] erubis (v2.6.6, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/erubis-2.6.6)" level="application" />
25
- <orderEntry type="library" scope="PROVIDED" name="[gem] activemodel (v3.0.0.beta4, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/activemodel-3.0.0.beta4)" level="application" />
26
- <orderEntry type="library" scope="PROVIDED" name="[gem] arel (v0.4.0, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/arel-0.4.0)" level="application" />
27
- <orderEntry type="library" scope="PROVIDED" name="[gem] builder (v2.1.2, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/builder-2.1.2)" level="application" />
28
- <orderEntry type="library" scope="PROVIDED" name="[gem] rack-mount (v0.6.6, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/rack-mount-0.6.6)" level="application" />
29
- <orderEntry type="library" scope="PROVIDED" name="[gem] activeresource (v3.0.0.beta4, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/activeresource-3.0.0.beta4)" level="application" />
30
- <orderEntry type="library" scope="PROVIDED" name="[gem] treetop (v1.4.8, /Users/stevecaney/.rvm/gems/ruby-1.8.7-p174/gems/treetop-1.4.8)" level="application" />
31
- </component>
32
- </module>
33
-
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
4
- </project>
5
-
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="DependencyValidationManager">
4
- <option name="SKIP_IMPORT_STATEMENTS" value="false" />
5
- </component>
6
- <component name="ProjectRootManager" version="2" project-jdk-name="Ruby SDK 1.8.7 (1)" project-jdk-type="RUBY_SDK" />
7
- </project>
8
-
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/actic.iml" filepath="$PROJECT_DIR$/.idea/actic.iml" />
6
- </modules>
7
- </component>
8
- </project>
9
-
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="" vcs="" />
5
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
6
- </component>
7
- </project>
8
-
@@ -1,373 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ChangeListManager">
4
- <list default="true" id="d3cf5bac-e354-4650-bb9d-a7a20e63c8a1" name="Default" comment="">
5
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/actic.iml" afterPath="$PROJECT_DIR$/.idea/actic.iml" />
6
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
7
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/Gemfile" afterPath="$PROJECT_DIR$/Gemfile" />
8
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/actic.gemspec" afterPath="$PROJECT_DIR$/actic.gemspec" />
9
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/actic.rb" afterPath="$PROJECT_DIR$/lib/actic.rb" />
10
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/actic/version.rb" afterPath="$PROJECT_DIR$/lib/actic/version.rb" />
11
- </list>
12
- <ignored path=".idea/workspace.xml" />
13
- <ignored path="actic.iws" />
14
- <option name="TRACKING_ENABLED" value="true" />
15
- <option name="SHOW_DIALOG" value="false" />
16
- <option name="HIGHLIGHT_CONFLICTS" value="true" />
17
- <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
18
- <option name="LAST_RESOLUTION" value="IGNORE" />
19
- </component>
20
- <component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
21
- <component name="CreatePatchCommitExecutor">
22
- <option name="PATCH_PATH" value="" />
23
- <option name="REVERSE_PATCH" value="false" />
24
- </component>
25
- <component name="DaemonCodeAnalyzer">
26
- <disable_hints />
27
- </component>
28
- <component name="FavoritesManager">
29
- <favorites_list name="actic" />
30
- </component>
31
- <component name="FileColors" enabled="true" enabledForTabs="true" showNonProject="true">
32
- <fileColor scope="Non-Project Files" color="ffffe4" />
33
- </component>
34
- <component name="FileEditorManager">
35
- <leaf>
36
- <file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
37
- <entry file="file://$PROJECT_DIR$/Gemfile">
38
- <provider selected="true" editor-type-id="text-editor">
39
- <state line="1" column="51" selection-start="29" selection-end="29" vertical-scroll-proportion="0.0">
40
- <folding />
41
- </state>
42
- </provider>
43
- </entry>
44
- </file>
45
- <file leaf-file-name="actic.rb" pinned="false" current="false" current-in-tab="false">
46
- <entry file="file://$PROJECT_DIR$/lib/actic.rb">
47
- <provider selected="true" editor-type-id="text-editor">
48
- <state line="11" column="18" selection-start="376" selection-end="376" vertical-scroll-proportion="0.0">
49
- <folding />
50
- </state>
51
- </provider>
52
- </entry>
53
- </file>
54
- <file leaf-file-name="actic.gemspec" pinned="false" current="true" current-in-tab="true">
55
- <entry file="file://$PROJECT_DIR$/actic.gemspec">
56
- <provider selected="true" editor-type-id="text-editor">
57
- <state line="16" column="23" selection-start="575" selection-end="575" vertical-scroll-proportion="0.29493088">
58
- <folding />
59
- </state>
60
- </provider>
61
- </entry>
62
- </file>
63
- <file leaf-file-name="version.rb" pinned="false" current="false" current-in-tab="false">
64
- <entry file="file://$PROJECT_DIR$/lib/actic/version.rb">
65
- <provider selected="true" editor-type-id="text-editor">
66
- <state line="3" column="0" selection-start="37" selection-end="37" vertical-scroll-proportion="0.0">
67
- <folding />
68
- </state>
69
- </provider>
70
- </entry>
71
- </file>
72
- <file leaf-file-name="Gemfile.lock" pinned="false" current="false" current-in-tab="false">
73
- <entry file="file://$PROJECT_DIR$/Gemfile.lock">
74
- <provider selected="true" editor-type-id="text-editor">
75
- <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
76
- <folding />
77
- </state>
78
- </provider>
79
- </entry>
80
- </file>
81
- </leaf>
82
- </component>
83
- <component name="FindManager">
84
- <FindUsagesManager>
85
- <setting name="OPEN_NEW_TAB" value="false" />
86
- </FindUsagesManager>
87
- </component>
88
- <component name="Git.Branch.Configurations">
89
- <option name="CURRENT" value="r3" />
90
- <option name="CONFIGURATIONS">
91
- <array>
92
- <BranchConfiguration>
93
- <option name="IS_AUTO_DETECTED" value="true" />
94
- <option name="NAME" value="r3" />
95
- <option name="BRANCHES">
96
- <array>
97
- <BranchInfo>
98
- <option name="ROOT" value="$PROJECT_DIR$" />
99
- <option name="REFERENCE" value="r3" />
100
- </BranchInfo>
101
- </array>
102
- </option>
103
- </BranchConfiguration>
104
- </array>
105
- </option>
106
- </component>
107
- <component name="Git.Settings">
108
- <option name="GIT_EXECUTABLE" value="/opt/local/bin/git" />
109
- <option name="CHECKOUT_INCLUDE_TAGS" value="false" />
110
- <option name="UPDATE_CHANGES_POLICY" value="STASH" />
111
- </component>
112
- <component name="IdeDocumentHistory">
113
- <option name="changedFiles">
114
- <list>
115
- <option value="$PROJECT_DIR$/lib/generators/actic/orm_helpers.rb" />
116
- <option value="$PROJECT_DIR$/lib/generators/actic/install_generator.rb" />
117
- <option value="$PROJECT_DIR$/Rakefile" />
118
- <option value="$PROJECT_DIR$/lib/generators/actic/actic_generator.rb" />
119
- <option value="$PROJECT_DIR$/lib/generators/actic_install_generator.rb" />
120
- <option value="$PROJECT_DIR$/lib/generators/actic/actic/actic_generator.rb" />
121
- <option value="$PROJECT_DIR$/lib/generators/actic/install/templates/actic.rb" />
122
- <option value="$PROJECT_DIR$/lib/generators/actic/install/install_generator.rb" />
123
- <option value="$PROJECT_DIR$/config/locales/en.yml" />
124
- <option value="$PROJECT_DIR$/lib/generators/actic/install/templates/README" />
125
- <option value="$PROJECT_DIR$/README" />
126
- <option value="$PROJECT_DIR$/MIT-LICENSE" />
127
- <option value="$PROJECT_DIR$/Gemfile" />
128
- <option value="$PROJECT_DIR$/lib/actic.rb" />
129
- <option value="$PROJECT_DIR$/lib/actic/version.rb" />
130
- <option value="$PROJECT_DIR$/actic.gemspec" />
131
- </list>
132
- </option>
133
- </component>
134
- <component name="ProjectLevelVcsManager">
135
- <OptionsSetting value="true" id="Add" />
136
- <OptionsSetting value="true" id="Remove" />
137
- <OptionsSetting value="true" id="Checkout" />
138
- <OptionsSetting value="true" id="Update" />
139
- <OptionsSetting value="true" id="Status" />
140
- <OptionsSetting value="true" id="Edit" />
141
- <ConfirmationsSetting value="0" id="Add" />
142
- <ConfirmationsSetting value="0" id="Remove" />
143
- </component>
144
- <component name="ProjectReloadState">
145
- <option name="STATE" value="0" />
146
- </component>
147
- <component name="ProjectView">
148
- <navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
149
- <flattenPackages />
150
- <showMembers />
151
- <showModules />
152
- <showLibraryContents />
153
- <hideEmptyPackages />
154
- <abbreviatePackageNames />
155
- <autoscrollToSource />
156
- <autoscrollFromSource />
157
- <sortByType />
158
- </navigator>
159
- <panes>
160
- <pane id="Favorites" />
161
- <pane id="ProjectPane">
162
- <subPane>
163
- <PATH>
164
- <PATH_ELEMENT>
165
- <option name="myItemId" value="actic" />
166
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
167
- </PATH_ELEMENT>
168
- </PATH>
169
- <PATH>
170
- <PATH_ELEMENT>
171
- <option name="myItemId" value="actic" />
172
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
173
- </PATH_ELEMENT>
174
- <PATH_ELEMENT>
175
- <option name="myItemId" value="actic" />
176
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
177
- </PATH_ELEMENT>
178
- </PATH>
179
- <PATH>
180
- <PATH_ELEMENT>
181
- <option name="myItemId" value="actic" />
182
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
183
- </PATH_ELEMENT>
184
- <PATH_ELEMENT>
185
- <option name="myItemId" value="actic" />
186
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
187
- </PATH_ELEMENT>
188
- <PATH_ELEMENT>
189
- <option name="myItemId" value="lib" />
190
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
191
- </PATH_ELEMENT>
192
- </PATH>
193
- <PATH>
194
- <PATH_ELEMENT>
195
- <option name="myItemId" value="actic" />
196
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
197
- </PATH_ELEMENT>
198
- <PATH_ELEMENT>
199
- <option name="myItemId" value="actic" />
200
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
201
- </PATH_ELEMENT>
202
- <PATH_ELEMENT>
203
- <option name="myItemId" value="lib" />
204
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
205
- </PATH_ELEMENT>
206
- <PATH_ELEMENT>
207
- <option name="myItemId" value="actic" />
208
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
209
- </PATH_ELEMENT>
210
- </PATH>
211
- </subPane>
212
- </pane>
213
- <pane id="Scope" />
214
- </panes>
215
- </component>
216
- <component name="PropertiesComponent">
217
- <property name="options.splitter.main.proportions" value="0.3" />
218
- <property name="options.lastSelected" value="org.jetbrains.plugins.ruby.settings.RubyIdeSdkConfigurable" />
219
- <property name="options.searchVisible" value="true" />
220
- <property name="options.splitter.details.proportions" value="0.2" />
221
- </component>
222
- <component name="RecentsManager">
223
- <key name="CopyFile.RECENT_KEYS">
224
- <recent name="$PROJECT_DIR$/lib/generators/actic/install/templates" />
225
- </key>
226
- </component>
227
- <component name="RunManager">
228
- <configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
229
- <module name="" />
230
- <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
231
- <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
232
- <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
233
- <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
234
- <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
235
- <envs />
236
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
237
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov" />
238
- <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
239
- <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
240
- <method />
241
- </configuration>
242
- <list size="0" />
243
- </component>
244
- <component name="ShelveChangesManager" show_recycled="false" />
245
- <component name="SvnConfiguration" maxAnnotateRevisions="500">
246
- <option name="USER" value="" />
247
- <option name="PASSWORD" value="" />
248
- <option name="LAST_MERGED_REVISION" />
249
- <option name="UPDATE_RUN_STATUS" value="false" />
250
- <option name="MERGE_DRY_RUN" value="false" />
251
- <option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
252
- <option name="UPDATE_LOCK_ON_DEMAND" value="false" />
253
- <option name="IGNORE_SPACES_IN_MERGE" value="false" />
254
- <option name="DETECT_NESTED_COPIES" value="true" />
255
- <option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
256
- <option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
257
- <option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
258
- <myIsUseDefaultProxy>false</myIsUseDefaultProxy>
259
- </component>
260
- <component name="TaskManager">
261
- <task active="true" id="Default" summary="Default task">
262
- <changelist id="d3cf5bac-e354-4650-bb9d-a7a20e63c8a1" name="Default" comment="" />
263
- <created>1281099554225</created>
264
- <updated>1281099554225</updated>
265
- </task>
266
- <servers />
267
- </component>
268
- <component name="ToolWindowManager">
269
- <frame x="0" y="22" width="1280" height="774" extended-state="0" />
270
- <editor active="true" />
271
- <layout>
272
- <window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
273
- <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
274
- <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="true" content_ui="tabs" />
275
- <window_info id="Dependency Viewer" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
276
- <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.25" sideWeight="0.6706231" order="0" side_tool="false" content_ui="tabs" />
277
- <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
278
- <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
279
- <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
280
- <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
281
- <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
282
- <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
283
- <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32937685" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
284
- <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
285
- <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
286
- <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
287
- </layout>
288
- </component>
289
- <component name="VcsManagerConfiguration">
290
- <option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
291
- <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
292
- <option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
293
- <option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
294
- <option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
295
- <option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
296
- <option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
297
- <option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
298
- <option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
299
- <option name="ENABLE_BACKGROUND_PROCESSES" value="false" />
300
- <option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
301
- <option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
302
- <option name="FORCE_NON_EMPTY_COMMENT" value="false" />
303
- <option name="LAST_COMMIT_MESSAGE" />
304
- <option name="MAKE_NEW_CHANGELIST_ACTIVE" value="true" />
305
- <option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
306
- <option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
307
- <option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
308
- <option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
309
- <option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
310
- <option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
311
- <option name="ACTIVE_VCS_NAME" />
312
- <option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
313
- <option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
314
- <option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
315
- <option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
316
- </component>
317
- <component name="XDebuggerManager">
318
- <breakpoint-manager />
319
- </component>
320
- <component name="editorHistoryManager">
321
- <entry file="file://$PROJECT_DIR$/Rakefile">
322
- <provider selected="true" editor-type-id="text-editor">
323
- <state line="34" column="66" selection-start="1005" selection-end="1005" vertical-scroll-proportion="0.0" />
324
- </provider>
325
- </entry>
326
- <entry file="file://$PROJECT_DIR$/README">
327
- <provider selected="true" editor-type-id="text-editor">
328
- <state line="42" column="31" selection-start="989" selection-end="989" vertical-scroll-proportion="-18.666666" />
329
- </provider>
330
- </entry>
331
- <entry file="file://$PROJECT_DIR$/MIT-LICENSE">
332
- <provider selected="true" editor-type-id="text-editor">
333
- <state line="0" column="31" selection-start="31" selection-end="31" vertical-scroll-proportion="0.0" />
334
- </provider>
335
- </entry>
336
- <entry file="file://$PROJECT_DIR$/Gemfile.lock">
337
- <provider selected="true" editor-type-id="text-editor">
338
- <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
339
- <folding />
340
- </state>
341
- </provider>
342
- </entry>
343
- <entry file="file://$PROJECT_DIR$/Gemfile">
344
- <provider selected="true" editor-type-id="text-editor">
345
- <state line="1" column="51" selection-start="29" selection-end="29" vertical-scroll-proportion="0.0">
346
- <folding />
347
- </state>
348
- </provider>
349
- </entry>
350
- <entry file="file://$PROJECT_DIR$/lib/actic.rb">
351
- <provider selected="true" editor-type-id="text-editor">
352
- <state line="11" column="18" selection-start="376" selection-end="376" vertical-scroll-proportion="0.0">
353
- <folding />
354
- </state>
355
- </provider>
356
- </entry>
357
- <entry file="file://$PROJECT_DIR$/lib/actic/version.rb">
358
- <provider selected="true" editor-type-id="text-editor">
359
- <state line="3" column="0" selection-start="37" selection-end="37" vertical-scroll-proportion="0.0">
360
- <folding />
361
- </state>
362
- </provider>
363
- </entry>
364
- <entry file="file://$PROJECT_DIR$/actic.gemspec">
365
- <provider selected="true" editor-type-id="text-editor">
366
- <state line="16" column="23" selection-start="575" selection-end="575" vertical-scroll-proportion="0.29493088">
367
- <folding />
368
- </state>
369
- </provider>
370
- </entry>
371
- </component>
372
- </project>
373
-