standup 0.6.5 → 0.6.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/.rbenv-version +1 -1
- data/lib/standup/ec2/base.rb +2 -1
- data/lib/standup/ec2/instance.rb +1 -1
- data/lib/standup/settings.rb +10 -14
- data/lib/standup/version.rb +1 -1
- data/scripts/mysql.rb +4 -1
- data/scripts/ruby.rb +1 -1
- data/scripts/webapp.rb +3 -8
- data/standup.gemspec +1 -0
- data/test/testapp/.gitignore +15 -0
- data/test/testapp/.rbenv-version +1 -0
- data/test/testapp/Gemfile +18 -0
- data/test/testapp/README.rdoc +261 -0
- data/test/testapp/Rakefile +7 -0
- data/test/testapp/app/assets/javascripts/application.js +15 -0
- data/test/testapp/app/assets/stylesheets/application.css +3 -0
- data/test/testapp/app/controllers/application_controller.rb +7 -0
- data/test/testapp/app/helpers/application_helper.rb +2 -0
- data/test/testapp/app/models/todo.rb +4 -0
- data/test/testapp/app/views/application/index.html.erb +8 -0
- data/test/testapp/app/views/layouts/application.html.erb +14 -0
- data/test/testapp/config/application.rb +62 -0
- data/test/testapp/config/boot.rb +6 -0
- data/test/testapp/config/database.yml +18 -0
- data/test/testapp/config/environment.rb +5 -0
- data/test/testapp/config/environments/development.rb +37 -0
- data/test/testapp/config/environments/production.rb +67 -0
- data/test/testapp/config/environments/test.rb +37 -0
- data/test/testapp/config/initializers/backtrace_silencers.rb +7 -0
- data/test/testapp/config/initializers/inflections.rb +15 -0
- data/test/testapp/config/initializers/mime_types.rb +5 -0
- data/test/testapp/config/initializers/secret_token.rb +7 -0
- data/test/testapp/config/initializers/session_store.rb +8 -0
- data/test/testapp/config/initializers/wrap_parameters.rb +14 -0
- data/test/testapp/config/locales/en.yml +5 -0
- data/test/testapp/config/routes.rb +3 -0
- data/test/testapp/config/standup.yml +26 -0
- data/test/testapp/config.ru +4 -0
- data/test/testapp/db/migrate/20120824125606_create_todos.rb +9 -0
- data/test/testapp/db/schema.rb +23 -0
- data/test/testapp/db/seeds.rb +2 -0
- data/test/testapp/log/.gitkeep +0 -0
- data/test/testapp/public/404.html +26 -0
- data/test/testapp/public/422.html +26 -0
- data/test/testapp/public/500.html +25 -0
- data/test/testapp/public/favicon.ico +0 -0
- data/test/testapp/public/robots.txt +5 -0
- data/test/testapp/script/rails +6 -0
- data/test.sh.example +11 -0
- metadata +155 -20
@@ -0,0 +1,67 @@
|
|
1
|
+
StandupTest::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# Code is not reloaded between requests
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Full error reports are disabled and caching is turned on
|
8
|
+
config.consider_all_requests_local = false
|
9
|
+
config.action_controller.perform_caching = true
|
10
|
+
|
11
|
+
# Disable Rails's static asset server (Apache or nginx will already do this)
|
12
|
+
config.serve_static_assets = false
|
13
|
+
|
14
|
+
# Compress JavaScripts and CSS
|
15
|
+
config.assets.compress = true
|
16
|
+
|
17
|
+
# Don't fallback to assets pipeline if a precompiled asset is missed
|
18
|
+
config.assets.compile = false
|
19
|
+
|
20
|
+
# Generate digests for assets URLs
|
21
|
+
config.assets.digest = true
|
22
|
+
|
23
|
+
# Defaults to nil and saved in location specified by config.assets.prefix
|
24
|
+
# config.assets.manifest = YOUR_PATH
|
25
|
+
|
26
|
+
# Specifies the header that your server uses for sending files
|
27
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
28
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
29
|
+
|
30
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
|
+
# config.force_ssl = true
|
32
|
+
|
33
|
+
# See everything in the log (default is :info)
|
34
|
+
# config.log_level = :debug
|
35
|
+
|
36
|
+
# Prepend all log lines with the following tags
|
37
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
38
|
+
|
39
|
+
# Use a different logger for distributed setups
|
40
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
41
|
+
|
42
|
+
# Use a different cache store in production
|
43
|
+
# config.cache_store = :mem_cache_store
|
44
|
+
|
45
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
46
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
47
|
+
|
48
|
+
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
49
|
+
# config.assets.precompile += %w( search.js )
|
50
|
+
|
51
|
+
# Disable delivery errors, bad email addresses will be ignored
|
52
|
+
# config.action_mailer.raise_delivery_errors = false
|
53
|
+
|
54
|
+
# Enable threaded mode
|
55
|
+
# config.threadsafe!
|
56
|
+
|
57
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
58
|
+
# the I18n.default_locale when a translation can not be found)
|
59
|
+
config.i18n.fallbacks = true
|
60
|
+
|
61
|
+
# Send deprecation notices to registered listeners
|
62
|
+
config.active_support.deprecation = :notify
|
63
|
+
|
64
|
+
# Log the query plan for queries taking more than this (works
|
65
|
+
# with SQLite, MySQL, and PostgreSQL)
|
66
|
+
# config.active_record.auto_explain_threshold_in_seconds = 0.5
|
67
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
StandupTest::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Configure static asset server for tests with Cache-Control for performance
|
11
|
+
config.serve_static_assets = true
|
12
|
+
config.static_cache_control = "public, max-age=3600"
|
13
|
+
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
15
|
+
config.whiny_nils = true
|
16
|
+
|
17
|
+
# Show full error reports and disable caching
|
18
|
+
config.consider_all_requests_local = true
|
19
|
+
config.action_controller.perform_caching = false
|
20
|
+
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
22
|
+
config.action_dispatch.show_exceptions = false
|
23
|
+
|
24
|
+
# Disable request forgery protection in test environment
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
26
|
+
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
29
|
+
# ActionMailer::Base.deliveries array.
|
30
|
+
config.action_mailer.delivery_method = :test
|
31
|
+
|
32
|
+
# Raise exception on mass assignment protection for Active Record models
|
33
|
+
config.active_record.mass_assignment_sanitizer = :strict
|
34
|
+
|
35
|
+
# Print deprecation notices to the stderr
|
36
|
+
config.active_support.deprecation = :stderr
|
37
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
# These inflection rules are supported but not enabled by default:
|
13
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
14
|
+
# inflect.acronym 'RESTful'
|
15
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
StandupTest::Application.config.secret_token = '30d9cddc0ae896e1af024f6027e25e3e60d123c6e819a724080eb68a2ba8fffb323ae2841bbba39334321fcf4fc668db35a4f934188899d398f3352ca4e6ad5c'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
StandupTest::Application.config.session_store :cookie_store, key: '_StandupTest_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# StandupTest::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# Amazon Web Services credentials
|
2
|
+
aws:
|
3
|
+
account_id: <%= ENV['ACCOUNT_ID'] %>
|
4
|
+
access_key_id: <%= ENV['ACCESS_KEY_ID'] %>
|
5
|
+
secret_access_key: <%= ENV['SECRET_ACCESS_KEY'] %>
|
6
|
+
keypair_name: <%= ENV['KEYPAIR_NAME'] %>
|
7
|
+
availability_zone: us-east-1a
|
8
|
+
|
9
|
+
# Global script params
|
10
|
+
ec2:
|
11
|
+
image_id: ami-480df921 # Canonical Ubuntu 10.04, EBS boot, i386
|
12
|
+
instance_type: c1.medium
|
13
|
+
ssh_user: ubuntu
|
14
|
+
|
15
|
+
webapp:
|
16
|
+
name: standup_test
|
17
|
+
app_subdir: test/testapp
|
18
|
+
github_user: Flamefork
|
19
|
+
github_repo: cloudcastle/standup
|
20
|
+
|
21
|
+
setup:
|
22
|
+
ec2 basics monit ruby postgresql passenger webapp db_backup update
|
23
|
+
|
24
|
+
# Nodes and their script params
|
25
|
+
nodes:
|
26
|
+
standup_testapp:
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 20120824125606) do
|
15
|
+
|
16
|
+
create_table "todos", :force => true do |t|
|
17
|
+
t.text "text"
|
18
|
+
t.boolean "done", :default => false, :null => false
|
19
|
+
t.datetime "created_at", :null => false
|
20
|
+
t.datetime "updated_at", :null => false
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
File without changes
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/404.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/422.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/500.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>We're sorry, but something went wrong.</h1>
|
23
|
+
</div>
|
24
|
+
</body>
|
25
|
+
</html>
|
File without changes
|
@@ -0,0 +1,6 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
6
|
+
require 'rails/commands'
|
data/test.sh.example
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,11 +11,11 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2012-
|
14
|
+
date: 2012-08-28 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: trollop
|
18
|
-
requirement:
|
18
|
+
requirement: !ruby/object:Gem::Requirement
|
19
19
|
none: false
|
20
20
|
requirements:
|
21
21
|
- - ! '>='
|
@@ -23,10 +23,15 @@ dependencies:
|
|
23
23
|
version: '1.16'
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
|
-
version_requirements:
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
28
|
+
requirements:
|
29
|
+
- - ! '>='
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: '1.16'
|
27
32
|
- !ruby/object:Gem::Dependency
|
28
33
|
name: i18n
|
29
|
-
requirement:
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
30
35
|
none: false
|
31
36
|
requirements:
|
32
37
|
- - ! '>='
|
@@ -34,10 +39,15 @@ dependencies:
|
|
34
39
|
version: 0.5.0
|
35
40
|
type: :runtime
|
36
41
|
prerelease: false
|
37
|
-
version_requirements:
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ! '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.5.0
|
38
48
|
- !ruby/object:Gem::Dependency
|
39
49
|
name: activesupport
|
40
|
-
requirement:
|
50
|
+
requirement: !ruby/object:Gem::Requirement
|
41
51
|
none: false
|
42
52
|
requirements:
|
43
53
|
- - ! '>='
|
@@ -45,10 +55,15 @@ dependencies:
|
|
45
55
|
version: '3.0'
|
46
56
|
type: :runtime
|
47
57
|
prerelease: false
|
48
|
-
version_requirements:
|
58
|
+
version_requirements: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ! '>='
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '3.0'
|
49
64
|
- !ruby/object:Gem::Dependency
|
50
65
|
name: settingslogic
|
51
|
-
requirement:
|
66
|
+
requirement: !ruby/object:Gem::Requirement
|
52
67
|
none: false
|
53
68
|
requirements:
|
54
69
|
- - ! '>='
|
@@ -56,10 +71,15 @@ dependencies:
|
|
56
71
|
version: '2.0'
|
57
72
|
type: :runtime
|
58
73
|
prerelease: false
|
59
|
-
version_requirements:
|
74
|
+
version_requirements: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
76
|
+
requirements:
|
77
|
+
- - ! '>='
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '2.0'
|
60
80
|
- !ruby/object:Gem::Dependency
|
61
81
|
name: amazon-ec2
|
62
|
-
requirement:
|
82
|
+
requirement: !ruby/object:Gem::Requirement
|
63
83
|
none: false
|
64
84
|
requirements:
|
65
85
|
- - ! '>='
|
@@ -67,10 +87,15 @@ dependencies:
|
|
67
87
|
version: '0.9'
|
68
88
|
type: :runtime
|
69
89
|
prerelease: false
|
70
|
-
version_requirements:
|
90
|
+
version_requirements: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
92
|
+
requirements:
|
93
|
+
- - ! '>='
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0.9'
|
71
96
|
- !ruby/object:Gem::Dependency
|
72
97
|
name: aws-s3
|
73
|
-
requirement:
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
74
99
|
none: false
|
75
100
|
requirements:
|
76
101
|
- - ! '>='
|
@@ -78,10 +103,15 @@ dependencies:
|
|
78
103
|
version: '0.5'
|
79
104
|
type: :runtime
|
80
105
|
prerelease: false
|
81
|
-
version_requirements:
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
none: false
|
108
|
+
requirements:
|
109
|
+
- - ! '>='
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0.5'
|
82
112
|
- !ruby/object:Gem::Dependency
|
83
113
|
name: net-ssh
|
84
|
-
requirement:
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
85
115
|
none: false
|
86
116
|
requirements:
|
87
117
|
- - ! '>='
|
@@ -89,10 +119,15 @@ dependencies:
|
|
89
119
|
version: '2.0'
|
90
120
|
type: :runtime
|
91
121
|
prerelease: false
|
92
|
-
version_requirements:
|
122
|
+
version_requirements: !ruby/object:Gem::Requirement
|
123
|
+
none: false
|
124
|
+
requirements:
|
125
|
+
- - ! '>='
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '2.0'
|
93
128
|
- !ruby/object:Gem::Dependency
|
94
129
|
name: highline
|
95
|
-
requirement:
|
130
|
+
requirement: !ruby/object:Gem::Requirement
|
96
131
|
none: false
|
97
132
|
requirements:
|
98
133
|
- - ! '>='
|
@@ -100,7 +135,28 @@ dependencies:
|
|
100
135
|
version: 1.5.2
|
101
136
|
type: :runtime
|
102
137
|
prerelease: false
|
103
|
-
version_requirements:
|
138
|
+
version_requirements: !ruby/object:Gem::Requirement
|
139
|
+
none: false
|
140
|
+
requirements:
|
141
|
+
- - ! '>='
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: 1.5.2
|
144
|
+
- !ruby/object:Gem::Dependency
|
145
|
+
name: octokit
|
146
|
+
requirement: !ruby/object:Gem::Requirement
|
147
|
+
none: false
|
148
|
+
requirements:
|
149
|
+
- - ! '>='
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: 1.10.0
|
152
|
+
type: :runtime
|
153
|
+
prerelease: false
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
155
|
+
none: false
|
156
|
+
requirements:
|
157
|
+
- - ! '>='
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 1.10.0
|
104
160
|
description: ''
|
105
161
|
email:
|
106
162
|
- ilia@flamefork.ru
|
@@ -187,6 +243,46 @@ files:
|
|
187
243
|
- scripts/webapp/webapp.conf
|
188
244
|
- scripts/wkhtmltopdf.rb
|
189
245
|
- standup.gemspec
|
246
|
+
- test.sh.example
|
247
|
+
- test/testapp/.gitignore
|
248
|
+
- test/testapp/.rbenv-version
|
249
|
+
- test/testapp/Gemfile
|
250
|
+
- test/testapp/README.rdoc
|
251
|
+
- test/testapp/Rakefile
|
252
|
+
- test/testapp/app/assets/javascripts/application.js
|
253
|
+
- test/testapp/app/assets/stylesheets/application.css
|
254
|
+
- test/testapp/app/controllers/application_controller.rb
|
255
|
+
- test/testapp/app/helpers/application_helper.rb
|
256
|
+
- test/testapp/app/models/todo.rb
|
257
|
+
- test/testapp/app/views/application/index.html.erb
|
258
|
+
- test/testapp/app/views/layouts/application.html.erb
|
259
|
+
- test/testapp/config.ru
|
260
|
+
- test/testapp/config/application.rb
|
261
|
+
- test/testapp/config/boot.rb
|
262
|
+
- test/testapp/config/database.yml
|
263
|
+
- test/testapp/config/environment.rb
|
264
|
+
- test/testapp/config/environments/development.rb
|
265
|
+
- test/testapp/config/environments/production.rb
|
266
|
+
- test/testapp/config/environments/test.rb
|
267
|
+
- test/testapp/config/initializers/backtrace_silencers.rb
|
268
|
+
- test/testapp/config/initializers/inflections.rb
|
269
|
+
- test/testapp/config/initializers/mime_types.rb
|
270
|
+
- test/testapp/config/initializers/secret_token.rb
|
271
|
+
- test/testapp/config/initializers/session_store.rb
|
272
|
+
- test/testapp/config/initializers/wrap_parameters.rb
|
273
|
+
- test/testapp/config/locales/en.yml
|
274
|
+
- test/testapp/config/routes.rb
|
275
|
+
- test/testapp/config/standup.yml
|
276
|
+
- test/testapp/db/migrate/20120824125606_create_todos.rb
|
277
|
+
- test/testapp/db/schema.rb
|
278
|
+
- test/testapp/db/seeds.rb
|
279
|
+
- test/testapp/log/.gitkeep
|
280
|
+
- test/testapp/public/404.html
|
281
|
+
- test/testapp/public/422.html
|
282
|
+
- test/testapp/public/500.html
|
283
|
+
- test/testapp/public/favicon.ico
|
284
|
+
- test/testapp/public/robots.txt
|
285
|
+
- test/testapp/script/rails
|
190
286
|
homepage: https://github.com/cloudcastle/standup
|
191
287
|
licenses: []
|
192
288
|
post_install_message:
|
@@ -207,9 +303,48 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
207
303
|
version: '0'
|
208
304
|
requirements: []
|
209
305
|
rubyforge_project: standup
|
210
|
-
rubygems_version: 1.8.
|
306
|
+
rubygems_version: 1.8.23
|
211
307
|
signing_key:
|
212
308
|
specification_version: 3
|
213
309
|
summary: Standup is an application deployment and infrastructure management tool for
|
214
310
|
Rails and Amazon EC2
|
215
|
-
test_files:
|
311
|
+
test_files:
|
312
|
+
- test/testapp/.gitignore
|
313
|
+
- test/testapp/.rbenv-version
|
314
|
+
- test/testapp/Gemfile
|
315
|
+
- test/testapp/README.rdoc
|
316
|
+
- test/testapp/Rakefile
|
317
|
+
- test/testapp/app/assets/javascripts/application.js
|
318
|
+
- test/testapp/app/assets/stylesheets/application.css
|
319
|
+
- test/testapp/app/controllers/application_controller.rb
|
320
|
+
- test/testapp/app/helpers/application_helper.rb
|
321
|
+
- test/testapp/app/models/todo.rb
|
322
|
+
- test/testapp/app/views/application/index.html.erb
|
323
|
+
- test/testapp/app/views/layouts/application.html.erb
|
324
|
+
- test/testapp/config.ru
|
325
|
+
- test/testapp/config/application.rb
|
326
|
+
- test/testapp/config/boot.rb
|
327
|
+
- test/testapp/config/database.yml
|
328
|
+
- test/testapp/config/environment.rb
|
329
|
+
- test/testapp/config/environments/development.rb
|
330
|
+
- test/testapp/config/environments/production.rb
|
331
|
+
- test/testapp/config/environments/test.rb
|
332
|
+
- test/testapp/config/initializers/backtrace_silencers.rb
|
333
|
+
- test/testapp/config/initializers/inflections.rb
|
334
|
+
- test/testapp/config/initializers/mime_types.rb
|
335
|
+
- test/testapp/config/initializers/secret_token.rb
|
336
|
+
- test/testapp/config/initializers/session_store.rb
|
337
|
+
- test/testapp/config/initializers/wrap_parameters.rb
|
338
|
+
- test/testapp/config/locales/en.yml
|
339
|
+
- test/testapp/config/routes.rb
|
340
|
+
- test/testapp/config/standup.yml
|
341
|
+
- test/testapp/db/migrate/20120824125606_create_todos.rb
|
342
|
+
- test/testapp/db/schema.rb
|
343
|
+
- test/testapp/db/seeds.rb
|
344
|
+
- test/testapp/log/.gitkeep
|
345
|
+
- test/testapp/public/404.html
|
346
|
+
- test/testapp/public/422.html
|
347
|
+
- test/testapp/public/500.html
|
348
|
+
- test/testapp/public/favicon.ico
|
349
|
+
- test/testapp/public/robots.txt
|
350
|
+
- test/testapp/script/rails
|