introspective_admin 0.0.6 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.DS_Store +0 -0
- data/.ruby-version +1 -0
- data/.travis.yml +16 -9
- data/CHANGELOG.md +28 -8
- data/Gemfile +6 -6
- data/Gemfile.lock +264 -247
- data/Gemfile.lock.rails4 +256 -0
- data/introspective_admin.gemspec +44 -41
- data/lib/introspective_admin/base.rb +200 -184
- data/lib/introspective_admin/version.rb +3 -3
- data/spec/admin/company_admin_spec.rb +72 -72
- data/spec/admin/job_admin_spec.rb +61 -61
- data/spec/admin/location_admin_spec.rb +66 -66
- data/spec/admin/location_beacon_admin_spec.rb +73 -73
- data/spec/admin/project__admin_spec.rb +71 -71
- data/spec/admin/user_admin_spec.rb +64 -64
- data/spec/dummy/README.rdoc +28 -28
- data/spec/dummy/Rakefile +6 -6
- data/spec/dummy/app/admin/company_admin.rb +4 -4
- data/spec/dummy/app/admin/job_admin.rb +4 -4
- data/spec/dummy/app/admin/location_admin.rb +4 -4
- data/spec/dummy/app/admin/location_beacon_admin.rb +6 -6
- data/spec/dummy/app/admin/project_admin.rb +6 -6
- data/spec/dummy/app/admin/role_admin.rb +5 -5
- data/spec/dummy/app/admin/user_admin.rb +13 -13
- data/spec/dummy/app/assets/javascripts/application.js +13 -13
- data/spec/dummy/app/assets/stylesheets/application.css +15 -15
- data/spec/dummy/app/controllers/application_controller.rb +8 -5
- data/spec/dummy/app/helpers/application_helper.rb +3 -2
- data/spec/dummy/app/models/abstract_adapter.rb +12 -12
- data/spec/dummy/app/models/admin_user.rb +6 -6
- data/spec/dummy/app/models/company.rb +12 -12
- data/spec/dummy/app/models/job.rb +10 -10
- data/spec/dummy/app/models/locatable.rb +6 -6
- data/spec/dummy/app/models/location.rb +26 -26
- data/spec/dummy/app/models/location_beacon.rb +19 -19
- data/spec/dummy/app/models/location_gps.rb +11 -11
- data/spec/dummy/app/models/project.rb +20 -20
- data/spec/dummy/app/models/project_job.rb +7 -7
- data/spec/dummy/app/models/role.rb +25 -25
- data/spec/dummy/app/models/team.rb +9 -9
- data/spec/dummy/app/models/team_user.rb +13 -13
- data/spec/dummy/app/models/user.rb +68 -68
- data/spec/dummy/app/models/user_location.rb +28 -28
- data/spec/dummy/app/models/user_project_job.rb +16 -16
- data/spec/dummy/app/views/layouts/application.html.erb +13 -13
- data/spec/dummy/bin/bundle +3 -3
- data/spec/dummy/bin/rails +4 -4
- data/spec/dummy/bin/rake +4 -4
- data/spec/dummy/bin/setup +29 -29
- data/spec/dummy/config/application.rb +34 -32
- data/spec/dummy/config/boot.rb +5 -5
- data/spec/dummy/config/database.yml +22 -22
- data/spec/dummy/config/environment.rb +11 -11
- data/spec/dummy/config/environments/development.rb +45 -41
- data/spec/dummy/config/environments/production.rb +82 -79
- data/spec/dummy/config/environments/test.rb +50 -43
- data/spec/dummy/config/initializers/active_admin.rb +7 -7
- data/spec/dummy/config/initializers/assets.rb +13 -11
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -7
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -3
- data/spec/dummy/config/initializers/devise.rb +263 -263
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -4
- data/spec/dummy/config/initializers/inflections.rb +16 -16
- data/spec/dummy/config/initializers/mime_types.rb +4 -4
- data/spec/dummy/config/initializers/session_store.rb +3 -3
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -14
- data/spec/dummy/config/locales/devise.en.yml +60 -60
- data/spec/dummy/config/locales/en.yml +23 -23
- data/spec/dummy/config/routes.rb +9 -9
- data/spec/dummy/config/secrets.yml +20 -20
- data/spec/dummy/config.ru +4 -4
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20141002205024_devise_create_users.rb +42 -42
- data/spec/dummy/db/migrate/20141002211055_devise_create_admin_users.rb +48 -48
- data/spec/dummy/db/migrate/20141002211057_create_active_admin_comments.rb +19 -19
- data/spec/dummy/db/migrate/20141002220722_add_lockable_to_users.rb +8 -8
- data/spec/dummy/db/migrate/20150406213646_create_companies.rb +11 -11
- data/spec/dummy/db/migrate/20150414213154_add_user_authentication_token.rb +11 -11
- data/spec/dummy/db/migrate/20150415222005_create_roles.rb +12 -12
- data/spec/dummy/db/migrate/20150505181635_create_chats.rb +9 -9
- data/spec/dummy/db/migrate/20150505181636_create_chat_users.rb +11 -11
- data/spec/dummy/db/migrate/20150505181640_create_chat_messages.rb +11 -11
- data/spec/dummy/db/migrate/20150507191529_create_chat_message_users.rb +11 -11
- data/spec/dummy/db/migrate/20150601200526_create_locations.rb +13 -13
- data/spec/dummy/db/migrate/20150601200533_create_locatables.rb +10 -10
- data/spec/dummy/db/migrate/20150601212924_create_location_beacons.rb +16 -16
- data/spec/dummy/db/migrate/20150601213542_create_location_gps.rb +12 -12
- data/spec/dummy/db/migrate/20150609201823_create_user_locations.rb +14 -14
- data/spec/dummy/db/migrate/20150617232519_create_projects.rb +10 -10
- data/spec/dummy/db/migrate/20150617232521_create_jobs.rb +9 -9
- data/spec/dummy/db/migrate/20150617232522_create_project_jobs.rb +11 -11
- data/spec/dummy/db/migrate/20150623170133_create_user_project_jobs.rb +12 -12
- data/spec/dummy/db/migrate/20150701234929_create_teams.rb +11 -11
- data/spec/dummy/db/migrate/20150701234930_create_team_users.rb +11 -11
- data/spec/dummy/db/migrate/20150727214950_add_confirmable_to_devise.rb +11 -11
- data/spec/dummy/db/migrate/20150820190524_add_user_names.rb +6 -6
- data/spec/dummy/db/migrate/20150909225019_add_password_to_project.rb +5 -5
- data/spec/dummy/db/schema.rb +264 -264
- data/spec/dummy/public/404.html +67 -67
- data/spec/dummy/public/422.html +67 -67
- data/spec/dummy/public/500.html +66 -66
- data/spec/rails_helper.rb +27 -24
- metadata +84 -12
@@ -1,13 +1,13 @@
|
|
1
|
-
class CreateLocations < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :locations do |t|
|
4
|
-
t.string :name, null: false
|
5
|
-
t.string :kind
|
6
|
-
t.integer :parent_location_id, index: true, foreign_key: false
|
7
|
-
t.integer :unreflected_id, index: true, foreign_key: false
|
8
|
-
|
9
|
-
t.timestamps null: false
|
10
|
-
end
|
11
|
-
add_index :locations, [:parent_location_id,:kind,:name], unique: true
|
12
|
-
end
|
13
|
-
end
|
1
|
+
class CreateLocations < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :locations do |t|
|
4
|
+
t.string :name, null: false
|
5
|
+
t.string :kind
|
6
|
+
t.integer :parent_location_id, index: true, foreign_key: false
|
7
|
+
t.integer :unreflected_id, index: true, foreign_key: false
|
8
|
+
|
9
|
+
t.timestamps null: false
|
10
|
+
end
|
11
|
+
add_index :locations, [:parent_location_id,:kind,:name], unique: true
|
12
|
+
end
|
13
|
+
end
|
@@ -1,10 +1,10 @@
|
|
1
|
-
class CreateLocatables < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :locatables do |t|
|
4
|
-
t.references :location
|
5
|
-
t.references :locatable, polymorphic: true, index: true
|
6
|
-
|
7
|
-
t.timestamps null: false
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
1
|
+
class CreateLocatables < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :locatables do |t|
|
4
|
+
t.references :location
|
5
|
+
t.references :locatable, polymorphic: true, index: true
|
6
|
+
|
7
|
+
t.timestamps null: false
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
@@ -1,16 +1,16 @@
|
|
1
|
-
class CreateLocationBeacons < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :location_beacons do |t|
|
4
|
-
t.references :location
|
5
|
-
t.references :company, null: false
|
6
|
-
t.string :mac_address, limit: 12
|
7
|
-
t.string :uuid, null: false, limit: 32
|
8
|
-
t.integer :major, null: false
|
9
|
-
t.integer :minor, null: false
|
10
|
-
t.integer :last_known_battery_level
|
11
|
-
|
12
|
-
t.timestamps null: false
|
13
|
-
end
|
14
|
-
add_index :location_beacons, [:company_id,:uuid,:major,:minor], name: "index_location_beacons_unique_company_identifier", unique: true
|
15
|
-
end
|
16
|
-
end
|
1
|
+
class CreateLocationBeacons < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :location_beacons do |t|
|
4
|
+
t.references :location
|
5
|
+
t.references :company, null: false
|
6
|
+
t.string :mac_address, limit: 12
|
7
|
+
t.string :uuid, null: false, limit: 32
|
8
|
+
t.integer :major, null: false
|
9
|
+
t.integer :minor, null: false
|
10
|
+
t.integer :last_known_battery_level
|
11
|
+
|
12
|
+
t.timestamps null: false
|
13
|
+
end
|
14
|
+
add_index :location_beacons, [:company_id,:uuid,:major,:minor], name: "index_location_beacons_unique_company_identifier", unique: true
|
15
|
+
end
|
16
|
+
end
|
@@ -1,12 +1,12 @@
|
|
1
|
-
class CreateLocationGps < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :location_gps do |t|
|
4
|
-
t.references :location, index: true, foreign_key: true
|
5
|
-
t.float :lat, null: false
|
6
|
-
t.float :lng, null: false
|
7
|
-
t.float :alt, default: 0
|
8
|
-
|
9
|
-
t.timestamps null: false
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
1
|
+
class CreateLocationGps < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :location_gps do |t|
|
4
|
+
t.references :location, index: true, foreign_key: true
|
5
|
+
t.float :lat, null: false
|
6
|
+
t.float :lng, null: false
|
7
|
+
t.float :alt, default: 0
|
8
|
+
|
9
|
+
t.timestamps null: false
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -1,14 +1,14 @@
|
|
1
|
-
class CreateUserLocations < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :user_locations do |t|
|
4
|
-
t.references :user, index: true, foreign_key: true
|
5
|
-
t.references :location, index: true, foreign_key: true
|
6
|
-
t.references :detectable, polymorphic: true, index: true
|
7
|
-
t.float :lat
|
8
|
-
t.float :lng
|
9
|
-
t.float :alt
|
10
|
-
|
11
|
-
t.timestamps null: false
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
1
|
+
class CreateUserLocations < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :user_locations do |t|
|
4
|
+
t.references :user, index: true, foreign_key: true
|
5
|
+
t.references :location, index: true, foreign_key: true
|
6
|
+
t.references :detectable, polymorphic: true, index: true
|
7
|
+
t.float :lat
|
8
|
+
t.float :lng
|
9
|
+
t.float :alt
|
10
|
+
|
11
|
+
t.timestamps null: false
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -1,10 +1,10 @@
|
|
1
|
-
class CreateProjects < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :projects do |t|
|
4
|
-
t.string :name, null: false
|
5
|
-
t.integer :owner_id, references: :companies, index: true, foreign_key: true
|
6
|
-
|
7
|
-
t.timestamps null: false
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
1
|
+
class CreateProjects < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :projects do |t|
|
4
|
+
t.string :name, null: false
|
5
|
+
t.integer :owner_id, references: :companies, index: true, foreign_key: true
|
6
|
+
|
7
|
+
t.timestamps null: false
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
@@ -1,9 +1,9 @@
|
|
1
|
-
class CreateJobs < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :jobs do |t|
|
4
|
-
t.string :title, null: false
|
5
|
-
|
6
|
-
t.timestamps null: false
|
7
|
-
end
|
8
|
-
end
|
9
|
-
end
|
1
|
+
class CreateJobs < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :jobs do |t|
|
4
|
+
t.string :title, null: false
|
5
|
+
|
6
|
+
t.timestamps null: false
|
7
|
+
end
|
8
|
+
end
|
9
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
class CreateProjectJobs < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :project_jobs do |t|
|
4
|
-
t.references :project, index: true, null: false, foreign_key: true
|
5
|
-
t.references :job, index: true, null: false, foreign_key: true
|
6
|
-
|
7
|
-
t.timestamps null: false
|
8
|
-
end
|
9
|
-
add_index :project_jobs, [:project_id,:job_id], unique: true
|
10
|
-
end
|
11
|
-
end
|
1
|
+
class CreateProjectJobs < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :project_jobs do |t|
|
4
|
+
t.references :project, index: true, null: false, foreign_key: true
|
5
|
+
t.references :job, index: true, null: false, foreign_key: true
|
6
|
+
|
7
|
+
t.timestamps null: false
|
8
|
+
end
|
9
|
+
add_index :project_jobs, [:project_id,:job_id], unique: true
|
10
|
+
end
|
11
|
+
end
|
@@ -1,12 +1,12 @@
|
|
1
|
-
class CreateUserProjectJobs < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :user_project_jobs do |t|
|
4
|
-
t.references :user, index: true, foreign_key: true, null: false
|
5
|
-
t.references :project, index: true, foreign_key: true, null: false
|
6
|
-
t.references :job, index: true, foreign_key: true, null: false
|
7
|
-
|
8
|
-
t.timestamps null: false
|
9
|
-
end
|
10
|
-
add_index :user_project_jobs, [:user_id,:project_id,:job_id], unique: true
|
11
|
-
end
|
12
|
-
end
|
1
|
+
class CreateUserProjectJobs < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :user_project_jobs do |t|
|
4
|
+
t.references :user, index: true, foreign_key: true, null: false
|
5
|
+
t.references :project, index: true, foreign_key: true, null: false
|
6
|
+
t.references :job, index: true, foreign_key: true, null: false
|
7
|
+
|
8
|
+
t.timestamps null: false
|
9
|
+
end
|
10
|
+
add_index :user_project_jobs, [:user_id,:project_id,:job_id], unique: true
|
11
|
+
end
|
12
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
class CreateTeams < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :teams do |t|
|
4
|
-
t.string :name
|
5
|
-
t.references :project, index: true, foreign_key: true
|
6
|
-
t.references :creator, references: :users, index: true, foreign_key: true
|
7
|
-
|
8
|
-
t.timestamps null: false
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
1
|
+
class CreateTeams < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :teams do |t|
|
4
|
+
t.string :name
|
5
|
+
t.references :project, index: true, foreign_key: true
|
6
|
+
t.references :creator, references: :users, index: true, foreign_key: true
|
7
|
+
|
8
|
+
t.timestamps null: false
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
class CreateTeamUsers < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table :team_users do |t|
|
4
|
-
t.references :user, index: true, foreign_key: true
|
5
|
-
t.references :team, index: true, foreign_key: true
|
6
|
-
|
7
|
-
t.timestamps null: false
|
8
|
-
end
|
9
|
-
add_index :team_users, [:user_id,:team_id], unique: true
|
10
|
-
end
|
11
|
-
end
|
1
|
+
class CreateTeamUsers < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :team_users do |t|
|
4
|
+
t.references :user, index: true, foreign_key: true
|
5
|
+
t.references :team, index: true, foreign_key: true
|
6
|
+
|
7
|
+
t.timestamps null: false
|
8
|
+
end
|
9
|
+
add_index :team_users, [:user_id,:team_id], unique: true
|
10
|
+
end
|
11
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
class AddConfirmableToDevise < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
change_table(:users) do |t|
|
4
|
-
t.string :confirmation_token
|
5
|
-
t.datetime :confirmed_at
|
6
|
-
t.datetime :confirmation_sent_at
|
7
|
-
t.string :unconfirmed_email
|
8
|
-
end
|
9
|
-
add_index :users, :confirmation_token, unique: true
|
10
|
-
end
|
11
|
-
end
|
1
|
+
class AddConfirmableToDevise < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
change_table(:users) do |t|
|
4
|
+
t.string :confirmation_token
|
5
|
+
t.datetime :confirmed_at
|
6
|
+
t.datetime :confirmation_sent_at
|
7
|
+
t.string :unconfirmed_email
|
8
|
+
end
|
9
|
+
add_index :users, :confirmation_token, unique: true
|
10
|
+
end
|
11
|
+
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
class AddUserNames < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
add_column :users, :first_name, :string
|
4
|
-
add_column :users, :last_name, :string
|
5
|
-
end
|
6
|
-
end
|
1
|
+
class AddUserNames < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
add_column :users, :first_name, :string
|
4
|
+
add_column :users, :last_name, :string
|
5
|
+
end
|
6
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
class AddPasswordToProject < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
add_column :projects, :default_password, :string
|
4
|
-
end
|
5
|
-
end
|
1
|
+
class AddPasswordToProject < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
add_column :projects, :default_password, :string
|
4
|
+
end
|
5
|
+
end
|