raboot 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: 7d936ec3cc76041ee1cfb014b909f88e086ea7fa
4
- data.tar.gz: 1a12dbb2579e3d17cf08b9ea7f39b7bf46bfd869
3
+ metadata.gz: 2a3b6ff063d8acf8151d698dca55cc199ab9ab95
4
+ data.tar.gz: 40acb46364125a55b6caebcdd1b79b6e92e6f9bb
5
5
  SHA512:
6
- metadata.gz: 570379a5de36306c9e9e6b3254617bf88cc32e64676cee895fb0187c67e8c62d604a124ce91d6e242a5b6636b05292a83961103c6f073d9bbea00dff9c0948ef
7
- data.tar.gz: 19bb808ab858e2f3fac9ec08d8e09df0a76e9a055bf526ef50a6bd85360315ad60c1487cc0daea108e09091f8c38e3526663b3a338eb361d9ed5c1421117629e
6
+ metadata.gz: 2513e14150137d069c7008380e6143bdefef247b75e41e270d09b429d0bef95a81056f3a3c5db8406c5ff17e03215967b854db5f72e1ce02f936ab0cd80dd128
7
+ data.tar.gz: 06a5a8ee6c3f6c10ff09fdffd5c83bc1a7aafca3854a5f3f3d32f8d08dc30b7f5a6d30e8c4e1c497bd22ba0dac4c77735daa418ecc4bb8a533d8bca34a122080
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. 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.
2
+ At the beginning of Ruby on Rails application development, developers need to set up gem etc. It makes me feel lazy. 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
- It is necessary to prepare an rails application to be a template in ```~/raboot```.
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>
@@ -20,7 +20,7 @@ module Raboot
20
20
  desc 'new', 'Generate a new Rails app from template'
21
21
  def new(name)
22
22
  if validate_name?(name)
23
- template_path = File.expand_path('~/raboot/*')
23
+ template_path = File.expand_path('~/.raboot/*')
24
24
  FileUtils.mkdir(name)
25
25
  FileUtils.cp_r(Dir.glob(template_path), name)
26
26
  rename_app(name)
@@ -4,7 +4,7 @@ module Raboot
4
4
  module Version
5
5
  MAJOR = 0
6
6
  MINOR = 1
7
- PATCH = 1
7
+ PATCH = 2
8
8
 
9
9
  STRING = [MAJOR, MINOR, PATCH].compact.join('.')
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raboot
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
  - tkmru
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-04-20 00:00:00.000000000 Z
11
+ date: 2017-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler