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 +4 -4
- data/README.md +5 -17
- data/easy_start-0.1.0.gem +0 -0
- data/easy_start-0.1.1.gem +0 -0
- data/lib/easy_start/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f71c23b5bde69222583a2143054ea0f03dcb2acf
|
4
|
+
data.tar.gz: 4282b2622d3403d69b695973b11df56d8788ab32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
14
|
+
After installing the gem, add the rails application that needs to be started by the following command
|
27
15
|
|
28
|
-
$ easy_start -a
|
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
|
20
|
+
$ easy_start application_name
|
33
21
|
|
34
22
|
Switching branches are also supported by EasyStart
|
35
23
|
|
36
|
-
$ easy_start
|
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
|
data/lib/easy_start/version.rb
CHANGED
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.
|
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
|