introspective_admin 0.0.8 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +5 -5
  2. data/.DS_Store +0 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +16 -9
  5. data/CHANGELOG.md +28 -15
  6. data/Gemfile +6 -6
  7. data/Gemfile.lock +264 -247
  8. data/Gemfile.lock.rails4 +256 -0
  9. data/introspective_admin.gemspec +44 -41
  10. data/lib/introspective_admin/base.rb +200 -200
  11. data/lib/introspective_admin/version.rb +3 -3
  12. data/spec/admin/company_admin_spec.rb +72 -72
  13. data/spec/admin/job_admin_spec.rb +61 -61
  14. data/spec/admin/location_admin_spec.rb +66 -66
  15. data/spec/admin/location_beacon_admin_spec.rb +73 -73
  16. data/spec/admin/project__admin_spec.rb +71 -71
  17. data/spec/admin/user_admin_spec.rb +64 -64
  18. data/spec/dummy/README.rdoc +28 -28
  19. data/spec/dummy/Rakefile +6 -6
  20. data/spec/dummy/app/admin/company_admin.rb +4 -4
  21. data/spec/dummy/app/admin/job_admin.rb +4 -4
  22. data/spec/dummy/app/admin/location_admin.rb +4 -4
  23. data/spec/dummy/app/admin/location_beacon_admin.rb +6 -6
  24. data/spec/dummy/app/admin/project_admin.rb +6 -6
  25. data/spec/dummy/app/admin/role_admin.rb +5 -5
  26. data/spec/dummy/app/admin/user_admin.rb +13 -13
  27. data/spec/dummy/app/assets/javascripts/application.js +13 -13
  28. data/spec/dummy/app/assets/stylesheets/application.css +15 -15
  29. data/spec/dummy/app/controllers/application_controller.rb +8 -5
  30. data/spec/dummy/app/helpers/application_helper.rb +3 -2
  31. data/spec/dummy/app/models/abstract_adapter.rb +12 -12
  32. data/spec/dummy/app/models/admin_user.rb +6 -6
  33. data/spec/dummy/app/models/company.rb +12 -12
  34. data/spec/dummy/app/models/job.rb +10 -10
  35. data/spec/dummy/app/models/locatable.rb +6 -6
  36. data/spec/dummy/app/models/location.rb +26 -26
  37. data/spec/dummy/app/models/location_beacon.rb +19 -19
  38. data/spec/dummy/app/models/location_gps.rb +11 -11
  39. data/spec/dummy/app/models/project.rb +20 -20
  40. data/spec/dummy/app/models/project_job.rb +7 -7
  41. data/spec/dummy/app/models/role.rb +25 -25
  42. data/spec/dummy/app/models/team.rb +9 -9
  43. data/spec/dummy/app/models/team_user.rb +13 -13
  44. data/spec/dummy/app/models/user.rb +68 -68
  45. data/spec/dummy/app/models/user_location.rb +28 -28
  46. data/spec/dummy/app/models/user_project_job.rb +16 -16
  47. data/spec/dummy/app/views/layouts/application.html.erb +13 -13
  48. data/spec/dummy/bin/bundle +3 -3
  49. data/spec/dummy/bin/rails +4 -4
  50. data/spec/dummy/bin/rake +4 -4
  51. data/spec/dummy/bin/setup +29 -29
  52. data/spec/dummy/config/application.rb +34 -32
  53. data/spec/dummy/config/boot.rb +5 -5
  54. data/spec/dummy/config/database.yml +22 -22
  55. data/spec/dummy/config/environment.rb +11 -11
  56. data/spec/dummy/config/environments/development.rb +45 -41
  57. data/spec/dummy/config/environments/production.rb +82 -79
  58. data/spec/dummy/config/environments/test.rb +50 -43
  59. data/spec/dummy/config/initializers/active_admin.rb +7 -7
  60. data/spec/dummy/config/initializers/assets.rb +13 -11
  61. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -7
  62. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -3
  63. data/spec/dummy/config/initializers/devise.rb +263 -263
  64. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -4
  65. data/spec/dummy/config/initializers/inflections.rb +16 -16
  66. data/spec/dummy/config/initializers/mime_types.rb +4 -4
  67. data/spec/dummy/config/initializers/session_store.rb +3 -3
  68. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -14
  69. data/spec/dummy/config/locales/devise.en.yml +60 -60
  70. data/spec/dummy/config/locales/en.yml +23 -23
  71. data/spec/dummy/config/routes.rb +9 -9
  72. data/spec/dummy/config/secrets.yml +20 -20
  73. data/spec/dummy/config.ru +4 -4
  74. data/spec/dummy/db/development.sqlite3 +0 -0
  75. data/spec/dummy/db/migrate/20141002205024_devise_create_users.rb +42 -42
  76. data/spec/dummy/db/migrate/20141002211055_devise_create_admin_users.rb +48 -48
  77. data/spec/dummy/db/migrate/20141002211057_create_active_admin_comments.rb +19 -19
  78. data/spec/dummy/db/migrate/20141002220722_add_lockable_to_users.rb +8 -8
  79. data/spec/dummy/db/migrate/20150406213646_create_companies.rb +11 -11
  80. data/spec/dummy/db/migrate/20150414213154_add_user_authentication_token.rb +11 -11
  81. data/spec/dummy/db/migrate/20150415222005_create_roles.rb +12 -12
  82. data/spec/dummy/db/migrate/20150505181635_create_chats.rb +9 -9
  83. data/spec/dummy/db/migrate/20150505181636_create_chat_users.rb +11 -11
  84. data/spec/dummy/db/migrate/20150505181640_create_chat_messages.rb +11 -11
  85. data/spec/dummy/db/migrate/20150507191529_create_chat_message_users.rb +11 -11
  86. data/spec/dummy/db/migrate/20150601200526_create_locations.rb +13 -13
  87. data/spec/dummy/db/migrate/20150601200533_create_locatables.rb +10 -10
  88. data/spec/dummy/db/migrate/20150601212924_create_location_beacons.rb +16 -16
  89. data/spec/dummy/db/migrate/20150601213542_create_location_gps.rb +12 -12
  90. data/spec/dummy/db/migrate/20150609201823_create_user_locations.rb +14 -14
  91. data/spec/dummy/db/migrate/20150617232519_create_projects.rb +10 -10
  92. data/spec/dummy/db/migrate/20150617232521_create_jobs.rb +9 -9
  93. data/spec/dummy/db/migrate/20150617232522_create_project_jobs.rb +11 -11
  94. data/spec/dummy/db/migrate/20150623170133_create_user_project_jobs.rb +12 -12
  95. data/spec/dummy/db/migrate/20150701234929_create_teams.rb +11 -11
  96. data/spec/dummy/db/migrate/20150701234930_create_team_users.rb +11 -11
  97. data/spec/dummy/db/migrate/20150727214950_add_confirmable_to_devise.rb +11 -11
  98. data/spec/dummy/db/migrate/20150820190524_add_user_names.rb +6 -6
  99. data/spec/dummy/db/migrate/20150909225019_add_password_to_project.rb +5 -5
  100. data/spec/dummy/db/schema.rb +264 -264
  101. data/spec/dummy/public/404.html +67 -67
  102. data/spec/dummy/public/422.html +67 -67
  103. data/spec/dummy/public/500.html +66 -66
  104. data/spec/rails_helper.rb +27 -24
  105. metadata +84 -12
