├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.textile ├── Rakefile ├── coming_soon.rb ├── config.ru ├── config.yml.example ├── database.yml.example ├── db └── migrate │ └── 001_users.rb ├── features ├── cablegate.feature ├── signing_up.feature ├── step_definitions │ ├── user_steps.rb │ └── web_steps.rb └── support │ ├── env.rb │ └── paths.rb └── views ├── backstage.erb ├── index.erb └── layout.erb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/README.textile -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/Rakefile -------------------------------------------------------------------------------- /coming_soon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/coming_soon.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/config.ru -------------------------------------------------------------------------------- /config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/config.yml.example -------------------------------------------------------------------------------- /database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/database.yml.example -------------------------------------------------------------------------------- /db/migrate/001_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/db/migrate/001_users.rb -------------------------------------------------------------------------------- /features/cablegate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/features/cablegate.feature -------------------------------------------------------------------------------- /features/signing_up.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/features/signing_up.feature -------------------------------------------------------------------------------- /features/step_definitions/user_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/features/step_definitions/user_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/web_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/features/step_definitions/web_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/features/support/paths.rb -------------------------------------------------------------------------------- /views/backstage.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/views/backstage.erb -------------------------------------------------------------------------------- /views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/views/index.erb -------------------------------------------------------------------------------- /views/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renderedtext/coming-soon/HEAD/views/layout.erb --------------------------------------------------------------------------------