steering 1.1.0 → 1.1.1
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/.travis.yml +8 -0
- data/Gemfile +2 -2
- data/README.md +10 -0
- data/lib/steering/version.rb +1 -1
- data/steering.gemspec +1 -1
- metadata +12 -5
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Steering
|
2
2
|
|
3
|
+
[![Build Status][build]][travis] [![Dependency Status][depends]][gemnasium]
|
4
|
+
|
3
5
|
Steering is a bridge to the [Handlebars.js][1] template precompiler. By precompiling
|
4
6
|
your templates you can speed up page loading in two ways - firstly the final compilation
|
5
7
|
step is much quicker as the template source code does not have to be parsed and the
|
@@ -71,6 +73,10 @@ Report bugs on the [GitHub issue tracker](http://github.com/pixeltrix/steering/i
|
|
71
73
|
|
72
74
|
## Changelog
|
73
75
|
|
76
|
+
### 1.1.1
|
77
|
+
|
78
|
+
* Bumped steering-source version to 1.0.rc.1
|
79
|
+
|
74
80
|
### 1.1.0
|
75
81
|
|
76
82
|
* Added 'compile_to_file' method. *Daniel Demmel*
|
@@ -107,3 +113,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
107
113
|
[2]: https://github.com/sstephenson/execjs
|
108
114
|
[3]: https://github.com/sstephenson/execjs/blob/master/README.md
|
109
115
|
[4]: https://github.com/sstephenson/ruby-eco
|
116
|
+
[build]: https://secure.travis-ci.org/pixeltrix/steering.png
|
117
|
+
[travis]: http://travis-ci.org/pixeltrix/steering
|
118
|
+
[depends]: https://gemnasium.com/pixeltrix/steering.png?travis
|
119
|
+
[gemnasium]: https://gemnasium.com/pixeltrix/steering
|
data/lib/steering/version.rb
CHANGED
data/steering.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: steering
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-09-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: execjs
|
@@ -34,7 +34,7 @@ dependencies:
|
|
34
34
|
requirements:
|
35
35
|
- - ! '>='
|
36
36
|
- !ruby/object:Gem::Version
|
37
|
-
version: 1.0.
|
37
|
+
version: 1.0.rc.1
|
38
38
|
type: :runtime
|
39
39
|
prerelease: false
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -42,7 +42,7 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - ! '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version: 1.0.
|
45
|
+
version: 1.0.rc.1
|
46
46
|
description: Steering is a bridge to the official JavaScript Handlebars.js compiler.
|
47
47
|
email:
|
48
48
|
- andyw@pixeltrix.co.uk
|
@@ -51,6 +51,7 @@ extensions: []
|
|
51
51
|
extra_rdoc_files: []
|
52
52
|
files:
|
53
53
|
- .gitignore
|
54
|
+
- .travis.yml
|
54
55
|
- Gemfile
|
55
56
|
- LICENSE
|
56
57
|
- README.md
|
@@ -73,15 +74,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
73
74
|
- - ! '>='
|
74
75
|
- !ruby/object:Gem::Version
|
75
76
|
version: '0'
|
77
|
+
segments:
|
78
|
+
- 0
|
79
|
+
hash: -1384459607151128044
|
76
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
81
|
none: false
|
78
82
|
requirements:
|
79
83
|
- - ! '>='
|
80
84
|
- !ruby/object:Gem::Version
|
81
85
|
version: '0'
|
86
|
+
segments:
|
87
|
+
- 0
|
88
|
+
hash: -1384459607151128044
|
82
89
|
requirements: []
|
83
90
|
rubyforge_project:
|
84
|
-
rubygems_version: 1.8.
|
91
|
+
rubygems_version: 1.8.24
|
85
92
|
signing_key:
|
86
93
|
specification_version: 3
|
87
94
|
summary: Ruby Handlebars.js Compiler
|