cells-haml 0.0.9 → 0.0.10

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: 0e329f5d26cb5f6cd564e0b7c9223c44407b04aa
4
- data.tar.gz: 104f171e7b76879fb091896e47f0200109693091
3
+ metadata.gz: fd0e35512dfc939fdb16c524445fbbd4514b3a9f
4
+ data.tar.gz: 5a207839e4958ffcb7800a5fe72ea58f60d36dbe
5
5
  SHA512:
6
- metadata.gz: 06c1844ab7324bada0a58b7e35e700ba2cdad58c1a4def2c9407aac14131dc55f902ccebb6d07e1e7aaa147a97f5450ee2c9abf8aaddbb5d29caf5997d036401
7
- data.tar.gz: f180a268b49f8f9f50ff2bcecf9f200fd0be9c9f672c9439b8bff4ceed5bf4f47f24164e9c2fc41673113c07fa509e7c56f1090408a38b47e317e8ec3ca0d243
6
+ metadata.gz: c03bc5f4e44e0b2f4e652ea1495868db970a94e44dd133d57f63ff9e65ac2a85de08e0ab9dc663757886e5c04308b6ecac9a39cadc325e3a6a12c05c584cc56b
7
+ data.tar.gz: e643f58148e8d37112d8360b4ef1891ee415e3b4c7d84f8565254593a74ee05fb246ee4343839a7fb2b0cc2e23404a2d1c42454ec8693fa4e5a4aa2c3f7541e9
@@ -1,5 +1,4 @@
1
- cache: bundler
2
1
  gemfile:
3
- - gemfiles/rails_4.2-tilt-1.4.gemfile
4
2
  - gemfiles/rails_4.2-tilt-2.0.gemfile
5
- # - gemfiles/rails_3.2-tilt-1.4.gemfile
3
+ before_install:
4
+ - gem install bundler
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.0.10
2
+
3
+ * Allow Cells 4.0 - 5.x.
4
+
1
5
  # 0.0.9
2
6
 
3
7
  * Make Rails optional.
@@ -1,24 +1,24 @@
1
- lib = File.expand_path('../lib/', __FILE__)
1
+ lib = File.expand_path("../lib/", __FILE__)
2
2
  $:.unshift lib unless $:.include?(lib)
3
3
 
4
- require 'cell/haml/version'
4
+ require "cell/haml/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.name = 'cells-haml'
7
+ spec.name = "cells-haml"
8
8
  spec.version = Cell::Haml::VERSION
9
- spec.authors = ['Abdelkader Boudih', 'Nick Sutterer']
9
+ spec.authors = ["Abdelkader Boudih", "Nick Sutterer"]
10
10
  spec.email = %w(terminale@gmail.com apotonick@gmail.com)
11
- spec.summary = 'Haml integration for Cells'
11
+ spec.summary = "Haml integration for Cells"
12
12
  spec.description = spec.summary
13
- spec.homepage = 'https://github.com/trailblazer/cells-haml'
14
- spec.license = 'MIT'
13
+ spec.homepage = "https://github.com/trailblazer/cells-haml"
14
+ spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
17
17
  spec.test_files = spec.files.grep(%r{^(test)/})
18
- spec.require_paths = ['lib']
18
+ spec.require_paths = ["lib"]
19
19
 
20
- spec.add_dependency 'cells', '~> 4.0.0.beta6'
21
- spec.add_dependency 'haml', '>= 4.1.0.beta.1'
22
- spec.add_development_dependency 'bundler'
23
- spec.add_development_dependency 'rake'
20
+ spec.add_dependency "cells", ">= 4.0.1", "<= 6.0.0"
21
+ spec.add_dependency "haml", ">= 4.1.0.beta.1"
22
+ spec.add_development_dependency "bundler"
23
+ spec.add_development_dependency "rake"
24
24
  end
@@ -4,7 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  # gem "cells", :github => "apotonick/cells"
6
6
  # gem "cells", path: "../../cells"