@@ -1,28 +1,28 @@
1
- == README
2
-
3
- This README would normally document whatever steps are necessary to get the
4
- application up and running.
5
-
6
- Things you may want to cover:
7
-
8
- * Ruby version
9
-
10
- * System dependencies
11
-
12
- * Configuration
13
-
14
- * Database creation
15
-
16
- * Database initialization
17
-
18
- * How to run the test suite
19
-
20
- * Services (job queues, cache servers, search engines, etc.)
21
-
22
- * Deployment instructions
23
-
24
- * ...
25
-
26
-
27
- Please feel free to use a different markup language if you do not plan to run
28
- <tt>rake doc:app</tt>.
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
data/spec/dummy/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
- # Add your own tasks in files placed in lib/tasks ending in .rake,
2
- # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
-
4
- require File.expand_path('../config/application', __FILE__)
5
-
6
- Rails.application.load_tasks
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Rails.application.load_tasks
@@ -1,4 +1,4 @@
1
- class CompanyAdmin < IntrospectiveAdmin::Base
2
- register Company do
3
- end
4
- end
1
+ class CompanyAdmin < IntrospectiveAdmin::Base
2
+ register Company do
3
+ end
4
+ end
@@ -1,4 +1,4 @@
1
- class JobAdmin < IntrospectiveAdmin::Base
2
- register Job do
3
- end
4
- end
1
+ class JobAdmin < IntrospectiveAdmin::Base
2
+ register Job do
3
+ end
4
+ end
@@ -1,4 +1,4 @@
1
- class LocationAdmin < IntrospectiveAdmin::Base
2
- register Location do
3
- end
4
- end
1
+ class LocationAdmin < IntrospectiveAdmin::Base
2
+ register Location do
3
+ end
4
+ end
@@ -1,6 +1,6 @@
1
- class LocationBeaconAdmin < IntrospectiveAdmin::Base
2
- register LocationBeacon do
3
- scope :all
4
- scope :low_battery
5
- end
6
- end
1
+ class LocationBeaconAdmin < IntrospectiveAdmin::Base
2
+ register LocationBeacon do
3
+ scope :all
4
+ scope :low_battery
5
+ end
6
+ end
@@ -1,6 +1,6 @@
1
- class ProjectAdmin < IntrospectiveAdmin::Base
2
- register Project do
3
-
4
- end
5
-
6
- end
1
+ class ProjectAdmin < IntrospectiveAdmin::Base
2
+ register Project do
3
+
4
+ end
5
+
6
+ end
@@ -1,5 +1,5 @@
1
- class RoleAdmin < IntrospectiveAdmin::Base
2
- register Role do
3
- end
4
- end
5
-
1
+ class RoleAdmin < IntrospectiveAdmin::Base
2
+ register Role do
3
+ end
4
+ end
5
+
@@ -1,13 +1,13 @@
1
- class UserAdmin < IntrospectiveAdmin::Base
2
- def self.include_virtual_attributes
3
- %w(password)
4
- end
5
-
6
- def self.exclude_params
7
- %w(reset_password_at current_sign_in_at current_sign_in_ip remember_created_at sign_in_count encrypted_password reset_password_sent_at reset_password_token password authentication_token unlock_token failed_attempts last_sign_in_at locked_at last_sign_in_ip)
8
- end
9
-
10
- register User do
11
- end
12
-
13
- end
1
+ class UserAdmin < IntrospectiveAdmin::Base
2
+ def self.include_virtual_attributes
3
+ %w(password)
4
+ end
5
+
6
+ def self.exclude_params
7
+ %w(reset_password_at current_sign_in_at current_sign_in_ip remember_created_at sign_in_count encrypted_password reset_password_sent_at reset_password_token password authentication_token unlock_token failed_attempts last_sign_in_at locked_at last_sign_in_ip)
8
+ end
9
+
10
+ register User do
11
+ end
12
+
13
+ end
@@ -1,13 +1,13 @@
1
- // This is a manifest file that'll be compiled into application.js, which will include all the files
2
- // listed below.
3
- //
4
- // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
- // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
- //
7
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
- // compiled file.
9
- //
10
- // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
- // about supported directives.
12
- //
13
- //= require_tree .
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -1,15 +1,15 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any styles
10
- * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
- * file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -1,5 +1,8 @@
1
- class ApplicationController < ActionController::Base
2
- # Prevent CSRF attacks by raising an exception.
3
- # For APIs, you may want to use :null_session instead.
4
- protect_from_forgery with: :exception
5
- end
1
+ class ApplicationController < ActionController::Base
2
+ # Prevent CSRF attacks by raising an exception.
3
+ # For APIs, you may want to use :null_session instead.
4
+ protect_from_forgery with: :exception
5
+
6
+ # Load the test database schema into memory on startup
7
+ load "#{Rails.root}/db/schema.rb"
8
+ end
@@ -1,2 +1,3 @@
1
- module ApplicationHelper
2
- end
1
+ module ApplicationHelper
2
+
3
+ end
@@ -1,12 +1,12 @@
1
- class AbstractAdapter < ActiveRecord::Base
2
- self.abstract_class = true
3
-
4
- class << self
5
- def human_attribute_name(attr, options = {})
6
- # The default formatting of validation errors sucks, this helps a little syntatically:
7
- super.titleize+":"
8
- end
9
- end
10
-
11
- end
12
-
1
+ class AbstractAdapter < ActiveRecord::Base
2
+ self.abstract_class = true
3
+
4
+ class << self
5
+ def human_attribute_name(attr, options = {})
6
+ # The default formatting of validation errors sucks, this helps a little syntatically:
7
+ super.titleize+":"
8
+ end
9
+ end
10
+
11
+ end
12
+
@@ -1,6 +1,6 @@
1
- class AdminUser < ActiveRecord::Base
2
- # Include default devise modules. Others available are:
3
- # :confirmable, :lockable, :timeoutable and :omniauthable
4
- devise :database_authenticatable,
5
- :recoverable, :rememberable, :trackable, :validatable
6
- end
1
+ class AdminUser < ActiveRecord::Base
2
+ # Include default devise modules. Others available are:
3
+ # :confirmable, :lockable, :timeoutable and :omniauthable
4
+ devise :database_authenticatable,
5
+ :recoverable, :rememberable, :trackable, :validatable
6
+ end
@@ -1,12 +1,12 @@
1
- class Company < AbstractAdapter
2
- has_many :roles, as: :ownable
3
- has_many :admins, through: :roles, source: :user
4
- accepts_nested_attributes_for :roles, allow_destroy: true
5
-
6
- has_many :beacons, class_name: 'LocationBeacon', dependent: :destroy
7
- has_many :locatables
8
- has_many :locations, through: :locatables, source: :locatable, source_type: 'Company'
9
-
10
- has_many :projects, foreign_key: :owner_id, dependent: :destroy, inverse_of: :owner
11
-
12
- end
1
+ class Company < AbstractAdapter
2
+ has_many :roles, as: :ownable
3
+ has_many :admins, through: :roles, source: :user
4
+ accepts_nested_attributes_for :roles, allow_destroy: true
5
+
6
+ has_many :beacons, class_name: 'LocationBeacon', dependent: :destroy
7
+ has_many :locatables
8
+ has_many :locations, through: :locatables, source: :locatable, source_type: 'Company'
9
+
10
+ has_many :projects, foreign_key: :owner_id, dependent: :destroy, inverse_of: :owner
11
+
12
+ end
@@ -1,10 +1,10 @@
1
- class Job < AbstractAdapter
2
-
3
- has_many :project_jobs, dependent: :destroy
4
- accepts_nested_attributes_for :project_jobs, allow_destroy: true
5
-
6
- has_many :user_project_jobs, dependent: :destroy
7
- has_many :users, through: :user_project_jobs
8
- has_many :projects, through: :user_project_jobs
9
-
10
- end
1
+ class Job < AbstractAdapter
2
+
3
+ has_many :project_jobs, dependent: :destroy
4
+ accepts_nested_attributes_for :project_jobs, allow_destroy: true
5
+
6
+ has_many :user_project_jobs, dependent: :destroy
7
+ has_many :users, through: :user_project_jobs
8
+ has_many :projects, through: :user_project_jobs
9
+
10
+ end
@@ -1,6 +1,6 @@
1
- class Locatable < AbstractAdapter
2
- belongs_to :location
3
- belongs_to :locatable, polymorphic: true
4
-
5
- validates_inclusion_of :locatable_type, in: %w(Company)
6
- end
1
+ class Locatable < AbstractAdapter
2
+ belongs_to :location
3
+ belongs_to :locatable, polymorphic: true
4
+
5
+ validates_inclusion_of :locatable_type, in: %w(Company)
6
+ end
@@ -1,26 +1,26 @@
1
- class Location < AbstractAdapter
2
- has_many :locatables, dependent: :destroy
3
- has_many :companies, through: :locatables, source: :locatable, source_type: 'Company'
4
-
5
- has_many :beacons, class_name: 'LocationBeacon', dependent: :destroy
6
- has_one :gps, class_name: 'LocationGps', dependent: :destroy
7
- delegate :lat,:lng,:alt, to: :gps
8
-
9
- belongs_to :parent_location, foreign_key: :parent_location_id, class_name: 'Location', inverse_of: :child_locations
10
- has_many :child_locations, foreign_key: :parent_location_id, class_name: 'Location', dependent: :destroy, inverse_of: :parent_location
11
-
12
- has_many :user_locations, dependent: :destroy
13
-
14
- # isn't this list going to be kinda long? are there any reasonable constraints to put
15
- # on this random bit of metadata?
16
- validates_inclusion_of :kind, in: %w(airport terminal gate plane)
17
-
18
- accepts_nested_attributes_for :child_locations, allow_destroy: true
19
- accepts_nested_attributes_for :gps, allow_destroy: true
20
- accepts_nested_attributes_for :beacons, allow_destroy: true
21
-
22
- def coords
23
- [gps.lat, gps.lng, gps.alt]
24
- end
25
-
26
- end
1
+ class Location < AbstractAdapter
2
+ has_many :locatables, dependent: :destroy
3
+ has_many :companies, through: :locatables, source: :locatable, source_type: 'Company'
4
+
5
+ has_many :beacons, class_name: 'LocationBeacon', dependent: :destroy
6
+ has_one :gps, class_name: 'LocationGps', dependent: :destroy
7
+ delegate :lat,:lng,:alt, to: :gps
8
+
9
+ belongs_to :parent_location, foreign_key: :parent_location_id, class_name: 'Location', inverse_of: :child_locations
10
+ has_many :child_locations, foreign_key: :parent_location_id, class_name: 'Location', dependent: :destroy, inverse_of: :parent_location
11
+
12
+ has_many :user_locations, dependent: :destroy
13
+
14
+ # isn't this list going to be kinda long? are there any reasonable constraints to put
15
+ # on this random bit of metadata?
16
+ validates_inclusion_of :kind, in: %w(airport terminal gate plane)
17
+
18
+ accepts_nested_attributes_for :child_locations, allow_destroy: true
19
+ accepts_nested_attributes_for :gps, allow_destroy: true
20
+ accepts_nested_attributes_for :beacons, allow_destroy: true
21
+
22
+ def coords
23
+ [gps.lat, gps.lng, gps.alt]
24
+ end
25
+
26
+ end
@@ -1,19 +1,19 @@
1
- class LocationBeacon < AbstractAdapter
2
- belongs_to :location
3
- has_many :gps, through: :location
4
- belongs_to :company
5
-
6
- # B9407F30-F5F8-466E-AFF9-25556B57FE6D
7
- validates_format_of :uuid, with: /[0-9a-fA-F]{32}/ # 32 digit hexadecimal UUID
8
- validates_format_of :mac_address, with: /[0-9a-fA-F]{12}/ # 16 digit hexadecimal bluetooth MAC address
9
-
10
- before_validation :massage_ids
11
- def massage_ids
12
- self.uuid = (uuid||'').gsub(/[^0-9a-fA-F]+/,'').upcase
13
- self.mac_address = (mac_address||'').gsub(/[^0-9a-fA-F]+/,'').upcase
14
- end
15
-
16
- scope :low_battery, -> { where("last_known_battery_level < 20") }
17
-
18
-
19
- end
1
+ class LocationBeacon < AbstractAdapter
2
+ belongs_to :location
3
+ has_many :gps, through: :location
4
+ belongs_to :company
5
+
6
+ # B9407F30-F5F8-466E-AFF9-25556B57FE6D
7
+ validates_format_of :uuid, with: /[0-9a-fA-F]{32}/ # 32 digit hexadecimal UUID
8
+ validates_format_of :mac_address, with: /[0-9a-fA-F]{12}/ # 16 digit hexadecimal bluetooth MAC address
9
+
10
+ before_validation :massage_ids
11
+ def massage_ids
12
+ self.uuid = (uuid||'').gsub(/[^0-9a-fA-F]+/,'').upcase
13
+ self.mac_address = (mac_address||'').gsub(/[^0-9a-fA-F]+/,'').upcase
14
+ end
15
+
16
+ scope :low_battery, -> { where("last_known_battery_level < 20") }
17
+
18
+
19
+ end
@@ -1,11 +1,11 @@
1
- class LocationGps < AbstractAdapter
2
- belongs_to :location
3
- has_many :beacons, through: :location
4
-
5
- # lat and lng in degrees altitude in meters
6
- validates_numericality_of :lat, greater_than_or_equal_to: -90.0, less_than_or_equal_to: 90.0
7
- validates_numericality_of :lng, greater_than_or_equal_to: -180.0, less_than_or_equal_to: 180.0
8
- validates_numericality_of :alt
9
-
10
-
11
- end
1
+ class LocationGps < AbstractAdapter
2
+ belongs_to :location
3
+ has_many :beacons, through: :location
4
+
5
+ # lat and lng in degrees altitude in meters
6
+ validates_numericality_of :lat, greater_than_or_equal_to: -90.0, less_than_or_equal_to: 90.0
7
+ validates_numericality_of :lng, greater_than_or_equal_to: -180.0, less_than_or_equal_to: 180.0
8
+ validates_numericality_of :alt
9
+
10
+
11
+ end
@@ -1,20 +1,20 @@
1
- class Project < AbstractAdapter
2
- belongs_to :owner, foreign_key: :owner_id, class_name: 'Company'
3
-
4
- has_many :roles, as: :ownable
5
- has_many :admins, through: :roles, source: :user
6
- accepts_nested_attributes_for :roles, allow_destroy: true
7
-
8
- has_many :project_jobs, dependent: :destroy, inverse_of: :project
9
- has_many :jobs, through: :project_jobs
10
- accepts_nested_attributes_for :project_jobs, allow_destroy: true
11
-
12
- has_many :user_project_jobs, dependent: :destroy, inverse_of: :project
13
- has_many :users, through: :user_project_jobs, inverse_of: :projects
14
- accepts_nested_attributes_for :user_project_jobs, allow_destroy: true
15
-
16
- has_many :teams, dependent: :destroy, inverse_of: :project
17
- accepts_nested_attributes_for :teams, allow_destroy: true
18
-
19
-
20
- end
1
+ class Project < AbstractAdapter
2
+ belongs_to :owner, foreign_key: :owner_id, class_name: 'Company'
3
+
4
+ has_many :roles, as: :ownable
5
+ has_many :admins, through: :roles, source: :user
6
+ accepts_nested_attributes_for :roles, allow_destroy: true
7
+
8
+ has_many :project_jobs, dependent: :destroy, inverse_of: :project
9
+ has_many :jobs, through: :project_jobs
10
+ accepts_nested_attributes_for :project_jobs, allow_destroy: true
11
+
12
+ has_many :user_project_jobs, dependent: :destroy, inverse_of: :project
13
+ has_many :users, through: :user_project_jobs, inverse_of: :projects
14
+ accepts_nested_attributes_for :user_project_jobs, allow_destroy: true
15
+
16
+ has_many :teams, dependent: :destroy, inverse_of: :project
17
+ accepts_nested_attributes_for :teams, allow_destroy: true
18
+
19
+
20
+ end
@@ -1,7 +1,7 @@
1
- class ProjectJob < AbstractAdapter
2
- belongs_to :project
3
- belongs_to :job
4
-
5
- delegate :title, to: :job
6
-
7
- end
1
+ class ProjectJob < AbstractAdapter
2
+ belongs_to :project
3
+ belongs_to :job
4
+
5
+ delegate :title, to: :job
6
+
7
+ end
@@ -1,25 +1,25 @@
1
- class Role < AbstractAdapter
2
- belongs_to :user
3
- belongs_to :ownable, polymorphic: true
4
-
5
- validates_uniqueness_of :user_id, scope: [:ownable_type,:ownable_id], unless: "user_id.nil?", message: "user has already been assigned that role"
6
- validates_inclusion_of :ownable_type, in: ['Company', 'Project']
7
-
8
- delegate :email, to: :user, allow_nil: true
9
- def attributes
10
- scuper.merge(email: email)
11
- end
12
-
13
- def self.ownable_assign_options(model=nil)
14
- (Company.all + Project.all).map { |i| [ "#{i.class}: #{i.name}", "#{i.class}-#{i.id}"] }
15
- end
16
-
17
- def ownable_assign
18
- ownable.present? ? "#{ownable_type}-#{ownable_id}" : nil
19
- end
20
-
21
- def ownable_assign=(value)
22
- self.ownable_type,self.ownable_id = value.split('-')
23
- end
24
-
25
- end
1
+ class Role < AbstractAdapter
2
+ belongs_to :user
3
+ belongs_to :ownable, polymorphic: true
4
+
5
+ validates_uniqueness_of :user_id, scope: [:ownable_type,:ownable_id], unless: Proc.new {|u| u.user_id.nil? }, message: "user has already been assigned that role"
6
+ validates_inclusion_of :ownable_type, in: ['Company', 'Project']
7
+
8
+ delegate :email, to: :user, allow_nil: true
9
+ def attributes
10
+ scuper.merge(email: email)
11
+ end
12
+
13
+ def self.ownable_assign_options(model=nil)
14
+ (Company.all + Project.all).map { |i| [ "#{i.class}: #{i.name}", "#{i.class}-#{i.id}"] }
15
+ end
16
+
17
+ def ownable_assign
18
+ ownable.present? ? "#{ownable_type}-#{ownable_id}" : nil
19
+ end
20
+
21
+ def ownable_assign=(value)
22
+ self.ownable_type,self.ownable_id = value.split('-')
23
+ end
24
+
25
+ end
@@ -1,9 +1,9 @@
1
- class Team < AbstractAdapter
2
- belongs_to :project
3
- belongs_to :creator, class_name: 'User'
4
-
5
- has_many :team_users, inverse_of: :team
6
- has_many :users, through: :team_users
7
- accepts_nested_attributes_for :team_users, allow_destroy: true
8
-
9
- end
1
+ class Team < AbstractAdapter
2
+ belongs_to :project
3
+ belongs_to :creator, class_name: 'User'
4
+
5
+ has_many :team_users, inverse_of: :team
6
+ has_many :users, through: :team_users
7
+ accepts_nested_attributes_for :team_users, allow_destroy: true
8
+
9
+ end
@@ -1,13 +1,13 @@
1
- class TeamUser < AbstractAdapter
2
- belongs_to :user
3
- belongs_to :team
4
-
5
- validate :user_on_project
6
-
7
- def user_on_project
8
- unless user && team && user.projects.include?(team.project)
9
- errors.add(:user, "#{user.try(:name)} is not on the #{team.try(:project).try(:name)} project")
10
- end
11
- end
12
-
13
- end
1
+ class TeamUser < AbstractAdapter
2
+ belongs_to :user
3
+ belongs_to :team
4
+
5
+ validate :user_on_project
6
+
7
+ def user_on_project
8
+ unless user && team && user.projects.include?(team.project)
9
+ errors.add(:user, "#{user.try(:name)} is not on the #{team.try(:project).try(:name)} project")
10
+ end
11
+ end
12
+
13
+ end