capistrano-pimcore 0.1.0 → 0.1.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 +4 -4
- data/README.md +6 -7
- data/lib/capistrano/pimcore.rb +3 -0
- data/lib/capistrano/pimcore/version.rb +1 -1
- data/lib/capistrano/tasks/deploy.rake +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aff0ef7b0dbfcaeea744695a5c8f920f06c94232
|
|
4
|
+
data.tar.gz: 1a6a764142ecbf74c736e1e5542dc821f7d249be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e75e7e253b1c8541b3a43438061af3531c6cf870b1cc1d2ef9537aea5cc5c704f001a2aecf6fa9caa45bd86f1218f67d0c17a522c0bca2b57dd3158c39d04fb9
|
|
7
|
+
data.tar.gz: 3cfad214df3663330b11d48b4d9a63768eb7ea915bb24d22e94f85e40b0233efac92bc43a3c673f0ba6886f249c6e9104fa7cc098306f9506d235acf36d90458
|
data/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# Capistrano::Pimcore
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
Pimcore plugin for capistrano
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
@@ -22,13 +20,14 @@ Or install it yourself as:
|
|
|
22
20
|
|
|
23
21
|
## Usage
|
|
24
22
|
|
|
25
|
-
Pimcore
|
|
23
|
+
### How work with Pimcore environments
|
|
24
|
+
|
|
25
|
+
Default environment is `development` if you need change Pimcore environment add param env, exapmle:
|
|
26
|
+
|
|
26
27
|
```bash
|
|
27
28
|
bundle exec cap test pimcore:cache:clear env=production
|
|
28
29
|
```
|
|
29
30
|
|
|
30
|
-
TODO: write mora about default env and places where env can be setted
|
|
31
|
-
|
|
32
31
|
## Development
|
|
33
32
|
|
|
34
33
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
@@ -37,4 +36,4 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
37
36
|
|
|
38
37
|
## Contributing
|
|
39
38
|
|
|
40
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
39
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/DivanteLtd/capistrano-pimcore.
|
data/lib/capistrano/pimcore.rb
CHANGED