├── AUTHORS ├── LICENSE ├── NOTICE ├── README.rdoc ├── Rakefile ├── eco_apps.gemspec ├── lib ├── eco_apps.rb ├── eco_apps │ ├── acts_as_readonly.rb │ ├── core_service.rb │ ├── extensions │ │ └── active_resource.rb │ ├── files │ │ └── app_config.yml │ └── utils │ │ ├── helpers.rb │ │ └── idp_util.rb └── platform_config.yml ├── reinstall.sh └── spec ├── spec.opts └── test_app ├── app ├── controllers │ └── application_controller.rb ├── helpers │ └── application_helper.rb └── models │ ├── app.rb │ ├── comment.rb │ └── comment_service.rb ├── config ├── app_config.yml ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── new_rails_defaults.rb │ └── session_store.rb └── routes.rb ├── db └── test.sqlite3 ├── log └── test.log └── spec ├── controllers └── helpers_spec.rb ├── models ├── active_resource_spec.rb ├── acts_as_readonly_spec.rb └── core_service_spec.rb └── spec_helper.rb /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/Rakefile -------------------------------------------------------------------------------- /eco_apps.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/eco_apps.gemspec -------------------------------------------------------------------------------- /lib/eco_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/lib/eco_apps.rb -------------------------------------------------------------------------------- /lib/eco_apps/acts_as_readonly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/lib/eco_apps/acts_as_readonly.rb -------------------------------------------------------------------------------- /lib/eco_apps/core_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/lib/eco_apps/core_service.rb -------------------------------------------------------------------------------- /lib/eco_apps/extensions/active_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/lib/eco_apps/extensions/active_resource.rb -------------------------------------------------------------------------------- /lib/eco_apps/files/app_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/lib/eco_apps/files/app_config.yml -------------------------------------------------------------------------------- /lib/eco_apps/utils/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/lib/eco_apps/utils/helpers.rb -------------------------------------------------------------------------------- /lib/eco_apps/utils/idp_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/lib/eco_apps/utils/idp_util.rb -------------------------------------------------------------------------------- /lib/platform_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/lib/platform_config.yml -------------------------------------------------------------------------------- /reinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/reinstall.sh -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/spec.opts -------------------------------------------------------------------------------- /spec/test_app/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /spec/test_app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /spec/test_app/app/models/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/app/models/app.rb -------------------------------------------------------------------------------- /spec/test_app/app/models/comment.rb: -------------------------------------------------------------------------------- 1 | class Comment < ActiveRecord::Base 2 | acts_as_readonly :article 3 | end -------------------------------------------------------------------------------- /spec/test_app/app/models/comment_service.rb: -------------------------------------------------------------------------------- 1 | class CommentService < ActiveResource::Base 2 | self.site = :article 3 | end -------------------------------------------------------------------------------- /spec/test_app/config/app_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/app_config.yml -------------------------------------------------------------------------------- /spec/test_app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/boot.rb -------------------------------------------------------------------------------- /spec/test_app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/database.yml -------------------------------------------------------------------------------- /spec/test_app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/environment.rb -------------------------------------------------------------------------------- /spec/test_app/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/environments/development.rb -------------------------------------------------------------------------------- /spec/test_app/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/environments/production.rb -------------------------------------------------------------------------------- /spec/test_app/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/environments/test.rb -------------------------------------------------------------------------------- /spec/test_app/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /spec/test_app/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/initializers/inflections.rb -------------------------------------------------------------------------------- /spec/test_app/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /spec/test_app/config/initializers/new_rails_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/initializers/new_rails_defaults.rb -------------------------------------------------------------------------------- /spec/test_app/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/initializers/session_store.rb -------------------------------------------------------------------------------- /spec/test_app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/config/routes.rb -------------------------------------------------------------------------------- /spec/test_app/db/test.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/db/test.sqlite3 -------------------------------------------------------------------------------- /spec/test_app/log/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/log/test.log -------------------------------------------------------------------------------- /spec/test_app/spec/controllers/helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/spec/controllers/helpers_spec.rb -------------------------------------------------------------------------------- /spec/test_app/spec/models/active_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/spec/models/active_resource_spec.rb -------------------------------------------------------------------------------- /spec/test_app/spec/models/acts_as_readonly_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/spec/models/acts_as_readonly_spec.rb -------------------------------------------------------------------------------- /spec/test_app/spec/models/core_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/spec/models/core_service_spec.rb -------------------------------------------------------------------------------- /spec/test_app/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idapted/eco_apps/HEAD/spec/test_app/spec/spec_helper.rb --------------------------------------------------------------------------------