appbombado_startae 0.1.16 → 0.1.17
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 +22 -9
- data/lib/appbombado_startae/version.rb +1 -1
- data/lib/generators/appbombado/templates/Gemfile +1 -7
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0af58d834e5f822880ec8943ed297a17695319b
|
|
4
|
+
data.tar.gz: 16b0ec9ba3a84fccba72df7a904daeadf02ed677
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ee8457971d72d5723a1c147c5996645317b5471351a455ba5cf29d5f419d74bd4fcac58d9d8bc90031d457346cef7943c9eb10dec663b59b98bc0509f3775a1
|
|
7
|
+
data.tar.gz: f2e02b296c5ff2648c5b7898ee4e469943775ca0d3bc4aef4e87f48357330e771cd12dbf932385813c1d17b9026392c049be2159a4162f3c2c9ab0b0a37065e0
|
data/README.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
# AppbombadoStartae
|
|
2
3
|
|
|
3
4
|
Versão inicial de APP para alunos Startaê
|
|
@@ -8,7 +9,7 @@ Versão inicial de APP para alunos Startaê
|
|
|
8
9
|
|
|
9
10
|
Add this line to your application's Gemfile:
|
|
10
11
|
|
|
11
|
-
gem "appbombado_startae", "~> 0.1.
|
|
12
|
+
gem "appbombado_startae", "~> 0.1.17"
|
|
12
13
|
|
|
13
14
|
And then execute:
|
|
14
15
|
|
|
@@ -20,19 +21,31 @@ Or install it yourself as:
|
|
|
20
21
|
|
|
21
22
|
## Usage
|
|
22
23
|
|
|
24
|
+
Só funciona com Ruby 2.0
|
|
25
|
+
-> rvm use 2.0
|
|
26
|
+
-> bundle update
|
|
27
|
+
|
|
28
|
+
Só funciona com Postgre
|
|
29
|
+
|
|
30
|
+
-> psql --version
|
|
31
|
+
-> brew install postgresql
|
|
32
|
+
-> initdb /usr/local/var/postgres
|
|
33
|
+
-> pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
|
|
34
|
+
|
|
35
|
+
|
|
23
36
|
rails new 'nome_do_app'
|
|
24
37
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
38
|
+
Gemfile
|
|
39
|
+
-> gem "appbombado_startae", "~> 0.1.17"
|
|
40
|
+
|
|
41
|
+
-> bundle install
|
|
42
|
+
-> rails g appbombado 'nome_do_app'
|
|
30
43
|
|
|
31
|
-
Gemfile -> gem "appbombado_startae", "~> 0.1.16"
|
|
32
44
|
|
|
33
|
-
|
|
45
|
+
obs: se der erro de Gem- rode
|
|
46
|
+
-> bundle install
|
|
47
|
+
-> rails g appbombado 'nome_do_app'
|
|
34
48
|
|
|
35
|
-
rails g appbombado 'nome_do_app'
|
|
36
49
|
|
|
37
50
|
## Contributing
|
|
38
51
|
|
|
@@ -12,8 +12,6 @@ gem 'uglifier', '~> 1.3.0'
|
|
|
12
12
|
gem 'coffee-rails', '~> 4.0.0'
|
|
13
13
|
gem 'jquery-rails', '~> 3.0.4'
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
15
|
# turbolinks
|
|
18
16
|
gem 'turbolinks', '~> 1.3.0'
|
|
19
17
|
gem 'jquery-turbolinks', '~> 2.0.1'
|
|
@@ -37,8 +35,6 @@ gem 'simple_form', '~> 3.0.0'
|
|
|
37
35
|
# pagination
|
|
38
36
|
gem 'kaminari', '~> 0.14.1'
|
|
39
37
|
|
|
40
|
-
|
|
41
|
-
|
|
42
38
|
# urls
|
|
43
39
|
gem 'friendly_id', '~> 5.0.1'
|
|
44
40
|
|
|
@@ -68,10 +64,8 @@ end
|
|
|
68
64
|
gem "mini_magick"
|
|
69
65
|
gem "carrierwave"
|
|
70
66
|
gem "fog"
|
|
71
|
-
gem
|
|
67
|
+
gem 'unf'
|
|
72
68
|
gem 'redactor-rails'
|
|
73
69
|
|
|
74
70
|
|
|
75
|
-
|
|
76
|
-
|
|
77
71
|
# gem 'start', path: '../start'
|