fontana_client_support 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OTg4MjY1MjUwNzkxMDViNmRkZmRkYjY4ZmVlNTE1ZTgyMWQ5NmZlYQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MjMxNjA4ZGE2MGJhYWVlZTY0Y2FiMGVmNjA0OTRjYjUwOWE3MzA2Ng==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDc0ODBlYTM0ZGZlNzcyYWQ1ZDI3YmY4N2FmMDI3NDIwYWQwZDVmY2E2ZjIz
|
10
|
+
ZWIzMDJhZTBlMDZkNGQ5YTNjZmNiMmQ1N2Q1ZTM0Y2M2ZWMzMzMxNDhiOGYy
|
11
|
+
MWQxOGQxYzlmODg3YWM2Y2ViNTA4M2UwMTQ3OWMzZmMwZDViNDI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MmRmYTNlNjY0ZGQ4YzI0YWIwNWQzZjNhNjZkNWRiZjgyZDNmNjg5MjdkZGI0
|
14
|
+
ZWNhYWU4MmM4NjVkMGIxYjhkNmQ1N2Q1NjI1ZDY1ZmZiZTE3OTNlMTM0NWY3
|
15
|
+
YWY5YjY3NDE0MDlmYzAyNmI2OTBkNjI0MTVlZmEyNzI3M2U5YTQ=
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fontana_client_support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- akima
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-08-
|
11
|
+
date: 2013-08-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -106,7 +106,7 @@ files:
|
|
106
106
|
- lib/fontana_client_support.rb
|
107
107
|
- lib/fontana_client_support/config_server.rb
|
108
108
|
- lib/fontana_client_support/tasks.rb
|
109
|
-
- lib/fontana_client_support/tasks/
|
109
|
+
- lib/fontana_client_support/tasks/app_seed.rake
|
110
110
|
- lib/fontana_client_support/tasks/config_server.rake
|
111
111
|
- lib/fontana_client_support/tasks/deploy/scm.rake
|
112
112
|
- lib/fontana_client_support/tasks/deploy/sync.rake
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
require 'fontana_client_support'
|
3
|
-
|
4
|
-
namespace :app_mode do
|
5
|
-
|
6
|
-
desc "show app_mode"
|
7
|
-
task :show do
|
8
|
-
puts Fontana.app_mode.inspect
|
9
|
-
end
|
10
|
-
|
11
|
-
# 以下に:productionがありませんが、rakeタスクでproductionに設定することは想定できないので、敢えて作っていません。
|
12
|
-
|
13
|
-
desc "set app_mode test"
|
14
|
-
task :test do
|
15
|
-
Fontana.app_mode = "test"
|
16
|
-
end
|
17
|
-
|
18
|
-
desc "set app_mode development"
|
19
|
-
task :development do
|
20
|
-
Fontana.app_mode = "development"
|
21
|
-
end
|
22
|
-
|
23
|
-
end
|
24
|
-
|
25
|
-
task :app_model => :"app_mode:show"
|