whally 0.1.1 → 0.1.2

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74d6d2309f95782781672f56f89b7796edd07c81
4
- data.tar.gz: f8d1fa7ccf1bd5837ddb1a6ef643ecc527f2e0d0
3
+ metadata.gz: 66c88f0281aff4c330d70ffa123cacc7e5a039d1
4
+ data.tar.gz: 22b39b71aaa3fc531bd1f4a494271a2a02e36ab3
5
5
  SHA512:
6
- metadata.gz: b46d6dc728f8c39efc38f40218eb0bb7ec8dd22fa829f692f78a824845acc35f3e2c14c6d2548f517b42d13383c038a3474ea47cf4f908eb3fd2d4e36920f4e6
7
- data.tar.gz: 7fda9fa1b7b0728238b19f978934341d3854c0cbec3661c2b459a1dc815194ab5a927695138fee2b0c105e939780130e1d860936ad2dafd686de2d17ee3c1112
6
+ metadata.gz: c411f9c7b643fa5c64624f51ef487e4fba934de9a5533a7632211d8cc5abb431adadab67a84e8f96ab72cea96e957962f977dad2b3c20ad2b6fe56b59c04cb46
7
+ data.tar.gz: 3c237a70dd5bfa59dac616ba4328d67383dbd92b74eefe22f0f6413bca4820888b3f6b482c4c5cb9b7e1c232994b16070411bc7ce47952741746f51bfdf6559d
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # [Whales](https://github.com/IcaliaLabs/whales)
1
+ # [Whally](https://github.com/IcaliaLabs/whales)
2
2
 
3
3
  [![Code Climate](https://codeclimate.com/repos/571a34d6c0558e4075003682/badges/99957175ce0f89b74157/gpa.svg)](https://codeclimate.com/repos/571a34d6c0558e4075003682/feed)
4
4
  [![Issue Count](https://codeclimate.com/repos/571a34d6c0558e4075003682/badges/99957175ce0f89b74157/issue_count.svg)](https://codeclimate.com/repos/571a34d6c0558e4075003682/feed)
5
5
  [![Test Coverage](https://codeclimate.com/repos/571a34d6c0558e4075003682/badges/99957175ce0f89b74157/coverage.svg)](https://codeclimate.com/repos/571a34d6c0558e4075003682/coverage)
6
6
 
7
- **Whales** is a command with the intention to automatically dockerize rails app.
7
+ **Whally** is a command with the intention to automatically dockerize rails app.
8
8
 
9
9
 
10
10
  ## Table of contents
@@ -19,17 +19,17 @@
19
19
  To install the gem you can just run the following command:
20
20
 
21
21
  ```console
22
- % gem install whales
22
+ % gem install whally
23
23
  ```
24
24
 
25
- You now have access to the `whales` command through the CLI.
25
+ You now have access to the `whally` command through the CLI.
26
26
 
27
27
  ## Usage
28
28
 
29
- To dockerize a rails app, just use the whales command:
29
+ To dockerize a rails app, just use the whally command:
30
30
 
31
31
  ```console
32
- % whales dockerize
32
+ % whally dockerize
33
33
  ```
34
34
 
35
35
 
@@ -37,7 +37,7 @@ To dockerize a rails app, just use the whales command:
37
37
 
38
38
  It will create the `dockerfile` and `docker-compose.yml` that your app needs based on your Gemfile.
39
39
 
40
- It will scan your gemfile and call [WhalesAPI](http://github.com/icalialabs/whaleapi) and send it an array of all the gems.
40
+ It will scan your gemfile and call [WhallyAPI](http://github.com/icalialabs/whaleapi) and send it an array of all the gems.
41
41
  It will receive all gems dependencies that will go straight to `dockerfile` and all gems services that will go straight to `docker-compose.yml`
42
42
 
43
43
  After that you can just run `docker-compose up -d` and start working on your newly dockerized app!
@@ -45,7 +45,7 @@ After that you can just run `docker-compose up -d` and start working on your new
45
45
 
46
46
  It will also:
47
47
 
48
- 1. Run `docker-compose up -d` to start your container when `whales dockerize` is called.
48
+ 1. Run `docker-compose up -d` to start your container when `whally dockerize` is called.
49
49
 
50
50
 
51
51
  ## Bug tracker & feature request
@@ -64,4 +64,4 @@ Thank you [contributors](https://github.com/IcaliaLabs/whales/graphs/contributor
64
64
 
65
65
  ![Icalia Labs](https://raw.githubusercontent.com/IcaliaLabs/kaishi/master/logo.png)
66
66
 
67
- WhalesAPI is maintained by [Icalia Labs](http://www.icalialabs.com/team).
67
+ WhallyAPI is maintained by [Icalia Labs](http://www.icalialabs.com/team).
data/bin/whally CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
- require 'whales'
2
+ require 'whally'
3
3
 
4
- Whales::Builder.start( ARGV )
4
+ Whally::Builder.start( ARGV )
data/docker-compose.yml CHANGED
@@ -11,7 +11,7 @@ services:
11
11
  volumes:
12
12
  - .:/usr/src/whally
13
13
  - gems:/usr/local/bundle
14
- - ../datoz-master:/usr/src/whales/datoz
14
+ - ../datoz-master:/usr/src/whally/datoz
15
15
  working_dir: /usr/src/whally
16
16
  tty: true
17
17
  stdin_open: true
@@ -1,3 +1,3 @@
1
1
  module Whally
2
- VERSION = '0.1.1'.freeze
2
+ VERSION = '0.1.2'.freeze
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -2,4 +2,4 @@ require 'codeclimate-test-reporter'
2
2
  CodeClimate::TestReporter.start
3
3
 
4
4
  $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
5
- require 'whales'
5
+ require 'whally'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: whally
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abraham Kuri