simple-bootstrap-forms 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: 3f75ad1f11f052cb709279e39c11c095db43149a5461eec63c191c623bef2d7b
4
- data.tar.gz: 695f2061d908c23f0dc2309b353b079b368265959692af5558f745a96d5a94c6
3
+ metadata.gz: 26b6fa458ed946db2fd572bd482025eb58f3f103145ff9ca168faea24f9c1e82
4
+ data.tar.gz: a64421b714b818833e7863d603c98a44a5d19dc95f4e9fecf6ba5e364fa886df
5
5
  SHA512:
6
- metadata.gz: c5b3b275e4a5c8fd1b687c26e2455560c14de5d909e1a8c8fc3341898fc80b0c6771b10a026ae9863fd0d5d2d310c7f6499252fe9572ba01a6daf9267aad9140
7
- data.tar.gz: bcc016e868c3c87902dbc10b324e53cfb264be006c0781a6afe926bd1b47c62792746625418baa4e31b1da42c8201eab0b6be105ee79f77a7e7a433b9c0c099b
6
+ metadata.gz: 1ec910167bc94abdc6942cdcebeebb236704db9d43fdbe7655ccc2cd38fb5d2af1ada607cc7bf18914e660351a6e3d821646d59209885328dd6b3be1b79e96a0
7
+ data.tar.gz: bc97feac1ed8432888ddf7e8e13c6fdf727a42dea96e1cf74b0a62b54d6f83f6e64eafef2496c0b73a3a45b422579353eb0f17ed59f805c268e0e4a0025d8179
@@ -1,15 +1,15 @@
1
- class SimpleBootstrapFormsGenerator < Rails::Generators::Base
2
- source_root ::File.expand_path('../templates', __FILE__)
3
-
4
- def copy_initializer_file
5
- copy_file "simple.rb", "config/initializers/simple_boostrap_forms.rb"
6
- end
7
-
8
- def copy_form_builder
9
- copy_file "_form.html.erb", "lib/templates/erb/scaffold/_form.html.erb"
10
- end
11
-
12
- def copy_error_parial
13
- copy_file "_error.html.erb", "app/views/shared/_error.html.erb"
14
- end
15
- end
1
+ class SimpleBootstrapFormsGenerator < Rails::Generators::Base
2
+ source_root ::File.expand_path('../templates', __FILE__)
3
+
4
+ def copy_initializer_file
5
+ copy_file 'simple.rb', 'config/initializers/simple_boostrap_forms.rb'
6
+ end
7
+
8
+ def copy_form_builder
9
+ copy_file '_form.html.erb', 'lib/templates/erb/scaffold/_form.html.erb'
10
+ end
11
+
12
+ def copy_error_parial
13
+ copy_file '_error.html.erb', 'app/views/shared/_error.html.erb'
14
+ end
15
+ end
@@ -1,2 +1,2 @@
1
- # Disable scaffold stylesheet generation by default
2
- Rails.application.config.generators.scaffold_stylesheet = false
1
+ # Disable scaffold stylesheet generation by default
2
+ Rails.application.config.generators.scaffold_stylesheet = false
@@ -1,4 +1,4 @@
1
- require "simple/bootstrap/forms/railtie"
1
+ require 'simple/bootstrap/forms/railtie'
2
2
 
3
3
  module Simple
4
4
  module Bootstrap
@@ -1,7 +1,7 @@
1
1
  module Simple
2
2
  module Bootstrap
3
3
  module Forms
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'.freeze
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple-bootstrap-forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kress
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-14 00:00:00.000000000 Z
11
+ date: 2019-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: Override default rails generators to use bootstrap classes on forms.
41
+ description: Override default rails generators to use bootstrap classes.
42
42
  email:
43
43
  - andrew.kress@gmail.com
44
44
  executables: []
@@ -74,10 +74,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  requirements: []
77
- rubyforge_project:
78
- rubygems_version: 2.7.6
77
+ rubygems_version: 3.0.2
79
78
  signing_key:
80
79
  specification_version: 4
81
- summary: Override default rails generators to use bootstrap classes on forms. Bootstrap
82
- and other dependencies are not included.
80
+ summary: Override default rails generators to use bootstrap classes. Bootstrap and
81
+ other dependencies are not included.
83
82
  test_files: []