easy_start 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: 8a4e2d5ef701823d4d40e2bfa1090950a2798e46
4
- data.tar.gz: ed8b8d6cbb1cd3c533f58a1816cbeb6533f2e855
3
+ metadata.gz: f71c23b5bde69222583a2143054ea0f03dcb2acf
4
+ data.tar.gz: 4282b2622d3403d69b695973b11df56d8788ab32
5
5
  SHA512:
6
- metadata.gz: b15302e171e17b151c91ec2d54080a189f860cbd4bfcc71dc8ffd8fb790e840eb851e19f1deaabfabe56b5cd5f7462b17960098f2d6a8f5dd8c5f4441f946684
7
- data.tar.gz: 755d0c049c7a3f3b7a8ccc45156cc69b86c1ad030d97cc0830cb2d81e1d8e98f7a42cb495c92d6eb71398e799356b4fb118af4d36c1133cc0e2c0b4c1337b478
6
+ metadata.gz: bde55cdc8dad339dc5be85793a4a383e37edf89667a2d2c5eefcb9bd3bac320d2c810db90ecdfdb1faa5c1dab4d1f71c479faaf510c15201f8016cc93759d7ed
7
+ data.tar.gz: 78c136a23e62a95e8a4a6852a01c0ab63fe9a5e669c8c6d75fff5c8ac69837cb0f5097df46b42f59df72b67f620308ff9b755e097d96deea5803740f8137dbd7
data/README.md CHANGED
@@ -2,38 +2,26 @@
2
2
 
3
3
  EasyStart will allow users to quickly start the local rails server in a single command. This gem is intended to be used only in development mode.
4
4
 
5
- $ easy_start project_name
5
+ $ easy_start application_name
6
6
  the above command will start the rails server in your local machine and you are ready to go to your browser to test or develop your application.
7
7
 
8
8
  ## Installation
9
9
 
10
- Add this line to your application's Gemfile:
11
-
12
- ```ruby
13
- gem 'easy_start'
14
- ```
15
-
16
- And then execute:
17
-
18
- $ bundle
19
-
20
- Or install it yourself as:
21
-
22
10
  $ gem install easy_start
23
11
 
24
12
  ## Usage
25
13
 
26
- After installing the gem, add the projects that needs to be started by the following command
14
+ After installing the gem, add the rails application that needs to be started by the following command
27
15
 
28
- $ easy_start -a project_name -p project_path
16
+ $ easy_start -a application_name -p application_path
29
17
 
30
18
  Now you are ready to start your project from anywhere in terminal by
31
19
 
32
- $ easy_start project_name
20
+ $ easy_start application_name
33
21
 
34
22
  Switching branches are also supported by EasyStart
35
23
 
36
- $ easy_start project_name branch_name
24
+ $ easy_start application_name branch_name
37
25
 
38
26
  Note: mentioning branch name will switch the application directory to that branch and will automatically pull the latest version of the branch before starting the server.
39
27
 
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  module EasyStart
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_start
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
  - Arun Eapachen
@@ -71,6 +71,8 @@ files:
71
71
  - bin/console
72
72
  - bin/easy_start
73
73
  - bin/setup
74
+ - easy_start-0.1.0.gem
75
+ - easy_start-0.1.1.gem
74
76
  - easy_start.gemspec
75
77
  - lib/easy_start.rb
76
78
  - lib/easy_start/version.rb