batch-rails-4 0.1.3 → 0.2.0

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: 5fea5b35d0df24c9319033b38ab09a9937159562
4
- data.tar.gz: 70dc6258778985f42ae970d4672392c33ae30dc2
3
+ metadata.gz: 5defacf69ae810a90d1c5bd4aa458cbcc4dc62ff
4
+ data.tar.gz: e82765294c7e13feea5850cf84c35a09b253bc0b
5
5
  SHA512:
6
- metadata.gz: 4c8775973f996ad19cc64f79d7454292c004102ee5dec724a459cffb063fae09506b44642b625d2a44fff3b43691b80d16bae4d60f90da17c710f52bee2736df
7
- data.tar.gz: 0c9182d71c0a34c6029b4cb3247754b216b79c39ff9b4bd054e0432cbb1f13bdbf31703321ac42fb27a7f1f9b98013c4100067a991f092f0010725c76dd18288
6
+ metadata.gz: 663df3049bbbdca976953a4647538b370b80364ed37fd5215665ee43918beed8fc7ac903080eb439295d22c089839f6422415cbf0dea64ceafbae93de8974391
7
+ data.tar.gz: 8659eece1a53b036df635c0f219c0aa8e09209168604ab0af8b6c2c5cc27a534e1692e7f8f7116ca958dc61a6fa084c472e294ca51c5232f5e9fbda83243834e
data/README.md CHANGED
@@ -15,3 +15,4 @@ To Do:
15
15
  - [ ] Add examples page with list of icons & class-names
16
16
  - [ ] Refactor in .erb extension for stylesheet (when i figure out how to use sprockets lul)
17
17
  - [ ] Bootstrap integration (???)
18
+ - [ ] IE7 support
@@ -1,7 +1,7 @@
1
1
  module Batch
2
2
  module Rails
3
3
  module Four
4
- VERSION = "0.1.3"
4
+ VERSION = "0.2.0"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: batch-rails-4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - zethus
@@ -85,16 +85,12 @@ files:
85
85
  - app/assets/fonts/batch-icons-webfont.woff
86
86
  - app/assets/fonts/batch_webfont_reference.pdf
87
87
  - app/assets/stylesheets/batch-webfont.scss
88
- - app/controllers/application_controller.rb
89
- - app/helpers/application_helper.rb
90
- - app/views/layouts/application.html.erb
91
88
  - lib/batch-rails-4/engine.rb
92
89
  - lib/batch-rails-4/version.rb
93
90
  - lib/batch-rails-4.rb
94
91
  - LICENSE
95
92
  - Rakefile
96
93
  - README.md
97
- - test/test_helper.rb
98
94
  homepage: https://github.com/zethussuen/batch-rails-4
99
95
  licenses:
100
96
  - AdamWhitcroft
@@ -119,5 +115,4 @@ rubygems_version: 2.0.3
119
115
  signing_key:
120
116
  specification_version: 4
121
117
  summary: Gem of asset pipeline for the Batch icon set as a webfont
122
- test_files:
123
- - test/test_helper.rb
118
+ test_files: []
@@ -1,5 +0,0 @@
1
- class ApplicationController < ActionController::Base
2
- # Prevent CSRF attacks by raising an exception.
3
- # For APIs, you may want to use :null_session instead.
4
- protect_from_forgery with: :exception
5
- end
@@ -1,2 +0,0 @@
1
- module ApplicationHelper
2
- end
@@ -1,14 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>BatchRails4</title>
5
- <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
6
- <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
- <%= yield %>
12
-
13
- </body>
14
- </html>
data/test/test_helper.rb DELETED
@@ -1,15 +0,0 @@
1
- ENV["RAILS_ENV"] ||= "test"
2
- require File.expand_path('../../config/environment', __FILE__)
3
- require 'rails/test_help'
4
-
5
- class ActiveSupport::TestCase
6
- ActiveRecord::Migration.check_pending!
7
-
8
- # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
9
- #
10
- # Note: You'll currently still have to declare fixtures explicitly in integration tests
11
- # -- they do not yet inherit this setting
12
- fixtures :all
13
-
14
- # Add more helper methods to be used by all tests here...
15
- end