7
- gem "cells", github: "apotonick/cells"
8
7
  gem "railties", "~> 4.2.0"
9
8
  gem "activemodel"
10
9
  gem "minitest", "~> 5.2"
@@ -12,4 +11,4 @@ gem "tilt", "~> 2.0"
12
11
 
13
12
  gemspec :path => "../"
14
13
 
15
- gem "haml", github:"haml/haml"
14
+ gem "haml", github:"haml/haml", ref: "7c7c169"
@@ -1,5 +1,5 @@
1
1
  module Cell
2
2
  module Haml
3
- VERSION = "0.0.9"
3
+ VERSION = "0.0.10"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cells-haml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih
@@ -9,22 +9,28 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-01-31 00:00:00.000000000 Z
12
+ date: 2016-04-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cells
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: 4.0.1
21
+ - - "<="
19
22
  - !ruby/object:Gem::Version
20
- version: 4.0.0.beta6
23
+ version: 6.0.0
21
24
  type: :runtime
22
25
  prerelease: false
23
26
  version_requirements: !ruby/object:Gem::Requirement
24
27
  requirements:
25
- - - "~>"
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ version: 4.0.1
31
+ - - "<="
26
32
  - !ruby/object:Gem::Version
27
- version: 4.0.0.beta6
33
+ version: 6.0.0
28
34
  - !ruby/object:Gem::Dependency
29
35
  name: haml
30
36
  requirement: !ruby/object:Gem::Requirement
@@ -83,12 +89,8 @@ files:
83
89
  - README.md
84
90
  - Rakefile
85
91
  - cells-haml.gemspec
86
- - gemfiles/rails_3.2-tilt-1.4.gemfile
87
- - gemfiles/rails_4.0-tilt-1.4.gemfile
88
- - gemfiles/rails_4.2-tilt-1.4.gemfile
89
92
  - gemfiles/rails_4.2-tilt-2.0-rails-haml-0.9.gemfile
90
93
  - gemfiles/rails_4.2-tilt-2.0.gemfile
91
- - gemfiles/rails_4.2-tilt-3.0.gemfile
92
94
  - lib/cell/haml.rb
93
95
  - lib/cell/haml/rails.rb
94
96
  - lib/cell/haml/version.rb
@@ -1,16 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- #gem "cells", :github => "apotonick/cells"
6
- # gem "cells", path: "../../cells"
7
- gem "railties", "~> 3.2.0"
8
- gem "activemodel"
9
- gem "minitest", "~> 4.0"
10
- gem "tilt", "~> 1.4"
11
- gem "tzinfo"
12
- # gem "haml", github: "haml/haml"
13
-
14
- gemspec :path => "../"
15
-
16
- gem "haml", github:"haml/haml"
@@ -1,14 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- #gem "cells", :github => "apotonick/cells"
6
- # gem "cells", path: "../../cells"
7
- gem "railties", "~> 4.0.0"
8
- gem "activemodel"
9
- gem "minitest", "~> 4.0"
10
- gem "tilt", "~> 1.4"
11
-
12
- gemspec :path => "../"
13
-
14
- gem "haml", github:"haml/haml"
@@ -1,14 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- # gem "cells", :github => "apotonick/cells"
6
- #gem "cells", path: "../../cells"
7
- gem "railties", "~> 4.2.0"
8
- gem "activemodel"
9
- gem "minitest", "~> 5.2"
10
- gem "tilt", "~> 1.4"
11
-
12
- gemspec :path => "../"
13
-
14
- gem "haml", github:"haml/haml"
@@ -1,14 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- # gem "cells", :github => "apotonick/cells"
6
- #gem "cells", path: "../../cells"
7
- gem "railties", "~> 4.2.0"
8
- gem "activemodel"
9
- gem "minitest", "~> 5.2"
10
- gem "tilt", "~> 3.0"
11
-
12
- gemspec :path => "../"
13
-
14
- gem "haml", github:"haml/haml"