map-icons-rails 1.0.1 → 1.0.3

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: 730f1bf86f19fef4616768e84ea2098d53c6ee1d
4
- data.tar.gz: 611921f71eff65a22d2c168d697b11f950df15ce
3
+ metadata.gz: 74160981ecbd52ded72e2409a8b62ffaf56378ef
4
+ data.tar.gz: 5a76e021b7985da7fa81b85d88a80c5278b7935b
5
5
  SHA512:
6
- metadata.gz: 7f11a3b62d28ede60b056ca5b073bc1458383c4389f40a77421c611d9ad49e3462b48fbcbfc27378f1446173941d22ad566a860356ded96b56c08fbbb4725f54
7
- data.tar.gz: 4610ddf8fb254e04dc8e44b10b6c9a444967d719ee1b0185f460ce605980651bd87ca50198a6febdc82f11917093fce22728b5f875c02f860143e3ad7616812b
6
+ metadata.gz: 212fda815e40b8aa872f5832d070d15c21a4f7c8f0dcf5cb26e87da54c7ed8756bc178fcb2b3dc6988b2b7bb5d64da9929e569ad64231ed365afbeab897ba212
7
+ data.tar.gz: 646f367ebfd24ce6fa3f53f57b1c8eb669f92dab9c5460aa23ff21535740944eba1c14014a00fe1faa98edc6e64169e42165f566ef16c48cec7453c96f0ba782
@@ -0,0 +1,8 @@
1
+ module Map
2
+ module Icons
3
+ module Rails
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
7
+ end
8
+ end
@@ -1,7 +1,7 @@
1
1
  module Map
2
2
  module Icons
3
3
  module Rails
4
- VERSION = "0.0.1"
4
+ VERSION = "1.0.3"
5
5
  end
6
6
  end
7
7
  end
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'map-icons/rails/version'
4
+ require 'map/icons/rails/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "map-icons-rails"
8
- spec.version = MapIcons::Rails::VERSION
8
+ spec.version = Map::Icons::Rails::VERSION
9
9
  spec.authors = ["Alan Meira"]
10
10
  spec.email = ["alanmeira@gmail.com"]
11
11
  spec.description = %q{Map Icons for Rails Asset Pipeline}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: map-icons-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alan Meira
@@ -51,9 +51,7 @@ files:
51
51
  - README.md
52
52
  - Rakefile
53
53
  - lib/map-icons-rails.rb
54
- - lib/map-icons/rails/engine.rb
55
- - lib/map-icons/rails/version.rb
56
- - lib/map/icons/rails.rb
54
+ - lib/map/icons/rails/engine.rb
57
55
  - lib/map/icons/rails/version.rb
58
56
  - map-icons-rails.gemspec
59
57
  - vendor/assets/fonts/map-icons.dev.svg
@@ -1,9 +0,0 @@
1
- require "map/icons/rails/version"
2
-
3
- module Map
4
- module Icons
5
- module Rails
6
- # Your code goes here...
7
- end
8
- end
9
- end
@@ -1,5 +0,0 @@
1
- module MapIcons
2
- module Rails
3
- class Engine < ::Rails::Engine
4
- end
5
- end
@@ -1,5 +0,0 @@
1
- module MapIcons
2
- module Rails
3
- VERSION = '1.0.1'
4
- end
5
- end