la_maquina 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +22 -0
  3. data/Gemfile.lock +130 -0
  4. data/LICENSE.txt +22 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +86 -0
  7. data/Rakefile +34 -0
  8. data/la_maquina.gemspec +25 -0
  9. data/lib/la_maquina/ciguenal.rb +23 -0
  10. data/lib/la_maquina/piston.rb +9 -0
  11. data/lib/la_maquina/pistons/cache_piston.rb +37 -0
  12. data/lib/la_maquina/version.rb +3 -0
  13. data/lib/la_maquina/volante.rb +81 -0
  14. data/lib/la_maquina.rb +20 -0
  15. data/test/dummy/README.rdoc +28 -0
  16. data/test/dummy/Rakefile +6 -0
  17. data/test/dummy/app/models/.keep +0 -0
  18. data/test/dummy/app/models/admin.rb +11 -0
  19. data/test/dummy/app/models/admin_trait.rb +9 -0
  20. data/test/dummy/app/models/admin_trait_modifier.rb +8 -0
  21. data/test/dummy/app/models/danny_trejo.rb +5 -0
  22. data/test/dummy/app/models/guest.rb +10 -0
  23. data/test/dummy/app/models/guest_trait.rb +9 -0
  24. data/test/dummy/app/models/guest_trait_modifier.rb +7 -0
  25. data/test/dummy/app/models/machete.rb +8 -0
  26. data/test/dummy/app/models/property.rb +7 -0
  27. data/test/dummy/app/models/standalone.rb +4 -0
  28. data/test/dummy/app/models/trait.rb +4 -0
  29. data/test/dummy/config/application.rb +27 -0
  30. data/test/dummy/config/boot.rb +5 -0
  31. data/test/dummy/config/database.yml +27 -0
  32. data/test/dummy/config/environment.rb +5 -0
  33. data/test/dummy/config/environments/development.rb +41 -0
  34. data/test/dummy/config/environments/production.rb +79 -0
  35. data/test/dummy/config/environments/test.rb +42 -0
  36. data/test/dummy/config/initializers/assets.rb +11 -0
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/cache_machine.rb +2 -0
  39. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  40. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  41. data/test/dummy/config/initializers/inflections.rb +16 -0
  42. data/test/dummy/config/initializers/mime_types.rb +4 -0
  43. data/test/dummy/config/initializers/session_store.rb +3 -0
  44. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  45. data/test/dummy/config/locales/en.yml +23 -0
  46. data/test/dummy/config/routes.rb +56 -0
  47. data/test/dummy/config/secrets.yml +22 -0
  48. data/test/dummy/config.ru +4 -0
  49. data/test/dummy/db/development.sqlite3 +0 -0
  50. data/test/dummy/db/migrate/20150228015009_schema.rb +47 -0
  51. data/test/dummy/db/schema.rb +16 -0
  52. data/test/dummy/lib/dummy_cache_machine_comm_object.rb +5 -0
  53. data/test/dummy/lib/exploding_cache_machine_comm_object.rb +5 -0
  54. data/test/dummy/log/.keep +0 -0
  55. data/test/dummy/log/development.log +16 -0
  56. data/test/dummy/log/test.log +3980 -0
  57. data/test/dummy/public/404.html +67 -0
  58. data/test/dummy/public/422.html +67 -0
  59. data/test/dummy/public/500.html +66 -0
  60. data/test/dummy/public/favicon.ico +0 -0
  61. data/test/dummy/test/fixtures/admin_trait_modifiers.yml +3 -0
  62. data/test/dummy/test/fixtures/admin_traits.yml +4 -0
  63. data/test/dummy/test/fixtures/admins.yml +5 -0
  64. data/test/dummy/test/fixtures/guest_trait_modifiers.yml +3 -0
  65. data/test/dummy/test/fixtures/guest_traits.yml +4 -0
  66. data/test/dummy/test/fixtures/guests.yml +5 -0
  67. data/test/dummy/test/fixtures/properties.yml +7 -0
  68. data/test/dummy/test/fixtures/standalones.yml +2 -0
  69. data/test/dummy/test/fixtures/traits.yml +5 -0
  70. data/test/la_maquina_test.rb +15 -0
  71. data/test/master_cache_object_test.rb +23 -0
  72. data/test/subordinate_cache_object_test.rb +136 -0
  73. data/test/test_helper.rb +22 -0
  74. metadata +219 -0
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,3 @@
1
+ wheels_something_else_modifier:
2
+ admin_trait: wheels_something_else
3
+ modifier: whatever
@@ -0,0 +1,4 @@
1
+ wheels_something_else:
2
+ user: wheel
3
+ thing: something_else
4
+ value: tha larch
@@ -0,0 +1,5 @@
1
+ su:
2
+ name: superuser
3
+
4
+ wheel:
5
+ name: wheel
@@ -0,0 +1,3 @@
1
+ gregs_something_modifier:
2
+ guest_trait: gregs_something
3
+ modifier: whatever
@@ -0,0 +1,4 @@
1
+ gregs_something:
2
+ guest: greg
3
+ trait: something
4
+ value: many moons
@@ -0,0 +1,5 @@
1
+ greg:
2
+ name: Greg
3
+
4
+ joe:
5
+ name: Joe
@@ -0,0 +1,7 @@
1
+ su_whatever:
2
+ user: su (Admin)
3
+ value: whatever
4
+
5
+ gregs_thing:
6
+ user: greg (Guest)
7
+ value: thing
@@ -0,0 +1,2 @@
1
+ thing:
2
+ value: whatever
@@ -0,0 +1,5 @@
1
+ something:
2
+ name: something
3
+
4
+ something_else:
5
+ name: something else
@@ -0,0 +1,15 @@
1
+ require 'test_helper'
2
+
3
+ class LaMaquinaTest < ActiveSupport::TestCase
4
+
5
+ def test_object_name_formatting
6
+ assert_equal "admin", LaMaquina.format_object_name(admins(:su))
7
+ assert_equal "admin_trait", LaMaquina.format_object_name(admin_traits(:wheels_something_else))
8
+ end
9
+
10
+
11
+ def test_class_name_formatting
12
+ assert_equal "admin", LaMaquina.format_class_name(Admin)
13
+ assert_equal "admin_trait", LaMaquina.format_class_name(AdminTrait)
14
+ end
15
+ end
@@ -0,0 +1,23 @@
1
+ require 'test_helper'
2
+
3
+ class MasterCacheObjectTest < ActiveSupport::TestCase
4
+
5
+ def setup
6
+ @admin = admins(:wheel)
7
+ end
8
+
9
+ def test_touch_cache_updates_cache_key
10
+ key = CacheMachine::MasterCacheObject.cache_key :admin, @admin.id
11
+
12
+ sleep(1)
13
+ CacheMachine::MasterCacheObject.touch_cache :admin, @admin.id
14
+
15
+ assert_not_equal key, CacheMachine::MasterCacheObject.cache_key(:admin, @admin.id)
16
+ end
17
+
18
+ def test_cache_key_generates_new_key
19
+ Redis.current.del CacheMachine::MasterCacheObject.redis_key(:admin, @admin.id)
20
+
21
+ assert_not_nil CacheMachine::MasterCacheObject.cache_key(:admin, @admin.id)
22
+ end
23
+ end
@@ -0,0 +1,136 @@
1
+ require 'test_helper'
2
+
3
+
4
+ class MasterCacheObjectTest < ActiveSupport::TestCase
5
+
6
+
7
+ def test_update_subordinate_objects_suports_explicit_class_and_class_name
8
+ admin_attr = admin_traits(:wheels_something_else)
9
+ admin_key = CacheMachine::MasterCacheObject.cache_key :admin, admin_attr.user.id
10
+ trait_key = CacheMachine::MasterCacheObject.cache_key :trait, admin_attr.thing.id
11
+
12
+ # sleep to prevent key clash
13
+ sleep(1)
14
+
15
+ admin_attr.value = "lol"
16
+ admin_attr.save!
17
+
18
+ assert_not_equal admin_key, CacheMachine::MasterCacheObject.cache_key(:admin, admin_attr.user.id)
19
+ assert_not_equal trait_key, CacheMachine::MasterCacheObject.cache_key(:trait, admin_attr.thing.id)
20
+ end
21
+
22
+ def test_update_subordinate_object_can_update_self
23
+ wheel = admins(:wheel)
24
+ key = CacheMachine::MasterCacheObject.cache_key :admin, wheel.id
25
+
26
+ sleep(1)
27
+
28
+ wheel.name = "WHEEL!"
29
+ wheel.save!
30
+
31
+ assert_not_equal key, CacheMachine::MasterCacheObject.cache_key(:admin, wheel.id)
32
+ end
33
+
34
+
35
+ def test_update_subordinate_object_supports_implict_class
36
+
37
+ guest_attr = guest_traits(:gregs_something)
38
+ guest_key = CacheMachine::MasterCacheObject.cache_key :guest, guest_attr.guest.id
39
+ trait_key = CacheMachine::MasterCacheObject.cache_key :trait, guest_attr.trait.id
40
+
41
+ # sleep to prevent key clash
42
+ sleep(1)
43
+
44
+ guest_attr.value = "who cares"
45
+ guest_attr.save!
46
+
47
+ assert_not_equal guest_key, CacheMachine::MasterCacheObject.cache_key(:guest, guest_attr.guest.id)
48
+ assert_not_equal trait_key, CacheMachine::MasterCacheObject.cache_key(:trait, guest_attr.trait.id)
49
+ end
50
+
51
+ def test_update_subordinate_object_supports_polymorphism
52
+ su_whatever = properties(:su_whatever)
53
+ gregs_thing = properties(:gregs_thing)
54
+
55
+ su_key = CacheMachine::MasterCacheObject.cache_key :admin, su_whatever.user.id
56
+ gt_key = CacheMachine::MasterCacheObject.cache_key :guest, gregs_thing.user.id
57
+
58
+ sleep(1)
59
+
60
+ su_whatever.value = "blah"
61
+ gregs_thing.value = "blah blah"
62
+
63
+ su_whatever.save!
64
+ gregs_thing.save!
65
+
66
+ assert_not_equal su_key, CacheMachine::MasterCacheObject.cache_key(:admin, su_whatever.user.id)
67
+ assert_not_equal gt_key, CacheMachine::MasterCacheObject.cache_key(:guest, gregs_thing.user.id)
68
+ end
69
+
70
+ def test_subordingate_object_creation_updates_master
71
+ greg = guests(:greg)
72
+ key = CacheMachine::MasterCacheObject.cache_key :guest, greg.id
73
+
74
+ sleep(1)
75
+
76
+ greg.guest_traits.create!(:value => "some bullshit")
77
+
78
+ assert_not_equal key, CacheMachine::MasterCacheObject.cache_key(:guest, greg.id)
79
+ end
80
+
81
+ def test_subordingate_object_destruction_updates_master
82
+ wheel = admins(:wheel)
83
+ wheel_attr = admin_traits(:wheels_something_else)
84
+
85
+ key = CacheMachine::MasterCacheObject.cache_key :admin, wheel.id
86
+
87
+ sleep(1)
88
+
89
+ wheel_attr.destroy
90
+
91
+ assert_not_equal key, CacheMachine::MasterCacheObject.cache_key(:admin, wheel.id)
92
+ end
93
+
94
+ def test_subordinate_object_can_update_through
95
+ modifier = guest_trait_modifiers(:gregs_something_modifier)
96
+ key = CacheMachine::MasterCacheObject.cache_key(:guest, modifier.guest_trait.guest.id)
97
+
98
+ sleep(1)
99
+
100
+ modifier.modifier = "something something darkside"
101
+ modifier.save!
102
+
103
+ assert_not_equal key, CacheMachine::MasterCacheObject.cache_key(:guest, modifier.guest_trait.guest.id)
104
+ end
105
+
106
+ def test_subordinate_object_can_update_through_with_explicit_target_class
107
+ modifier = admin_trait_modifiers(:wheels_something_else_modifier)
108
+ admin_key = CacheMachine::MasterCacheObject.cache_key :admin, modifier.admin_trait.user.id
109
+ trait_key = CacheMachine::MasterCacheObject.cache_key :trait, modifier.admin_trait.thing.id
110
+
111
+ sleep(1)
112
+
113
+ modifier.modifier = "something something darkside"
114
+ modifier.save!
115
+
116
+ assert_not_equal admin_key, CacheMachine::MasterCacheObject.cache_key(:admin, modifier.admin_trait.user.id)
117
+ assert_not_equal trait_key, CacheMachine::MasterCacheObject.cache_key(:trait, modifier.admin_trait.thing.id)
118
+ end
119
+
120
+ def test_touch_cache_through_gem
121
+ admin = admins(:su)
122
+ admin.update_attribute(:name, "lol")
123
+
124
+ assert_equal $dummy_cache_params[:subordinate_class], "admin"
125
+ end
126
+
127
+ def test_touch_cache_can_handle_comm_object_failures
128
+ thing = standalones(:thing)
129
+ thing.value = "something new"
130
+ thing.save
131
+
132
+ assert_equal $error.class, RuntimeError
133
+ assert_equal $error.to_s, "oh noes!"
134
+ assert_equal $deets[:master_class], "standalone"
135
+ end
136
+ end
@@ -0,0 +1,22 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+
3
+ require 'simplecov'
4
+ SimpleCov.start
5
+
6
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
7
+ require "rails/test_help"
8
+
9
+ Rails.backtrace_cleaner.remove_silencers!
10
+
11
+ ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
12
+
13
+ # Load fixtures from the engine
14
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
15
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../dummy/test/fixtures", __FILE__)
16
+ end
17
+
18
+ class ActiveSupport::TestCase
19
+ self.use_transactional_fixtures = true
20
+ self.pre_loaded_fixtures = true
21
+ fixtures :all
22
+ end
metadata ADDED
@@ -0,0 +1,219 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: la_maquina
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Greg Orlov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-07-31 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sqlite3
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: lets you have inter-model update notifications without having to make
56
+ database connections
57
+ email:
58
+ - greg@avvo.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - Gemfile
64
+ - Gemfile.lock
65
+ - LICENSE.txt
66
+ - MIT-LICENSE
67
+ - README.md
68
+ - Rakefile
69
+ - la_maquina.gemspec
70
+ - lib/la_maquina.rb
71
+ - lib/la_maquina/ciguenal.rb
72
+ - lib/la_maquina/piston.rb
73
+ - lib/la_maquina/pistons/cache_piston.rb
74
+ - lib/la_maquina/version.rb
75
+ - lib/la_maquina/volante.rb
76
+ - test/dummy/README.rdoc
77
+ - test/dummy/Rakefile
78
+ - test/dummy/app/models/.keep
79
+ - test/dummy/app/models/admin.rb
80
+ - test/dummy/app/models/admin_trait.rb
81
+ - test/dummy/app/models/admin_trait_modifier.rb
82
+ - test/dummy/app/models/danny_trejo.rb
83
+ - test/dummy/app/models/guest.rb
84
+ - test/dummy/app/models/guest_trait.rb
85
+ - test/dummy/app/models/guest_trait_modifier.rb
86
+ - test/dummy/app/models/machete.rb
87
+ - test/dummy/app/models/property.rb
88
+ - test/dummy/app/models/standalone.rb
89
+ - test/dummy/app/models/trait.rb
90
+ - test/dummy/config.ru
91
+ - test/dummy/config/application.rb
92
+ - test/dummy/config/boot.rb
93
+ - test/dummy/config/database.yml
94
+ - test/dummy/config/environment.rb
95
+ - test/dummy/config/environments/development.rb
96
+ - test/dummy/config/environments/production.rb
97
+ - test/dummy/config/environments/test.rb
98
+ - test/dummy/config/initializers/assets.rb
99
+ - test/dummy/config/initializers/backtrace_silencers.rb
100
+ - test/dummy/config/initializers/cache_machine.rb
101
+ - test/dummy/config/initializers/cookies_serializer.rb
102
+ - test/dummy/config/initializers/filter_parameter_logging.rb
103
+ - test/dummy/config/initializers/inflections.rb
104
+ - test/dummy/config/initializers/mime_types.rb
105
+ - test/dummy/config/initializers/session_store.rb
106
+ - test/dummy/config/initializers/wrap_parameters.rb
107
+ - test/dummy/config/locales/en.yml
108
+ - test/dummy/config/routes.rb
109
+ - test/dummy/config/secrets.yml
110
+ - test/dummy/db/development.sqlite3
111
+ - test/dummy/db/migrate/20150228015009_schema.rb
112
+ - test/dummy/db/schema.rb
113
+ - test/dummy/lib/dummy_cache_machine_comm_object.rb
114
+ - test/dummy/lib/exploding_cache_machine_comm_object.rb
115
+ - test/dummy/log/.keep
116
+ - test/dummy/log/development.log
117
+ - test/dummy/log/test.log
118
+ - test/dummy/public/404.html
119
+ - test/dummy/public/422.html
120
+ - test/dummy/public/500.html
121
+ - test/dummy/public/favicon.ico
122
+ - test/dummy/test/fixtures/admin_trait_modifiers.yml
123
+ - test/dummy/test/fixtures/admin_traits.yml
124
+ - test/dummy/test/fixtures/admins.yml
125
+ - test/dummy/test/fixtures/guest_trait_modifiers.yml
126
+ - test/dummy/test/fixtures/guest_traits.yml
127
+ - test/dummy/test/fixtures/guests.yml
128
+ - test/dummy/test/fixtures/properties.yml
129
+ - test/dummy/test/fixtures/standalones.yml
130
+ - test/dummy/test/fixtures/traits.yml
131
+ - test/la_maquina_test.rb
132
+ - test/master_cache_object_test.rb
133
+ - test/subordinate_cache_object_test.rb
134
+ - test/test_helper.rb
135
+ homepage: https://github.com/gaorlov/la_maquina
136
+ licenses:
137
+ - MIT
138
+ metadata: {}
139
+ post_install_message:
140
+ rdoc_options: []
141
+ require_paths:
142
+ - lib
143
+ required_ruby_version: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - ">="
146
+ - !ruby/object:Gem::Version
147
+ version: '0'
148
+ required_rubygems_version: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ requirements: []
154
+ rubyforge_project:
155
+ rubygems_version: 2.4.6
156
+ signing_key:
157
+ specification_version: 4
158
+ summary: depnendency tree update notifications
159
+ test_files:
160
+ - test/dummy/README.rdoc
161
+ - test/dummy/Rakefile
162
+ - test/dummy/app/models/.keep
163
+ - test/dummy/app/models/admin.rb
164
+ - test/dummy/app/models/admin_trait.rb
165
+ - test/dummy/app/models/admin_trait_modifier.rb
166
+ - test/dummy/app/models/danny_trejo.rb
167
+ - test/dummy/app/models/guest.rb
168
+ - test/dummy/app/models/guest_trait.rb
169
+ - test/dummy/app/models/guest_trait_modifier.rb
170
+ - test/dummy/app/models/machete.rb
171
+ - test/dummy/app/models/property.rb
172
+ - test/dummy/app/models/standalone.rb
173
+ - test/dummy/app/models/trait.rb
174
+ - test/dummy/config.ru
175
+ - test/dummy/config/application.rb
176
+ - test/dummy/config/boot.rb
177
+ - test/dummy/config/database.yml
178
+ - test/dummy/config/environment.rb
179
+ - test/dummy/config/environments/development.rb
180
+ - test/dummy/config/environments/production.rb
181
+ - test/dummy/config/environments/test.rb
182
+ - test/dummy/config/initializers/assets.rb
183
+ - test/dummy/config/initializers/backtrace_silencers.rb
184
+ - test/dummy/config/initializers/cache_machine.rb
185
+ - test/dummy/config/initializers/cookies_serializer.rb
186
+ - test/dummy/config/initializers/filter_parameter_logging.rb
187
+ - test/dummy/config/initializers/inflections.rb
188
+ - test/dummy/config/initializers/mime_types.rb
189
+ - test/dummy/config/initializers/session_store.rb
190
+ - test/dummy/config/initializers/wrap_parameters.rb
191
+ - test/dummy/config/locales/en.yml
192
+ - test/dummy/config/routes.rb
193
+ - test/dummy/config/secrets.yml
194
+ - test/dummy/db/development.sqlite3
195
+ - test/dummy/db/migrate/20150228015009_schema.rb
196
+ - test/dummy/db/schema.rb
197
+ - test/dummy/lib/dummy_cache_machine_comm_object.rb
198
+ - test/dummy/lib/exploding_cache_machine_comm_object.rb
199
+ - test/dummy/log/.keep
200
+ - test/dummy/log/development.log
201
+ - test/dummy/log/test.log
202
+ - test/dummy/public/404.html
203
+ - test/dummy/public/422.html
204
+ - test/dummy/public/500.html
205
+ - test/dummy/public/favicon.ico
206
+ - test/dummy/test/fixtures/admin_trait_modifiers.yml
207
+ - test/dummy/test/fixtures/admin_traits.yml
208
+ - test/dummy/test/fixtures/admins.yml
209
+ - test/dummy/test/fixtures/guest_trait_modifiers.yml
210
+ - test/dummy/test/fixtures/guest_traits.yml
211
+ - test/dummy/test/fixtures/guests.yml
212
+ - test/dummy/test/fixtures/properties.yml
213
+ - test/dummy/test/fixtures/standalones.yml
214
+ - test/dummy/test/fixtures/traits.yml
215
+ - test/la_maquina_test.rb
216
+ - test/master_cache_object_test.rb
217
+ - test/subordinate_cache_object_test.rb
218
+ - test/test_helper.rb
219
+ has_rdoc: