plastic_rails 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 +4 -4
- data/README.md +5 -1
- data/lib/plastic_rails/version.rb +1 -1
- data/plastic_rails.gemspec +1 -14
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7e7792da09735fc997d0525f866f9c775f71aaf924f319beba09efb701adc3b
|
4
|
+
data.tar.gz: 9655d94cfb711ac6b4657bc710d585d3dcf6fb90e76031f78130736e4e5b4a06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cd987c05632bdfc790c67433d6edf7d542c1e46c1b6652c6774fcbacdb448acbed42fe06e6711bbc48535bc80c21b18d08cda1cd20ac794b7209ed325e9fa85
|
7
|
+
data.tar.gz: 6ec85c5acd71078575b9ad0ec1c37cdf070dd789dafd20c6b30c7cd9cee3083bfaf98b8d5254d1d911767b3779516241b9be9f628cf00bc597dc60894caca316
|
data/README.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# Plastic Rails
|
2
|
+
[](https://badge.fury.io/rb/plastic_rails)
|
3
|
+
|
4
|
+
|
2
5
|
docker上にRuby on Railsの環境を一発で作るスクリプト
|
3
6
|
|
4
7
|
プラレールのように自分用のレールを引こう
|
5
8
|
|
9
|
+
|
6
10
|
## Requirements
|
7
11
|
- Docker
|
8
12
|
- Docker Compose
|
@@ -20,7 +24,7 @@ gem install plastic_rails
|
|
20
24
|
- rails new済のDockerコンテナを作成する
|
21
25
|
- `plastic_rails new <APP_NAME>`
|
22
26
|
- コンテナのシェルにログインする
|
23
|
-
- `cd <APP_NAME>;
|
27
|
+
- `cd <APP_NAME>; plastic_rails login; `
|
24
28
|
- コンテナ上でRails serverを起動する
|
25
29
|
- `rails s -b 0.0.0.0`
|
26
30
|
|
data/plastic_rails.gemspec
CHANGED
@@ -10,23 +10,10 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["gohannnotomo@gmail.com"]
|
11
11
|
|
12
12
|
spec.summary = %q{docker上にRuby on Railsの環境を一発で作るスクリプト}
|
13
|
-
spec.description = %q{
|
13
|
+
spec.description = %q{docker上にRuby on Railsの環境を一発で作るスクリプト。プラレールのように自分用のレールを引こう。}
|
14
14
|
spec.homepage = "http://github.com/koki-h/plastic_rails"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
|
-
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
-
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
-
# if spec.respond_to?(:metadata)
|
20
|
-
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
21
|
-
#
|
22
|
-
# spec.metadata["homepage_uri"] = spec.homepage
|
23
|
-
# spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
|
24
|
-
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
25
|
-
# else
|
26
|
-
# raise "RubyGems 2.0 or newer is required to protect against " \
|
27
|
-
# "public gem pushes."
|
28
|
-
# end
|
29
|
-
|
30
17
|
# Specify which files should be added to the gem when it is released.
|
31
18
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
32
19
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plastic_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Koki Hashimoto
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
description:
|
55
|
+
description: docker上にRuby on Railsの環境を一発で作るスクリプト。プラレールのように自分用のレールを引こう。
|
56
56
|
email:
|
57
57
|
- gohannnotomo@gmail.com
|
58
58
|
executables:
|