simple-bootstrap-forms 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26b6fa458ed946db2fd572bd482025eb58f3f103145ff9ca168faea24f9c1e82
4
- data.tar.gz: a64421b714b818833e7863d603c98a44a5d19dc95f4e9fecf6ba5e364fa886df
3
+ metadata.gz: d44e9b8a55f371523366654638c37cbb11c467ac1833db87d8ec8101aa4a0c98
4
+ data.tar.gz: 5e64851a5800d0b41ad8c26c38183dd6fb2114fd95a72cc980f31af232822d5d
5
5
  SHA512:
6
- metadata.gz: 1ec910167bc94abdc6942cdcebeebb236704db9d43fdbe7655ccc2cd38fb5d2af1ada607cc7bf18914e660351a6e3d821646d59209885328dd6b3be1b79e96a0
7
- data.tar.gz: bc97feac1ed8432888ddf7e8e13c6fdf727a42dea96e1cf74b0a62b54d6f83f6e64eafef2496c0b73a3a45b422579353eb0f17ed59f805c268e0e4a0025d8179
6
+ metadata.gz: 067f5aeea15ee3255b944140bbac8d025c120f30f70495eb8afe1818d30d9b3f49842638a0396cf9349d99fd9a377eabe6b57d05b05e94eaf26c7db9f9d1a206
7
+ data.tar.gz: c11bde7db0defa6efda57d585c0743a9b08ba659f175541711e778546e82630b9b42be1dd51277bf74ebc9e5525578c14b98597271912f81b74c0ef6c9100c6c
data/MIT-LICENSE CHANGED
File without changes
data/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ [![Gem Version](https://badge.fury.io/rb/simple-bootstrap-forms.svg)](https://badge.fury.io/rb/simple-bootstrap-forms)
2
+ [![Maintainability](https://api.codeclimate.com/v1/badges/c3ffcf76fafdf18cc288/maintainability)](https://codeclimate.com/github/andrewkress/simple-bootstrap-forms/maintainability)
3
+ [![Build Status](https://travis-ci.com/andrewkress/simple-bootstrap-forms.svg?branch=master)](https://travis-ci.com/andrewkress/simple-bootstrap-forms)
4
+
1
5
  # Simple::Bootstrap::Forms
2
6
  Simply override the default generators to use bootstrap classes in rails without any dependencies that will be out of date because the maintainer hasn't updated their gem in 4 years.
3
7
 
@@ -7,6 +11,10 @@ How to use my plugin.
7
11
  ## Installation
8
12
  Add this line to your application's Gemfile:
9
13
 
14
+ ```ruby
15
+ gem 'simple-bootstrap-forms'
16
+ ```
17
+ or
10
18
  ```ruby
11
19
  gem 'simple-bootstrap-forms', github: 'andrewkress/simple-bootstrap-forms'
12
20
  ```
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  begin
2
4
  require 'bundler/setup'
3
5
  rescue LoadError
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class SimpleBootstrapFormsGenerator < Rails::Generators::Base
2
4
  source_root ::File.expand_path('../templates', __FILE__)
3
5
 
File without changes
File without changes
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Disable scaffold stylesheet generation by default
2
4
  Rails.application.config.generators.scaffold_stylesheet = false
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Simple
2
4
  module Bootstrap
3
5
  module Forms
@@ -1,7 +1,9 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Simple
2
4
  module Bootstrap
3
5
  module Forms
4
- VERSION = '0.1.1'.freeze
6
+ VERSION = '0.1.2'
5
7
  end
6
8
  end
7
9
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'simple/bootstrap/forms/railtie'
2
4
 
3
5
  module Simple
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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kress
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-21 00:00:00.000000000 Z
11
+ date: 2019-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -16,28 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.5'
19
+ version: '2.0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.5'
27
- - !ruby/object:Gem::Dependency
28
- name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
26
+ version: '2.0'
41
27
  description: Override default rails generators to use bootstrap classes.
42
28
  email:
43
29
  - andrew.kress@gmail.com
@@ -74,7 +60,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
60
  - !ruby/object:Gem::Version
75
61
  version: '0'
76
62
  requirements: []
77
- rubygems_version: 3.0.2
63
+ rubyforge_project:
64
+ rubygems_version: 2.7.7
78
65
  signing_key:
79
66
  specification_version: 4
80
67
  summary: Override default rails generators to use bootstrap classes. Bootstrap and