appbombado_startae 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2aef77a1c9192c2d102420d1042092a053932ba4
4
- data.tar.gz: 1247a23d631981bce8efbdbdac20a43ab244c0eb
3
+ metadata.gz: 8f9e04f0bd82cf10f0edb212ddfb8f0449b9e067
4
+ data.tar.gz: 161369c85e83c77597796e4dee893079845eb417
5
5
  SHA512:
6
- metadata.gz: 27a9914ed26cf67f31f4c9ab9a8ad40f0dcac23f3ceadf704c8aa9eda2de3ad9792292bd7fcb56e8a39ab050ae598100fd592acf672e601cd0c39ed1e4272c01
7
- data.tar.gz: 27031f055463ead9130f31894325bfe2a3c043cfd90b84027fdb02399a751772eb6718d326e44e0d6aba7a9ce5197f6bd0299eab5d9f525ce28d2ee305f74fb9
6
+ metadata.gz: e25983a639d1e218c6cad1099e04bfdf16a7914b51605c9d12f30d931ed9a25a3009febf8786c8f5a2619250b7ee6f7ddc383001d4f477fa4f4129321b1cec8f
7
+ data.tar.gz: 0e8cd39164597e70d4dffdb1fb296ff75dd78a8eabf19b3b7e8dcedcca26fb8e62751e6a32c03feb311005022e8ad5a749e084dfff7f9b7b40f333a891630006
data/README.md CHANGED
@@ -6,7 +6,7 @@ TODO: Write a gem description
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
- gem "appbombado_startae", "~> 0.0.5"
9
+ gem "appbombado_startae", "~> 0.0.6"
10
10
 
11
11
  And then execute:
12
12
 
@@ -21,7 +21,7 @@ Or install it yourself as:
21
21
  rails new <nomedoapp>
22
22
 
23
23
  insira na Gemfile:
24
- gem "appbombado_startae", "~> 0.0.5"
24
+ gem "appbombado_startae", "~> 0.0.6"
25
25
 
26
26
  bundle install
27
27
 
@@ -1,3 +1,3 @@
1
1
  module AppbombadoStartae
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -57,8 +57,7 @@ def generate_appbombado
57
57
 
58
58
  run "rails g controller home index"
59
59
 
60
- remove_file "config/routes.rb"
61
- copy_file "routes.rb", "config/routes.rb"
60
+ route "root 'home#index"
62
61
 
63
62
  end
64
63
 
@@ -3,7 +3,7 @@ html
3
3
  head
4
4
 
5
5
  meta name="viewport" content="width=device-width, initial-scale=1.0"
6
- title = app_name
6
+ title <%= app_name %>
7
7
 
8
8
  = stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true
9
9
  = csrf_meta_tags
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appbombado_startae
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruno Santos Chagas
@@ -48,7 +48,6 @@ files:
48
48
  - lib/generators/appbombado/templates/application.sass
49
49
  - lib/generators/appbombado/templates/database.yml
50
50
  - lib/generators/appbombado/templates/layout.sass
51
- - lib/generators/appbombado/templates/routes.rb
52
51
  - lib/generators/appbombado/templates/simple_form_bootstrap.rb
53
52
  - lib/generators/appbombado_article/USAGE
54
53
  - lib/generators/appbombado_article/appbombado_generator.rb
@@ -1,58 +0,0 @@
1
- Teste::Application.routes.draw do
2
- resources :articles
3
-
4
- # The priority is based upon order of creation: first created -> highest priority.
5
- # See how all your routes lay out with "rake routes".
6
-
7
- # You can have the root of your site routed with "root"
8
- root 'home#index'
9
-
10
- # Example of regular route:
11
- # get 'products/:id' => 'catalog#view'
12
-
13
- # Example of named route that can be invoked with purchase_url(id: product.id)
14
- # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
15
-
16
- # Example resource route (maps HTTP verbs to controller actions automatically):
17
- # resources :products
18
-
19
- # Example resource route with options:
20
- # resources :products do
21
- # member do
22
- # get 'short'
23
- # post 'toggle'
24
- # end
25
- #
26
- # collection do
27
- # get 'sold'
28
- # end
29
- # end
30
-
31
- # Example resource route with sub-resources:
32
- # resources :products do
33
- # resources :comments, :sales
34
- # resource :seller
35
- # end
36
-
37
- # Example resource route with more complex sub-resources:
38
- # resources :products do
39
- # resources :comments
40
- # resources :sales do
41
- # get 'recent', on: :collection
42
- # end
43
- # end
44
-
45
- # Example resource route with concerns:
46
- # concern :toggleable do
47
- # post 'toggle'
48
- # end
49
- # resources :posts, concerns: :toggleable
50
- # resources :photos, concerns: :toggleable
51
-
52
- # Example resource route within a namespace:
53
- # namespace :admin do
54
- # # Directs /admin/products/* to Admin::ProductsController
55
- # # (app/controllers/admin/products_controller.rb)
56
- # resources :products
57
- # end
58
- end