├── .gitignore ├── .powder ├── .rspec ├── .rvmrc ├── .travis.yml ├── CHANGELOG.md ├── Capfile.repos ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── chevron.gif │ │ ├── chevron_overlay.png │ │ ├── chosen-sprite.png │ │ ├── close.gif │ │ ├── icon_home.gif │ │ ├── jquery-ui │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_75_ffffff_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ ├── ui-icons_f6cf3b_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ ├── loading.gif │ │ └── uniform │ │ │ ├── bg-input-focus.png │ │ │ ├── bg-input.png │ │ │ └── sprite.png │ ├── javascripts │ │ ├── app │ │ │ ├── jobs.js.coffee │ │ │ └── projects.js.coffee │ │ ├── application.js │ │ ├── common │ │ │ └── bootstrap.js.coffee │ │ └── libs │ │ │ ├── bootbox.js │ │ │ ├── history.js │ │ │ ├── timeago.js │ │ │ └── url_vars.js │ └── stylesheets │ │ ├── application.css │ │ ├── bootstrap_and_overrides.css.less │ │ ├── custom.css.scss │ │ └── libs │ │ ├── _breadcrumbs.css.scss │ │ ├── _chosen.css │ │ ├── _space.css.scss │ │ ├── _uniform.css │ │ └── jquery-ui.css ├── controllers │ ├── application_controller.rb │ ├── dashboard_controller.rb │ ├── jobs_controller.rb │ ├── projects_controller.rb │ └── sessions_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── job.rb │ ├── job │ │ └── cap_execute.rb │ ├── project.rb │ ├── project │ │ ├── clone_repo.rb │ │ ├── pull_repo.rb │ │ └── remove_repo.rb │ └── user.rb └── views │ ├── applications │ └── index.html.erb │ ├── dashboard │ └── index.html.erb │ ├── jobs │ ├── new.html.erb │ └── show.html.erb │ ├── kaminari │ ├── _gap.html.erb │ ├── _next_page.html.erb │ ├── _page.html.erb │ ├── _paginator.html.erb │ └── _prev_page.html.erb │ ├── layouts │ ├── _breadcrumbs.html.erb │ └── application.html.erb │ ├── projects │ ├── _form.html.erb │ ├── _new_github.html.erb │ ├── _project.html.erb │ ├── _repo.html.erb │ ├── _repos.html.erb │ ├── _task.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── show │ │ ├── _hidden_tasks.html.erb │ │ ├── _history.html.erb │ │ ├── _info.html.erb │ │ └── _tasks.html.erb │ └── users │ └── sessions │ └── new.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.example.yml ├── database.travis.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── sidekiq.rb │ ├── simple_form.rb │ ├── strano.rb │ └── wrap_parameters.rb ├── locales │ ├── en.yml │ └── simple_form.en.yml ├── routes.rb └── strano.example.yml ├── db ├── migrate │ ├── 20111206203808_create_users.rb │ ├── 20111210145824_create_projects.rb │ ├── 20111213110503_add_github_data_to_projects.rb │ ├── 20111219092116_create_jobs.rb │ ├── 20111220001943_add_completed_at_to_jobs.rb │ ├── 20111224104341_add_cloned_at_to_projects.rb │ ├── 20111226123335_remove_project_user.rb │ ├── 20120104000456_add_stage_to_jobs.rb │ ├── 20120104014428_add_deleted_at.rb │ ├── 20120104235248_add_pull_status_to_projects.rb │ ├── 20120124191129_add_success_to_jobs.rb │ ├── 20120124200626_add_locked_to_projects.rb │ ├── 20120124204050_add_verbosity_to_jobs.rb │ ├── 20120125225412_convert_email_to_username.rb │ ├── 20120213093204_add_token_to_users.rb │ ├── 20120322195922_change_verbosity_default.rb │ ├── 20120323103049_add_variables_store_to_jobs.rb │ ├── 20120323122036_change_variables_to_branch.rb │ └── 20120913160334_rename_github_data_to_data.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── lib ├── assets │ └── .gitkeep ├── capistrano_monkey │ └── configuration │ │ └── namespaces.rb ├── github.rb ├── github │ ├── base.rb │ ├── key.rb │ ├── org.rb │ ├── orgs.rb │ ├── repo.rb │ ├── repos.rb │ └── user.rb ├── kernel.rb ├── simple_form │ └── inputs │ │ ├── cancel_button.rb │ │ └── submit_button.rb ├── strano.rb ├── strano │ ├── cli.rb │ ├── configuration.rb │ ├── logger.rb │ ├── repo.rb │ ├── sidekiq_middleware │ │ └── exception_handler.rb │ └── version.rb ├── tasks │ └── .gitkeep └── templates │ └── erb │ └── scaffold │ └── _form.html.erb ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script ├── bootstrap └── rails ├── spec ├── controllers │ └── .gitkeep ├── factories.rb ├── helpers │ └── application_helper_spec.rb ├── lib │ ├── github │ │ └── key_spec.rb │ ├── github_spec.rb │ └── strano │ │ └── repo_spec.rb ├── models │ ├── job_spec.rb │ ├── project_spec.rb │ └── user_spec.rb ├── repos │ └── joelmoss │ │ └── strano │ │ ├── Capfile │ │ └── config │ │ └── deploy.rb ├── requests │ └── authentication_spec.rb ├── routing │ └── .gitkeep ├── spec_helper.rb ├── support │ ├── db_cleaner.rb │ ├── garbage.rb │ └── vcr.rb └── vcr_casettes │ ├── Github_Key │ └── _create.yml │ └── Github_Repo │ └── _repo.yml └── vendor ├── assets └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/.gitignore -------------------------------------------------------------------------------- /.powder: -------------------------------------------------------------------------------- 1 | strano 2 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use 1.9.3@strano --install --create -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Capfile.repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/Capfile.repos -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/Guardfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/chevron.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/chevron.gif -------------------------------------------------------------------------------- /app/assets/images/chevron_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/chevron_overlay.png -------------------------------------------------------------------------------- /app/assets/images/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/chosen-sprite.png -------------------------------------------------------------------------------- /app/assets/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/close.gif -------------------------------------------------------------------------------- /app/assets/images/icon_home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/icon_home.gif -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_glass_75_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_glass_75_ffffff_1x400.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_f6cf3b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_f6cf3b_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jquery-ui/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/jquery-ui/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /app/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/loading.gif -------------------------------------------------------------------------------- /app/assets/images/uniform/bg-input-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/uniform/bg-input-focus.png -------------------------------------------------------------------------------- /app/assets/images/uniform/bg-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/uniform/bg-input.png -------------------------------------------------------------------------------- /app/assets/images/uniform/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/images/uniform/sprite.png -------------------------------------------------------------------------------- /app/assets/javascripts/app/jobs.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/javascripts/app/jobs.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/projects.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/javascripts/app/projects.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/common/bootstrap.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/javascripts/common/bootstrap.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/libs/bootbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/javascripts/libs/bootbox.js -------------------------------------------------------------------------------- /app/assets/javascripts/libs/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/javascripts/libs/history.js -------------------------------------------------------------------------------- /app/assets/javascripts/libs/timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/javascripts/libs/timeago.js -------------------------------------------------------------------------------- /app/assets/javascripts/libs/url_vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/javascripts/libs/url_vars.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_and_overrides.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/stylesheets/bootstrap_and_overrides.css.less -------------------------------------------------------------------------------- /app/assets/stylesheets/custom.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/stylesheets/custom.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/libs/_breadcrumbs.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/stylesheets/libs/_breadcrumbs.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/libs/_chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/stylesheets/libs/_chosen.css -------------------------------------------------------------------------------- /app/assets/stylesheets/libs/_space.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/stylesheets/libs/_space.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/libs/_uniform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/stylesheets/libs/_uniform.css -------------------------------------------------------------------------------- /app/assets/stylesheets/libs/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/assets/stylesheets/libs/jquery-ui.css -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/controllers/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/jobs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/controllers/jobs_controller.rb -------------------------------------------------------------------------------- /app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/models/job.rb -------------------------------------------------------------------------------- /app/models/job/cap_execute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/models/job/cap_execute.rb -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/project/clone_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/models/project/clone_repo.rb -------------------------------------------------------------------------------- /app/models/project/pull_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/models/project/pull_repo.rb -------------------------------------------------------------------------------- /app/models/project/remove_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/models/project/remove_repo.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/applications/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/applications/index.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/dashboard/index.html.erb -------------------------------------------------------------------------------- /app/views/jobs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/jobs/new.html.erb -------------------------------------------------------------------------------- /app/views/jobs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/jobs/show.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/kaminari/_gap.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/kaminari/_next_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/kaminari/_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/kaminari/_paginator.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/kaminari/_prev_page.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_breadcrumbs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/layouts/_breadcrumbs.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/projects/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/_form.html.erb -------------------------------------------------------------------------------- /app/views/projects/_new_github.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/_new_github.html.erb -------------------------------------------------------------------------------- /app/views/projects/_project.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/_project.html.erb -------------------------------------------------------------------------------- /app/views/projects/_repo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/_repo.html.erb -------------------------------------------------------------------------------- /app/views/projects/_repos.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/_repos.html.erb -------------------------------------------------------------------------------- /app/views/projects/_task.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/_task.html.erb -------------------------------------------------------------------------------- /app/views/projects/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/index.html.erb -------------------------------------------------------------------------------- /app/views/projects/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/new.html.erb -------------------------------------------------------------------------------- /app/views/projects/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/show.html.erb -------------------------------------------------------------------------------- /app/views/projects/show/_hidden_tasks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/show/_hidden_tasks.html.erb -------------------------------------------------------------------------------- /app/views/projects/show/_history.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/show/_history.html.erb -------------------------------------------------------------------------------- /app/views/projects/show/_info.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/show/_info.html.erb -------------------------------------------------------------------------------- /app/views/projects/show/_tasks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/projects/show/_tasks.html.erb -------------------------------------------------------------------------------- /app/views/users/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/app/views/users/sessions/new.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/database.example.yml -------------------------------------------------------------------------------- /config/database.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/database.travis.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/strano.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/initializers/strano.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/strano.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/config/strano.example.yml -------------------------------------------------------------------------------- /db/migrate/20111206203808_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20111206203808_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20111210145824_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20111210145824_create_projects.rb -------------------------------------------------------------------------------- /db/migrate/20111213110503_add_github_data_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20111213110503_add_github_data_to_projects.rb -------------------------------------------------------------------------------- /db/migrate/20111219092116_create_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20111219092116_create_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20111220001943_add_completed_at_to_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20111220001943_add_completed_at_to_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20111224104341_add_cloned_at_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20111224104341_add_cloned_at_to_projects.rb -------------------------------------------------------------------------------- /db/migrate/20111226123335_remove_project_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20111226123335_remove_project_user.rb -------------------------------------------------------------------------------- /db/migrate/20120104000456_add_stage_to_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120104000456_add_stage_to_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20120104014428_add_deleted_at.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120104014428_add_deleted_at.rb -------------------------------------------------------------------------------- /db/migrate/20120104235248_add_pull_status_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120104235248_add_pull_status_to_projects.rb -------------------------------------------------------------------------------- /db/migrate/20120124191129_add_success_to_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120124191129_add_success_to_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20120124200626_add_locked_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120124200626_add_locked_to_projects.rb -------------------------------------------------------------------------------- /db/migrate/20120124204050_add_verbosity_to_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120124204050_add_verbosity_to_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20120125225412_convert_email_to_username.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120125225412_convert_email_to_username.rb -------------------------------------------------------------------------------- /db/migrate/20120213093204_add_token_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120213093204_add_token_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20120322195922_change_verbosity_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120322195922_change_verbosity_default.rb -------------------------------------------------------------------------------- /db/migrate/20120323103049_add_variables_store_to_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120323103049_add_variables_store_to_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20120323122036_change_variables_to_branch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120323122036_change_variables_to_branch.rb -------------------------------------------------------------------------------- /db/migrate/20120913160334_rename_github_data_to_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/migrate/20120913160334_rename_github_data_to_data.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/capistrano_monkey/configuration/namespaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/capistrano_monkey/configuration/namespaces.rb -------------------------------------------------------------------------------- /lib/github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/github.rb -------------------------------------------------------------------------------- /lib/github/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/github/base.rb -------------------------------------------------------------------------------- /lib/github/key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/github/key.rb -------------------------------------------------------------------------------- /lib/github/org.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/github/org.rb -------------------------------------------------------------------------------- /lib/github/orgs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/github/orgs.rb -------------------------------------------------------------------------------- /lib/github/repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/github/repo.rb -------------------------------------------------------------------------------- /lib/github/repos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/github/repos.rb -------------------------------------------------------------------------------- /lib/github/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/github/user.rb -------------------------------------------------------------------------------- /lib/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/kernel.rb -------------------------------------------------------------------------------- /lib/simple_form/inputs/cancel_button.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/simple_form/inputs/cancel_button.rb -------------------------------------------------------------------------------- /lib/simple_form/inputs/submit_button.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/simple_form/inputs/submit_button.rb -------------------------------------------------------------------------------- /lib/strano.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/strano.rb -------------------------------------------------------------------------------- /lib/strano/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/strano/cli.rb -------------------------------------------------------------------------------- /lib/strano/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/strano/configuration.rb -------------------------------------------------------------------------------- /lib/strano/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/strano/logger.rb -------------------------------------------------------------------------------- /lib/strano/repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/strano/repo.rb -------------------------------------------------------------------------------- /lib/strano/sidekiq_middleware/exception_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/strano/sidekiq_middleware/exception_handler.rb -------------------------------------------------------------------------------- /lib/strano/version.rb: -------------------------------------------------------------------------------- 1 | module Strano 2 | VERSION = "1.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/script/rails -------------------------------------------------------------------------------- /spec/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/github/key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/lib/github/key_spec.rb -------------------------------------------------------------------------------- /spec/lib/github_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/lib/github_spec.rb -------------------------------------------------------------------------------- /spec/lib/strano/repo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/lib/strano/repo_spec.rb -------------------------------------------------------------------------------- /spec/models/job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/models/job_spec.rb -------------------------------------------------------------------------------- /spec/models/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/models/project_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/repos/joelmoss/strano/Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/repos/joelmoss/strano/Capfile -------------------------------------------------------------------------------- /spec/repos/joelmoss/strano/config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/repos/joelmoss/strano/config/deploy.rb -------------------------------------------------------------------------------- /spec/requests/authentication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/requests/authentication_spec.rb -------------------------------------------------------------------------------- /spec/routing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/db_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/support/db_cleaner.rb -------------------------------------------------------------------------------- /spec/support/garbage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/support/garbage.rb -------------------------------------------------------------------------------- /spec/support/vcr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/support/vcr.rb -------------------------------------------------------------------------------- /spec/vcr_casettes/Github_Key/_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/vcr_casettes/Github_Key/_create.yml -------------------------------------------------------------------------------- /spec/vcr_casettes/Github_Repo/_repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoss/strano/HEAD/spec/vcr_casettes/Github_Repo/_repo.yml -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------