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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d1b9f97bf86ce80b2d2e7ab951700a0f281153d
4
- data.tar.gz: a21f3e893357b570cda92f7d9bf2debb9acd466f
3
+ metadata.gz: 9baf3c32e813f2550fb722422d6c633f6eebe36f
4
+ data.tar.gz: 2f90f83587e077dde2c39bb064bde69a4b20e744
5
5
  SHA512:
6
- metadata.gz: e69b1e48db0fe4a820121bbda63b537ef1cd8ede7853687179c918bcd39e2be0b2f2e2c469c70ac34bac2d1abc7f0680d4322094270c3e20b2e2da7db760f6f2
7
- data.tar.gz: 17705afaa499271b7dff65cd4b5904dd9508476fb169a38155bf35b1e12b4639405f274bb5719421b323799c57603797c67b6f84df2dd3eec060e6c2e03c39ab
6
+ metadata.gz: 96e3437d935c6e9d1d32c092adf5cadc527df97f13a965be7cddbf83da87c8c8048910f34d4cb42030a27969336309660bd1c93885a8bb98f41704185cd0fa68
7
+ data.tar.gz: 9bee9a6acc7cb0d209cc4c92bf3448d782a649b685bb16d0dc2f1b384c6434b7443794940477445837a474a5b3b9c2601a8b85c2c80566a08ac42f48952bf182
@@ -1,5 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # The command line Opulent parser.
2
3
 
4
+ $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
3
5
  require 'opulent'
6
+ require 'opulent/exec'
4
7
 
5
- Opulent::CLI.start(ARGV)
8
+ Haml::Exec.start ARGV
@@ -1,4 +1,4 @@
1
1
  # @Opulent
2
2
  module Opulent
3
- VERSION = "1.0.8"
3
+ VERSION = "1.0.9"
4
4
  end
@@ -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.bindir = "exe"
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.8
4
+ version: 1.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Grozav
8
8
  autorequire:
9
- bindir: exe
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
@@ -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
data/bin/setup DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here