engineyard-serverside 2.6.16 → 2.6.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/engineyard-serverside/cli/app.rb +1 -1
- data/lib/engineyard-serverside/cli/workflows/integrating_servers.rb +14 -6
- data/lib/engineyard-serverside/version.rb +1 -1
- data/spec/archive_deploy_spec.rb +53 -0
- data/spec/basic_deploy_spec.rb +26 -0
- data/spec/bundler_deploy_spec.rb +160 -0
- data/spec/configuration_spec.rb +206 -0
- data/spec/custom_deploy_spec.rb +128 -0
- data/spec/deploy_hook_spec.rb +362 -0
- data/spec/deprecation_spec.rb +23 -0
- data/spec/ey_yml_customized_deploy_spec.rb +99 -0
- data/spec/fixtures/gitrepo.tar.gz +0 -0
- data/spec/fixtures/invalid_hook.rb +1 -0
- data/spec/fixtures/lockfiles/0.9-no-bundler +111 -0
- data/spec/fixtures/lockfiles/0.9-with-bundler +117 -0
- data/spec/fixtures/lockfiles/1.0-no-bundler +54 -0
- data/spec/fixtures/lockfiles/1.0.0.rc.1-with-bundler +162 -0
- data/spec/fixtures/lockfiles/1.0.18-do_mysql +88 -0
- data/spec/fixtures/lockfiles/1.0.18-do_postgres +79 -0
- data/spec/fixtures/lockfiles/1.0.18-mysql +43 -0
- data/spec/fixtures/lockfiles/1.0.18-mysql2 +43 -0
- data/spec/fixtures/lockfiles/1.0.18-pg +43 -0
- data/spec/fixtures/lockfiles/1.0.6-no-bundler +51 -0
- data/spec/fixtures/lockfiles/1.0.6-with-any-bundler +52 -0
- data/spec/fixtures/lockfiles/1.0.6-with-bundler +52 -0
- data/spec/fixtures/lockfiles/1.15.1-no-bundler +51 -0
- data/spec/fixtures/lockfiles/1.3.1-rails-3.2.13 +112 -0
- data/spec/fixtures/lockfiles/not-a-lockfile +1 -0
- data/spec/fixtures/repos/assets_detected/Gemfile +5 -0
- data/spec/fixtures/repos/assets_detected/Gemfile.lock +88 -0
- data/spec/fixtures/repos/assets_detected/README +1 -0
- data/spec/fixtures/repos/assets_detected/Rakefile +5 -0
- data/spec/fixtures/repos/assets_detected/app/assets/empty +0 -0
- data/spec/fixtures/repos/assets_detected/config/application.rb +5 -0
- data/spec/fixtures/repos/assets_detected/config/ey.yml +3 -0
- data/spec/fixtures/repos/assets_disabled/Gemfile +5 -0
- data/spec/fixtures/repos/assets_disabled/Gemfile.lock +88 -0
- data/spec/fixtures/repos/assets_disabled/README +1 -0
- data/spec/fixtures/repos/assets_disabled/Rakefile +6 -0
- data/spec/fixtures/repos/assets_disabled/app/assets/empty +0 -0
- data/spec/fixtures/repos/assets_disabled/config/application.rb +5 -0
- data/spec/fixtures/repos/assets_disabled/config/ey.yml +3 -0
- data/spec/fixtures/repos/assets_disabled_in_ey_yml/Gemfile +5 -0
- data/spec/fixtures/repos/assets_disabled_in_ey_yml/Gemfile.lock +88 -0
- data/spec/fixtures/repos/assets_disabled_in_ey_yml/README +1 -0
- data/spec/fixtures/repos/assets_disabled_in_ey_yml/Rakefile +6 -0
- data/spec/fixtures/repos/assets_disabled_in_ey_yml/app/assets/empty +0 -0
- data/spec/fixtures/repos/assets_disabled_in_ey_yml/config/application.rb +5 -0
- data/spec/fixtures/repos/assets_disabled_in_ey_yml/config/ey.yml +5 -0
- data/spec/fixtures/repos/assets_disabled_utf8/Gemfile +5 -0
- data/spec/fixtures/repos/assets_disabled_utf8/Gemfile.lock +88 -0
- data/spec/fixtures/repos/assets_disabled_utf8/README +3 -0
- data/spec/fixtures/repos/assets_disabled_utf8/Rakefile +5 -0
- data/spec/fixtures/repos/assets_disabled_utf8/app/assets/empty +0 -0
- data/spec/fixtures/repos/assets_disabled_utf8/config/application.rb +7 -0
- data/spec/fixtures/repos/assets_disabled_utf8/config/ey.yml +3 -0
- data/spec/fixtures/repos/assets_enabled_all/Gemfile +5 -0
- data/spec/fixtures/repos/assets_enabled_all/Gemfile.lock +88 -0
- data/spec/fixtures/repos/assets_enabled_all/README +1 -0
- data/spec/fixtures/repos/assets_enabled_all/app/assets/empty +0 -0
- data/spec/fixtures/repos/assets_enabled_all/config/application.rb +5 -0
- data/spec/fixtures/repos/assets_enabled_all/config/ey.yml +6 -0
- data/spec/fixtures/repos/assets_enabled_all/script/assets +5 -0
- data/spec/fixtures/repos/assets_enabled_all/tmp/obstruction +1 -0
- data/spec/fixtures/repos/assets_enabled_in_ey_yml/Gemfile +3 -0
- data/spec/fixtures/repos/assets_enabled_in_ey_yml/Gemfile.lock +10 -0
- data/spec/fixtures/repos/assets_enabled_in_ey_yml/README +1 -0
- data/spec/fixtures/repos/assets_enabled_in_ey_yml/Rakefile +8 -0
- data/spec/fixtures/repos/assets_enabled_in_ey_yml/config/ey.yml +4 -0
- data/spec/fixtures/repos/assets_enabled_util_only/Gemfile +5 -0
- data/spec/fixtures/repos/assets_enabled_util_only/Gemfile.lock +88 -0
- data/spec/fixtures/repos/assets_enabled_util_only/README +1 -0
- data/spec/fixtures/repos/assets_enabled_util_only/Rakefile +6 -0
- data/spec/fixtures/repos/assets_enabled_util_only/app/assets/empty +0 -0
- data/spec/fixtures/repos/assets_enabled_util_only/config/application.rb +5 -0
- data/spec/fixtures/repos/assets_enabled_util_only/config/ey.yml +6 -0
- data/spec/fixtures/repos/assets_error/Gemfile +5 -0
- data/spec/fixtures/repos/assets_error/Gemfile.lock +88 -0
- data/spec/fixtures/repos/assets_error/README +1 -0
- data/spec/fixtures/repos/assets_error/Rakefile +4 -0
- data/spec/fixtures/repos/assets_error/app/assets/empty +0 -0
- data/spec/fixtures/repos/assets_error/config/application.rb +5 -0
- data/spec/fixtures/repos/assets_error/config/ey.yml +4 -0
- data/spec/fixtures/repos/assets_in_hook/Gemfile +5 -0
- data/spec/fixtures/repos/assets_in_hook/Gemfile.lock +88 -0
- data/spec/fixtures/repos/assets_in_hook/README +2 -0
- data/spec/fixtures/repos/assets_in_hook/Rakefile +5 -0
- data/spec/fixtures/repos/assets_in_hook/app/assets/empty +0 -0
- data/spec/fixtures/repos/assets_in_hook/config/application.rb +5 -0
- data/spec/fixtures/repos/assets_in_hook/config/ey.yml +3 -0
- data/spec/fixtures/repos/assets_in_hook/deploy/before_compile_assets.rb +2 -0
- data/spec/fixtures/repos/bundle_fails/Gemfile +1 -0
- data/spec/fixtures/repos/bundle_fails/README +1 -0
- data/spec/fixtures/repos/bundle_fails/deploy/after_bundle.rb +1 -0
- data/spec/fixtures/repos/bundler_disabled/Gemfile +4 -0
- data/spec/fixtures/repos/bundler_disabled/Gemfile.lock +12 -0
- data/spec/fixtures/repos/bundler_disabled/README +1 -0
- data/spec/fixtures/repos/bundler_disabled/config/ey.yml +2 -0
- data/spec/fixtures/repos/bundler_disabled/deploy/after_bundle.rb +1 -0
- data/spec/fixtures/repos/bundler_disabled/deploy/before_bundle.rb +1 -0
- data/spec/fixtures/repos/bundler_old/Gemfile +5 -0
- data/spec/fixtures/repos/bundler_old/Gemfile.lock +15 -0
- data/spec/fixtures/repos/bundler_old/README +1 -0
- data/spec/fixtures/repos/default/Gemfile +4 -0
- data/spec/fixtures/repos/default/Gemfile.lock +12 -0
- data/spec/fixtures/repos/default/README +5 -0
- data/spec/fixtures/repos/default/ey.yml +3 -0
- data/spec/fixtures/repos/executable_hooks/README +1 -0
- data/spec/fixtures/repos/executable_hooks/deploy/before_restart +72 -0
- data/spec/fixtures/repos/executable_hooks_not_executable/README +3 -0
- data/spec/fixtures/repos/executable_hooks_not_executable/deploy/before_restart +3 -0
- data/spec/fixtures/repos/ey_yml/Gemfile +4 -0
- data/spec/fixtures/repos/ey_yml/Gemfile.lock +12 -0
- data/spec/fixtures/repos/ey_yml/README +1 -0
- data/spec/fixtures/repos/ey_yml/config/ey.yml +18 -0
- data/spec/fixtures/repos/ey_yml/deploy/before_migrate.rb +6 -0
- data/spec/fixtures/repos/ey_yml_alt/Gemfile +4 -0
- data/spec/fixtures/repos/ey_yml_alt/Gemfile.lock +12 -0
- data/spec/fixtures/repos/ey_yml_alt/README +1 -0
- data/spec/fixtures/repos/ey_yml_alt/deploy/before_migrate.rb +6 -0
- data/spec/fixtures/repos/ey_yml_alt/ey.yml +12 -0
- data/spec/fixtures/repos/hook_fails/README +1 -0
- data/spec/fixtures/repos/hook_fails/deploy/before_deploy.rb +1 -0
- data/spec/fixtures/repos/hooks/README +1 -0
- data/spec/fixtures/repos/hooks/deploy/after_bundle.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/after_compile_assets.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/after_deploy.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/after_migrate.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/after_restart.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/after_symlink.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/before_bundle.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/before_compile_assets.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/before_deploy.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/before_migrate.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/before_restart.rb +1 -0
- data/spec/fixtures/repos/hooks/deploy/before_symlink.rb +1 -0
- data/spec/fixtures/repos/multi_dep_manager/README +1 -0
- data/spec/fixtures/repos/multi_dep_manager/composer.json +5 -0
- data/spec/fixtures/repos/multi_dep_manager/composer.lock +462 -0
- data/spec/fixtures/repos/multi_dep_manager/package.json +7 -0
- data/spec/fixtures/repos/multi_dep_manager/public/index.php +4 -0
- data/spec/fixtures/repos/no_ey_config/Gemfile +3 -0
- data/spec/fixtures/repos/no_ey_config/Gemfile.lock +10 -0
- data/spec/fixtures/repos/no_ey_config/README +1 -0
- data/spec/fixtures/repos/no_ey_config/ey.yml +3 -0
- data/spec/fixtures/repos/no_ey_config_no_warning/Gemfile +3 -0
- data/spec/fixtures/repos/no_ey_config_no_warning/Gemfile.lock +10 -0
- data/spec/fixtures/repos/no_ey_config_no_warning/README +1 -0
- data/spec/fixtures/repos/no_ey_config_no_warning/ey.yml +5 -0
- data/spec/fixtures/repos/no_gemfile_lock/Gemfile +4 -0
- data/spec/fixtures/repos/no_gemfile_lock/README +1 -0
- data/spec/fixtures/repos/no_gemfile_lock/ey.yml +3 -0
- data/spec/fixtures/repos/nodejs/README +1 -0
- data/spec/fixtures/repos/nodejs/package.json +7 -0
- data/spec/fixtures/repos/not_bundled/README +1 -0
- data/spec/fixtures/repos/npm_disabled/README +1 -0
- data/spec/fixtures/repos/npm_disabled/config/ey.yml +2 -0
- data/spec/fixtures/repos/npm_disabled/package.json +7 -0
- data/spec/fixtures/repos/php_composer_disabled/README +1 -0
- data/spec/fixtures/repos/php_composer_disabled/composer.json +5 -0
- data/spec/fixtures/repos/php_composer_disabled/composer.lock +462 -0
- data/spec/fixtures/repos/php_composer_disabled/config/ey.yml +2 -0
- data/spec/fixtures/repos/php_composer_disabled/public/index.php +4 -0
- data/spec/fixtures/repos/php_composer_lock/README +1 -0
- data/spec/fixtures/repos/php_composer_lock/composer.json +5 -0
- data/spec/fixtures/repos/php_composer_lock/composer.lock +462 -0
- data/spec/fixtures/repos/php_composer_lock/public/index.php +4 -0
- data/spec/fixtures/repos/php_no_composer_lock/README +1 -0
- data/spec/fixtures/repos/php_no_composer_lock/composer.json +21 -0
- data/spec/fixtures/repos/php_no_composer_lock/public/index.php +4 -0
- data/spec/fixtures/repos/public_system/Gemfile +4 -0
- data/spec/fixtures/repos/public_system/Gemfile.lock +12 -0
- data/spec/fixtures/repos/public_system/README +5 -0
- data/spec/fixtures/repos/public_system/ey.yml +3 -0
- data/spec/fixtures/repos/public_system/public/system/cant_touch_this.txt +3 -0
- data/spec/fixtures/repos/sqlite3/Gemfile +4 -0
- data/spec/fixtures/repos/sqlite3/Gemfile.lock +89 -0
- data/spec/fixtures/repos/sqlite3/README +1 -0
- data/spec/fixtures/retwisj.war +0 -0
- data/spec/fixtures/valid_hook.rb +1 -0
- data/spec/git_strategy_spec.rb +34 -0
- data/spec/lockfile_parser_spec.rb +126 -0
- data/spec/maintenance_spec.rb +44 -0
- data/spec/multi_dependency_manager_spec.rb +25 -0
- data/spec/nodejs_deploy_spec.rb +30 -0
- data/spec/php_deploy_spec.rb +81 -0
- data/spec/platform_configure_spec.rb +61 -0
- data/spec/rails31_deploy_spec.rb +172 -0
- data/spec/restart_spec.rb +43 -0
- data/spec/rollback_spec.rb +87 -0
- data/spec/server_spec.rb +70 -0
- data/spec/services_deploy_spec.rb +165 -0
- data/spec/shell_spec.rb +57 -0
- data/spec/source/archive_spec.rb +33 -0
- data/spec/source/git_spec.rb +44 -0
- data/spec/spec_helper.rb +360 -0
- data/spec/sqlite3_deploy_spec.rb +38 -0
- data/spec/support/integration.rb +103 -0
- data/spec/support/source_doubles.rb +28 -0
- data/spec/support/timecop.rb +5 -0
- data/spec/symlink_spec.rb +15 -0
- metadata +400 -4
@@ -0,0 +1,88 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
addressable (2.2.6)
|
5
|
+
bcrypt-ruby (2.1.4)
|
6
|
+
data_objects (0.10.6)
|
7
|
+
addressable (~> 2.1)
|
8
|
+
datamapper (1.1.0)
|
9
|
+
dm-aggregates (= 1.1.0)
|
10
|
+
dm-constraints (= 1.1.0)
|
11
|
+
dm-core (= 1.1.0)
|
12
|
+
dm-migrations (= 1.1.0)
|
13
|
+
dm-serializer (= 1.1.0)
|
14
|
+
dm-timestamps (= 1.1.0)
|
15
|
+
dm-transactions (= 1.1.0)
|
16
|
+
dm-types (= 1.1.0)
|
17
|
+
dm-validations (= 1.1.0)
|
18
|
+
diff-lcs (1.1.3)
|
19
|
+
dm-aggregates (1.1.0)
|
20
|
+
dm-core (~> 1.1.0)
|
21
|
+
dm-constraints (1.1.0)
|
22
|
+
dm-core (~> 1.1.0)
|
23
|
+
dm-core (1.1.0)
|
24
|
+
addressable (~> 2.2.4)
|
25
|
+
dm-do-adapter (1.1.0)
|
26
|
+
data_objects (~> 0.10.2)
|
27
|
+
dm-core (~> 1.1.0)
|
28
|
+
dm-migrations (1.1.0)
|
29
|
+
dm-core (~> 1.1.0)
|
30
|
+
dm-mysql-adapter (1.1.0)
|
31
|
+
dm-do-adapter (~> 1.1.0)
|
32
|
+
do_mysql (~> 0.10.2)
|
33
|
+
dm-serializer (1.1.0)
|
34
|
+
dm-core (~> 1.1.0)
|
35
|
+
fastercsv (~> 1.5.4)
|
36
|
+
json (~> 1.4.6)
|
37
|
+
dm-sqlite-adapter (1.1.0)
|
38
|
+
dm-do-adapter (~> 1.1.0)
|
39
|
+
do_sqlite3 (~> 0.10.2)
|
40
|
+
dm-timestamps (1.1.0)
|
41
|
+
dm-core (~> 1.1.0)
|
42
|
+
dm-transactions (1.1.0)
|
43
|
+
dm-core (~> 1.1.0)
|
44
|
+
dm-types (1.1.0)
|
45
|
+
bcrypt-ruby (~> 2.1.4)
|
46
|
+
dm-core (~> 1.1.0)
|
47
|
+
fastercsv (~> 1.5.4)
|
48
|
+
json (~> 1.4.6)
|
49
|
+
stringex (~> 1.2.0)
|
50
|
+
uuidtools (~> 2.1.2)
|
51
|
+
dm-validations (1.1.0)
|
52
|
+
dm-core (~> 1.1.0)
|
53
|
+
do_mysql (0.10.6)
|
54
|
+
data_objects (= 0.10.6)
|
55
|
+
do_sqlite3 (0.10.6)
|
56
|
+
data_objects (= 0.10.6)
|
57
|
+
fastercsv (1.5.4)
|
58
|
+
json (1.4.6)
|
59
|
+
rack (1.3.3)
|
60
|
+
rake (0.9.2)
|
61
|
+
rspec (2.6.0)
|
62
|
+
rspec-core (~> 2.6.0)
|
63
|
+
rspec-expectations (~> 2.6.0)
|
64
|
+
rspec-mocks (~> 2.6.0)
|
65
|
+
rspec-core (2.6.4)
|
66
|
+
rspec-expectations (2.6.0)
|
67
|
+
diff-lcs (~> 1.1.2)
|
68
|
+
rspec-mocks (2.6.0)
|
69
|
+
shotgun (0.9)
|
70
|
+
rack (>= 1.0)
|
71
|
+
sinatra (1.2.6)
|
72
|
+
rack (~> 1.1)
|
73
|
+
tilt (>= 1.2.2, < 2.0)
|
74
|
+
stringex (1.2.2)
|
75
|
+
tilt (1.3.3)
|
76
|
+
uuidtools (2.1.2)
|
77
|
+
|
78
|
+
PLATFORMS
|
79
|
+
ruby
|
80
|
+
|
81
|
+
DEPENDENCIES
|
82
|
+
datamapper (~> 1.1.0)
|
83
|
+
dm-mysql-adapter
|
84
|
+
dm-sqlite-adapter
|
85
|
+
rake
|
86
|
+
rspec (~> 2.0)
|
87
|
+
shotgun
|
88
|
+
sinatra
|
@@ -0,0 +1,79 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
addressable (2.2.6)
|
5
|
+
bcrypt-ruby (2.1.4)
|
6
|
+
data_objects (0.10.5)
|
7
|
+
addressable (~> 2.1)
|
8
|
+
datamapper (1.1.0)
|
9
|
+
dm-aggregates (= 1.1.0)
|
10
|
+
dm-constraints (= 1.1.0)
|
11
|
+
dm-core (= 1.1.0)
|
12
|
+
dm-migrations (= 1.1.0)
|
13
|
+
dm-serializer (= 1.1.0)
|
14
|
+
dm-timestamps (= 1.1.0)
|
15
|
+
dm-transactions (= 1.1.0)
|
16
|
+
dm-types (= 1.1.0)
|
17
|
+
dm-validations (= 1.1.0)
|
18
|
+
diff-lcs (1.1.3)
|
19
|
+
dm-aggregates (1.1.0)
|
20
|
+
dm-core (~> 1.1.0)
|
21
|
+
dm-constraints (1.1.0)
|
22
|
+
dm-core (~> 1.1.0)
|
23
|
+
dm-core (1.1.0)
|
24
|
+
addressable (~> 2.2.4)
|
25
|
+
dm-do-adapter (1.1.0)
|
26
|
+
data_objects (~> 0.10.2)
|
27
|
+
dm-core (~> 1.1.0)
|
28
|
+
dm-migrations (1.1.0)
|
29
|
+
dm-core (~> 1.1.0)
|
30
|
+
dm-postgres-adapter (1.1.0)
|
31
|
+
dm-do-adapter (~> 1.1.0)
|
32
|
+
do_postgres (~> 0.10.2)
|
33
|
+
dm-serializer (1.1.0)
|
34
|
+
dm-core (~> 1.1.0)
|
35
|
+
fastercsv (~> 1.5.4)
|
36
|
+
json (~> 1.4.6)
|
37
|
+
dm-timestamps (1.1.0)
|
38
|
+
dm-core (~> 1.1.0)
|
39
|
+
dm-transactions (1.1.0)
|
40
|
+
dm-core (~> 1.1.0)
|
41
|
+
dm-types (1.1.0)
|
42
|
+
bcrypt-ruby (~> 2.1.4)
|
43
|
+
dm-core (~> 1.1.0)
|
44
|
+
fastercsv (~> 1.5.4)
|
45
|
+
json (~> 1.4.6)
|
46
|
+
stringex (~> 1.2.0)
|
47
|
+
uuidtools (~> 2.1.2)
|
48
|
+
dm-validations (1.1.0)
|
49
|
+
dm-core (~> 1.1.0)
|
50
|
+
do_postgres (0.10.5)
|
51
|
+
data_objects (= 0.10.5)
|
52
|
+
fastercsv (1.5.4)
|
53
|
+
json (1.4.6)
|
54
|
+
rack (1.3.3)
|
55
|
+
rake (0.9.2)
|
56
|
+
rspec (2.6.0)
|
57
|
+
rspec-core (~> 2.6.0)
|
58
|
+
rspec-expectations (~> 2.6.0)
|
59
|
+
rspec-mocks (~> 2.6.0)
|
60
|
+
rspec-core (2.6.4)
|
61
|
+
rspec-expectations (2.6.0)
|
62
|
+
diff-lcs (~> 1.1.2)
|
63
|
+
rspec-mocks (2.6.0)
|
64
|
+
sinatra (1.2.6)
|
65
|
+
rack (~> 1.1)
|
66
|
+
tilt (>= 1.2.2, < 2.0)
|
67
|
+
stringex (1.2.2)
|
68
|
+
tilt (1.3.3)
|
69
|
+
uuidtools (2.1.2)
|
70
|
+
|
71
|
+
PLATFORMS
|
72
|
+
ruby
|
73
|
+
|
74
|
+
DEPENDENCIES
|
75
|
+
datamapper (>= 1.1)
|
76
|
+
dm-postgres-adapter
|
77
|
+
rake
|
78
|
+
rspec (~> 2.0)
|
79
|
+
sinatra
|
@@ -0,0 +1,43 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
activemodel (3.0.7)
|
5
|
+
activesupport (= 3.0.7)
|
6
|
+
builder (~> 2.1.2)
|
7
|
+
i18n (~> 0.5.0)
|
8
|
+
activerecord (3.0.7)
|
9
|
+
activemodel (= 3.0.7)
|
10
|
+
activesupport (= 3.0.7)
|
11
|
+
arel (~> 2.0.2)
|
12
|
+
tzinfo (~> 0.3.23)
|
13
|
+
activesupport (3.0.7)
|
14
|
+
arel (2.0.9)
|
15
|
+
builder (2.1.2)
|
16
|
+
diff-lcs (1.1.3)
|
17
|
+
i18n (0.5.0)
|
18
|
+
mysql (2.8.1)
|
19
|
+
rack (1.3.3)
|
20
|
+
rake (0.9.2)
|
21
|
+
rspec (2.6.0)
|
22
|
+
rspec-core (~> 2.6.0)
|
23
|
+
rspec-expectations (~> 2.6.0)
|
24
|
+
rspec-mocks (~> 2.6.0)
|
25
|
+
rspec-core (2.6.4)
|
26
|
+
rspec-expectations (2.6.0)
|
27
|
+
diff-lcs (~> 1.1.2)
|
28
|
+
rspec-mocks (2.6.0)
|
29
|
+
sinatra (1.2.6)
|
30
|
+
rack (~> 1.1)
|
31
|
+
tilt (>= 1.2.2, < 2.0)
|
32
|
+
tilt (1.3.3)
|
33
|
+
tzinfo (0.3.28)
|
34
|
+
|
35
|
+
PLATFORMS
|
36
|
+
ruby
|
37
|
+
|
38
|
+
DEPENDENCIES
|
39
|
+
activerecord (>= 3.0)
|
40
|
+
mysql
|
41
|
+
rake
|
42
|
+
rspec (~> 2.0)
|
43
|
+
sinatra
|
@@ -0,0 +1,43 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
activemodel (3.0.7)
|
5
|
+
activesupport (= 3.0.7)
|
6
|
+
builder (~> 2.1.2)
|
7
|
+
i18n (~> 0.5.0)
|
8
|
+
activerecord (3.0.7)
|
9
|
+
activemodel (= 3.0.7)
|
10
|
+
activesupport (= 3.0.7)
|
11
|
+
arel (~> 2.0.2)
|
12
|
+
tzinfo (~> 0.3.23)
|
13
|
+
activesupport (3.0.7)
|
14
|
+
arel (2.0.9)
|
15
|
+
builder (2.1.2)
|
16
|
+
diff-lcs (1.1.3)
|
17
|
+
i18n (0.5.0)
|
18
|
+
mysql2 (0.2.7)
|
19
|
+
rack (1.3.3)
|
20
|
+
rake (0.9.2)
|
21
|
+
rspec (2.6.0)
|
22
|
+
rspec-core (~> 2.6.0)
|
23
|
+
rspec-expectations (~> 2.6.0)
|
24
|
+
rspec-mocks (~> 2.6.0)
|
25
|
+
rspec-core (2.6.4)
|
26
|
+
rspec-expectations (2.6.0)
|
27
|
+
diff-lcs (~> 1.1.2)
|
28
|
+
rspec-mocks (2.6.0)
|
29
|
+
sinatra (1.2.6)
|
30
|
+
rack (~> 1.1)
|
31
|
+
tilt (>= 1.2.2, < 2.0)
|
32
|
+
tilt (1.3.3)
|
33
|
+
tzinfo (0.3.28)
|
34
|
+
|
35
|
+
PLATFORMS
|
36
|
+
ruby
|
37
|
+
|
38
|
+
DEPENDENCIES
|
39
|
+
activerecord (>= 3.0)
|
40
|
+
mysql2
|
41
|
+
rake
|
42
|
+
rspec (~> 2.0)
|
43
|
+
sinatra
|
@@ -0,0 +1,43 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
activemodel (3.0.7)
|
5
|
+
activesupport (= 3.0.7)
|
6
|
+
builder (~> 2.1.2)
|
7
|
+
i18n (~> 0.5.0)
|
8
|
+
activerecord (3.0.7)
|
9
|
+
activemodel (= 3.0.7)
|
10
|
+
activesupport (= 3.0.7)
|
11
|
+
arel (~> 2.0.2)
|
12
|
+
tzinfo (~> 0.3.23)
|
13
|
+
activesupport (3.0.7)
|
14
|
+
arel (2.0.9)
|
15
|
+
builder (2.1.2)
|
16
|
+
diff-lcs (1.1.3)
|
17
|
+
i18n (0.5.0)
|
18
|
+
pg (0.11.0)
|
19
|
+
rack (1.3.3)
|
20
|
+
rake (0.9.2)
|
21
|
+
rspec (2.6.0)
|
22
|
+
rspec-core (~> 2.6.0)
|
23
|
+
rspec-expectations (~> 2.6.0)
|
24
|
+
rspec-mocks (~> 2.6.0)
|
25
|
+
rspec-core (2.6.4)
|
26
|
+
rspec-expectations (2.6.0)
|
27
|
+
diff-lcs (~> 1.1.2)
|
28
|
+
rspec-mocks (2.6.0)
|
29
|
+
sinatra (1.2.6)
|
30
|
+
rack (~> 1.1)
|
31
|
+
tilt (>= 1.2.2, < 2.0)
|
32
|
+
tilt (1.3.3)
|
33
|
+
tzinfo (0.3.28)
|
34
|
+
|
35
|
+
PLATFORMS
|
36
|
+
ruby
|
37
|
+
|
38
|
+
DEPENDENCIES
|
39
|
+
activerecord (>= 3.0)
|
40
|
+
pg
|
41
|
+
rake
|
42
|
+
rspec (~> 2.0)
|
43
|
+
sinatra
|
@@ -0,0 +1,51 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
fog (0.3.7)
|
5
|
+
builder
|
6
|
+
excon (>= 0.2.3)
|
7
|
+
formatador (>= 0.0.15)
|
8
|
+
json
|
9
|
+
mime-types
|
10
|
+
net-ssh (~> 2.0.23)
|
11
|
+
nokogiri (~> 1.4.3.1)
|
12
|
+
ruby-hmac
|
13
|
+
|
14
|
+
GEM
|
15
|
+
remote: https://rubygems.org/
|
16
|
+
specs:
|
17
|
+
builder (2.1.2)
|
18
|
+
excon (0.2.3)
|
19
|
+
formatador (0.0.15)
|
20
|
+
gestalt (0.0.11)
|
21
|
+
formatador (>= 0.0.12)
|
22
|
+
json (1.4.6)
|
23
|
+
mime-types (1.16)
|
24
|
+
net-ssh (2.0.23)
|
25
|
+
nokogiri (1.4.3.1)
|
26
|
+
rake (0.8.7)
|
27
|
+
rspec (1.3.0)
|
28
|
+
ruby-hmac (0.4.0)
|
29
|
+
shindo (0.1.6)
|
30
|
+
formatador (>= 0.0.14)
|
31
|
+
gestalt (>= 0.0.11)
|
32
|
+
|
33
|
+
PLATFORMS
|
34
|
+
ruby
|
35
|
+
|
36
|
+
DEPENDENCIES
|
37
|
+
builder
|
38
|
+
excon (>= 0.2.3)
|
39
|
+
fog!
|
40
|
+
formatador (>= 0.0.15)
|
41
|
+
json
|
42
|
+
mime-types
|
43
|
+
net-ssh (~> 2.0.23)
|
44
|
+
nokogiri (~> 1.4.3.1)
|
45
|
+
rake
|
46
|
+
rspec
|
47
|
+
ruby-hmac
|
48
|
+
shindo (= 0.1.6)
|
49
|
+
|
50
|
+
METADATA
|
51
|
+
version: 1.0.6
|
@@ -0,0 +1,52 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
fog (0.3.7)
|
5
|
+
builder
|
6
|
+
excon (>= 0.2.3)
|
7
|
+
formatador (>= 0.0.15)
|
8
|
+
json
|
9
|
+
mime-types
|
10
|
+
net-ssh (~> 2.0.23)
|
11
|
+
nokogiri (~> 1.4.3.1)
|
12
|
+
ruby-hmac
|
13
|
+
|
14
|
+
GEM
|
15
|
+
remote: https://rubygems.org/
|
16
|
+
specs:
|
17
|
+
builder (2.1.2)
|
18
|
+
excon (0.2.3)
|
19
|
+
formatador (0.0.15)
|
20
|
+
gestalt (0.0.11)
|
21
|
+
formatador (>= 0.0.12)
|
22
|
+
json (1.4.6)
|
23
|
+
mime-types (1.16)
|
24
|
+
net-ssh (2.0.23)
|
25
|
+
nokogiri (1.4.3.1)
|
26
|
+
rake (0.8.7)
|
27
|
+
rspec (1.3.0)
|
28
|
+
ruby-hmac (0.4.0)
|
29
|
+
shindo (0.1.6)
|
30
|
+
formatador (>= 0.0.14)
|
31
|
+
gestalt (>= 0.0.11)
|
32
|
+
|
33
|
+
PLATFORMS
|
34
|
+
ruby
|
35
|
+
|
36
|
+
DEPENDENCIES
|
37
|
+
builder
|
38
|
+
bundler (~> 1.0.0)
|
39
|
+
excon (>= 0.2.3)
|
40
|
+
fog!
|
41
|
+
formatador (>= 0.0.15)
|
42
|
+
json
|
43
|
+
mime-types
|
44
|
+
net-ssh (~> 2.0.23)
|
45
|
+
nokogiri (~> 1.4.3.1)
|
46
|
+
rake
|
47
|
+
rspec
|
48
|
+
ruby-hmac
|
49
|
+
shindo (= 0.1.6)
|
50
|
+
|
51
|
+
METADATA
|
52
|
+
version: 1.0.6
|
@@ -0,0 +1,52 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
fog (0.3.7)
|
5
|
+
builder
|
6
|
+
excon (>= 0.2.3)
|
7
|
+
formatador (>= 0.0.15)
|
8
|
+
json
|
9
|
+
mime-types
|
10
|
+
net-ssh (~> 2.0.23)
|
11
|
+
nokogiri (~> 1.4.3.1)
|
12
|
+
ruby-hmac
|
13
|
+
|
14
|
+
GEM
|
15
|
+
remote: https://rubygems.org/
|
16
|
+
specs:
|
17
|
+
builder (2.1.2)
|
18
|
+
excon (0.2.3)
|
19
|
+
formatador (0.0.15)
|
20
|
+
gestalt (0.0.11)
|
21
|
+
formatador (>= 0.0.12)
|
22
|
+
json (1.4.6)
|
23
|
+
mime-types (1.16)
|
24
|
+
net-ssh (2.0.23)
|
25
|
+
nokogiri (1.4.3.1)
|
26
|
+
rake (0.8.7)
|
27
|
+
rspec (1.3.0)
|
28
|
+
ruby-hmac (0.4.0)
|
29
|
+
shindo (0.1.6)
|
30
|
+
formatador (>= 0.0.14)
|
31
|
+
gestalt (>= 0.0.11)
|
32
|
+
|
33
|
+
PLATFORMS
|
34
|
+
ruby
|
35
|
+
|
36
|
+
DEPENDENCIES
|
37
|
+
builder
|
38
|
+
bundler (= 1.0.6)
|
39
|
+
excon (>= 0.2.3)
|
40
|
+
fog!
|
41
|
+
formatador (>= 0.0.15)
|
42
|
+
json
|
43
|
+
mime-types
|
44
|
+
net-ssh (~> 2.0.23)
|
45
|
+
nokogiri (~> 1.4.3.1)
|
46
|
+
rake
|
47
|
+
rspec
|
48
|
+
ruby-hmac
|
49
|
+
shindo (= 0.1.6)
|
50
|
+
|
51
|
+
METADATA
|
52
|
+
version: 1.0.6
|