nyros_form2 0.1.3 → 0.1.4
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 +8 -8
- data/lib/nyros_form2/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79a1f71a6abccb830ffd1bfdbe8d30c831bd3dfc7fa658b38b6791c811af8c18
|
|
4
|
+
data.tar.gz: 6ba311fc3bff59728e0cd995b10ab7d529f6a72d1a6326ce8d755cfca00ad978
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae21ecaa400d612a96bcb1bdcf516b19b84cb2707eac28458fd88fbfecdc1653d24a097b43f9b3f96d0fb28dc3560ea0a443f20eceab8a9058c8cf8395225cec
|
|
7
|
+
data.tar.gz: 450ecadada327912c6a6c611b7f721b6204f64507a5754361eeeab3df28084f1cc12843c85f734e95a7fb57a8e02930ab137fe783f968c1d278b7fa0bee4632e
|
data/README.md
CHANGED
|
@@ -5,22 +5,22 @@ Short description and motivation.
|
|
|
5
5
|
How to use my plugin.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
|
-
|
|
8
|
+
First add the gem to your Gemfile and run the bundle command.
|
|
9
9
|
|
|
10
10
|
```ruby
|
|
11
11
|
gem 'nyros_form2'
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
$ bundle
|
|
14
|
+
Next, mount the engine in your routes.rb under the path you want.
|
|
17
15
|
```
|
|
18
|
-
|
|
19
|
-
Or install it yourself as:
|
|
20
|
-
```bash
|
|
21
|
-
$ gem install nyros_form2
|
|
16
|
+
mount NyrosForm2::Engine => "/nyros_form2"
|
|
22
17
|
```
|
|
23
18
|
|
|
19
|
+
Then copy over the migrations and run them.
|
|
20
|
+
```
|
|
21
|
+
rake nyros_form2:install:migrations
|
|
22
|
+
rake db:migrate
|
|
23
|
+
```
|
|
24
24
|
## Contributing
|
|
25
25
|
Contribution directions go here.
|
|
26
26
|
|
data/lib/nyros_form2/version.rb
CHANGED