opulent 1.0.8 → 1.0.9
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 +4 -4
- data/bin/opulent +4 -1
- data/lib/opulent/version.rb +1 -1
- data/opulent.gemspec +1 -2
- metadata +4 -5
- data/bin/console +0 -14
- data/bin/setup +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9baf3c32e813f2550fb722422d6c633f6eebe36f
|
|
4
|
+
data.tar.gz: 2f90f83587e077dde2c39bb064bde69a4b20e744
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96e3437d935c6e9d1d32c092adf5cadc527df97f13a965be7cddbf83da87c8c8048910f34d4cb42030a27969336309660bd1c93885a8bb98f41704185cd0fa68
|
|
7
|
+
data.tar.gz: 9bee9a6acc7cb0d209cc4c92bf3448d782a649b685bb16d0dc2f1b384c6434b7443794940477445837a474a5b3b9c2601a8b85c2c80566a08ac42f48952bf182
|
data/bin/opulent
CHANGED
data/lib/opulent/version.rb
CHANGED
data/opulent.gemspec
CHANGED
|
@@ -23,8 +23,7 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
# end
|
|
24
24
|
|
|
25
25
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
26
|
-
spec.
|
|
27
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
26
|
+
spec.executables = ['opulent']
|
|
28
27
|
spec.require_paths = ["lib"]
|
|
29
28
|
|
|
30
29
|
# This gem will work with 2.1.0 or greater...
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opulent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Grozav
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2015-07-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -98,7 +98,8 @@ description: Opulent is an intelligent Templating Engine created to speed up web
|
|
|
98
98
|
through fast rendering and custom web component definitions.
|
|
99
99
|
email:
|
|
100
100
|
- alex@grozav.com
|
|
101
|
-
executables:
|
|
101
|
+
executables:
|
|
102
|
+
- opulent
|
|
102
103
|
extensions: []
|
|
103
104
|
extra_rdoc_files: []
|
|
104
105
|
files:
|
|
@@ -147,9 +148,7 @@ files:
|
|
|
147
148
|
- benchmark/cases/node/node.haml
|
|
148
149
|
- benchmark/cases/node/node.op
|
|
149
150
|
- benchmark/cases/node/node.slim
|
|
150
|
-
- bin/console
|
|
151
151
|
- bin/opulent
|
|
152
|
-
- bin/setup
|
|
153
152
|
- docs/syntax.md
|
|
154
153
|
- docs/usage.md
|
|
155
154
|
- lib/opulent.rb
|
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require "bundler/setup"
|
|
4
|
-
require "opulent"
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require "pry"
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require "irb"
|
|
14
|
-
IRB.start
|