bs3_helpers 0.0.3 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c86f88483cf513b78f789957b96a674d542a6c45
4
- data.tar.gz: 2aeb341aac5eb65f9bda1837a849d022cda6a8fc
3
+ metadata.gz: f5c1c6382914f8bd88e59bc29538e24fb03ab6a9
4
+ data.tar.gz: fa7e75bb62ac29bc451857ca184a834f8f8f6738
5
5
  SHA512:
6
- metadata.gz: 7f6ad527e58071b3c1cd4809b66e79bf592dbb4f9e91b3dcea5cd8add401137632c0d48de341ed7cfb2e1b128535c0ecb6dbd00356bff6ed23dd03bc120c7d22
7
- data.tar.gz: 789362a3513a19040e62ce7e48363bd5d801d62b1476fb5f57df94674d4220566979fed8146d089397ce4026ac2a3f3a204d0a2dff384b29a8d5bca1e8b9fc64
6
+ metadata.gz: 4366a2fc24cf79952c193f8e91b591ebc3ec905951e052f2edf6b27aed85e1abf0e9e41a7d19435757fbb3f2dbc7be0f1a29b64f95286bb78c96791eb2b7a98d
7
+ data.tar.gz: feb4986e0b20ba3bcccc58016a80204c0a54a7745b67dfccf434050c224499e99e94393ae737a52ff4152786ca351787957d79dd16f71b166838ac847839c068
data/Rakefile CHANGED
@@ -8,4 +8,6 @@ end
8
8
 
9
9
  task :release => :build do
10
10
  system "gem push bs3_helpers-#{Bs3Helpers::VERSION}.gem"
11
+ system "git tag -a v#{Bs3Helpers::VERSION}"
12
+ system "git push -u origin master --tags"
11
13
  end
@@ -23,10 +23,9 @@ module Bs3Helpers
23
23
  @classes << @col_md_12
24
24
  @classes << @col_lg_12
25
25
  @classes << @col_xl_12
26
+ content_tag :div,'',class: @classes.join(' '),&block
26
27
  end
27
-
28
- content_tag :div,'',class: @classes.join(' '),&block
29
28
  end
30
29
  end
31
30
  end
32
- end
31
+ end
@@ -1,3 +1,3 @@
1
1
  module Bs3Helpers
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bs3_helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Bolding
@@ -45,8 +45,6 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - MIT-LICENSE
49
- - README.rdoc
50
48
  - Rakefile
51
49
  - lib/bs3_helpers.rb
52
50
  - lib/bs3_helpers/helpers/alert_helper.rb
@@ -111,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
109
  version: '0'
112
110
  requirements: []
113
111
  rubyforge_project:
114
- rubygems_version: 2.4.5.1
112
+ rubygems_version: 2.5.0
115
113
  signing_key:
116
114
  specification_version: 4
117
115
  summary: Some Helpers for Bootstrap with Rails.
data/MIT-LICENSE DELETED
@@ -1,20 +0,0 @@
1
- Copyright 2015 Jeremy Bolding
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc DELETED
@@ -1,3 +0,0 @@
1
- = Bs3Helpers
2
-
3
- This project rocks and uses MIT-LICENSE.