css_grid 2.7.4 → 2.7.5

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.
data/css_grid.gemspec CHANGED
@@ -5,7 +5,7 @@ Gem::Specification.new do |gem|
5
5
  gem.authors = ["Thomas Petrachi"]
6
6
  gem.email = ["thomas.petrachi@vodeclic.com"]
7
7
  gem.description = %q{Provide CSS grid stylesheet and CSS grid helpers}
8
- gem.summary = %q{grid.css.scss and GridHelper module}
8
+ gem.summary = %q{stylesheet grid.scss and module GridHelper}
9
9
  gem.homepage = "https://github.com/petrachi/css_grid"
10
10
 
11
11
  gem.files = `git ls-files`.split($\)
@@ -14,4 +14,6 @@ Gem::Specification.new do |gem|
14
14
  gem.name = "css_grid"
15
15
  gem.require_paths = ["lib"]
16
16
  gem.version = CssGrid::VERSION
17
+
18
+ gem.add_dependency "hash_extend"
17
19
  end
File without changes
@@ -5,9 +5,9 @@ namespace "css:grid" do
5
5
  "app/assets/stylesheets/"
6
6
  else
7
7
  "public/stylesheets"
8
- end, "i18n.js")
8
+ end, "grid.scss")
9
9
 
10
- # Copy stylesheet file to <tt>public/stylesheets/grid.css</tt>.
11
- FileUtils.cp(File.dirname(__FILE__) + "/../assets/stylesheets/grid.scss", javascript_file) unless Rails.version >= "3.1"
10
+ # Copy stylesheet file to <tt>public/stylesheets/grid.scss</tt>.
11
+ FileUtils.cp(File.dirname(__FILE__) + "/../assets/stylesheets/grid.scss", stylesheet_file) unless Rails.version >= "3.1"
12
12
  end
13
13
  end
@@ -1,3 +1,3 @@
1
1
  module CssGrid
2
- VERSION = "2.7.4"
2
+ VERSION = "2.7.5"
3
3
  end
data/lib/css_grid.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  require "css_grid/version"
2
2
  require "css_grid/engine" if Rails.version >= "3.1"
3
- require "css_grid/railtie" if Rails.version >= "3.0"
4
3
 
5
4
  module GridHelper
6
5
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: css_grid
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.4
4
+ version: 2.7.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,23 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
  date: 2012-11-24 00:00:00.000000000 Z
13
- dependencies: []
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: hash_extend
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
14
30
  description: Provide CSS grid stylesheet and CSS grid helpers
15
31
  email:
16
32
  - thomas.petrachi@vodeclic.com
@@ -38,11 +54,10 @@ files:
38
54
  - lib/assets/images/readme/one_col_row.png
39
55
  - lib/assets/images/readme/prepend.png
40
56
  - lib/assets/stylesheets/.DS_Store
41
- - lib/assets/stylesheets/grid.css.scss
57
+ - lib/assets/stylesheets/grid.scss
42
58
  - lib/css_grid.rb
43
59
  - lib/css_grid/engine.rb
44
- - lib/css_grid/railtie.rb
45
- - lib/css_grid/rake.rb
60
+ - lib/css_grid/tasks.rb
46
61
  - lib/css_grid/version.rb
47
62
  homepage: https://github.com/petrachi/css_grid
48
63
  licenses: []
@@ -67,5 +82,5 @@ rubyforge_project:
67
82
  rubygems_version: 1.8.24
68
83
  signing_key:
69
84
  specification_version: 3
70
- summary: grid.css.scss and GridHelper module
85
+ summary: stylesheet grid.scss and module GridHelper
71
86
  test_files: []
@@ -1,7 +0,0 @@
1
- module GridHelper
2
- class Railtie < Rails::Railtie
3
- rake_tasks do
4
- require "css_grid/rake"
5
- end
6
- end
7
- end