raboot 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/lib/raboot/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f03230c4757464a6ec824dd5e8675252f183eb35
4
- data.tar.gz: f9a2f19771316662f21ca962697c734ef150e764
3
+ metadata.gz: 7d936ec3cc76041ee1cfb014b909f88e086ea7fa
4
+ data.tar.gz: 1a12dbb2579e3d17cf08b9ea7f39b7bf46bfd869
5
5
  SHA512:
6
- metadata.gz: b0acf20f3fc175a90f61f00326d3bd3a7edd94ac19c0a40fb58580bf2fc516a4e5cd35d9e122397f75b874cf4531b2643c02bee7b0e6080fa3fa3e4b38da3056
7
- data.tar.gz: 546ef2b8b036ad1c7c32fc99999b457ffc9d099db10130fb17b8a62ca21d45d88fc1dff5b259ef55d781b8203d70e4a2a0e3592fc67bdaff8c55fc7ea6a7f123
6
+ metadata.gz: 570379a5de36306c9e9e6b3254617bf88cc32e64676cee895fb0187c67e8c62d604a124ce91d6e242a5b6636b05292a83961103c6f073d9bbea00dff9c0948ef
7
+ data.tar.gz: 19bb808ab858e2f3fac9ec08d8e09df0a76e9a055bf526ef50a6bd85360315ad60c1487cc0daea108e09091f8c38e3526663b3a338eb361d9ed5c1421117629e
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Raboot
2
- At the beginning of Ruby on Rails application development, developers need to set up gem etc. I feel so lazy. Raboot solves this problem. Raboot set up new rails app by copying from already existed rails app as a template. By default, it use ```~/raboot``` as a template.
2
+ At the beginning of Ruby on Rails application development, developers need to set up gem etc. It makes me feel lazy. Raboot solves this problem. Raboot set up new rails app by copying from already existed rails app as a template. By default, it use ```~/raboot``` as a template.
3
3
 
4
4
 
5
5
  ## Installation
@@ -9,7 +9,7 @@ $ gem install raboot
9
9
  ```
10
10
 
11
11
  ## Usage
12
-
12
+ It is necessary to prepare an rails application to be a template in ```~/raboot```.
13
13
 
14
14
  ```
15
15
  $ raboot new <new_rails_app_name>
@@ -4,7 +4,7 @@ module Raboot
4
4
  module Version
5
5
  MAJOR = 0
6
6
  MINOR = 1
7
- PATCH = 0
7
+ PATCH = 1
8
8
 
9
9
  STRING = [MAJOR, MINOR, PATCH].compact.join('.')
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raboot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - tkmru