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 ADDED
@@ -0,0 +1,8 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.3
5
+ - jruby-18mode
6
+ - jruby-19mode
7
+ - rbx-18mode
8
+ - rbx-19mode
data/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'json', '~> 1.6.5'
4
- gem 'rake', '~> 0.9.2.2'
3
+ gem 'json', '>= 1.7'
4
+ gem 'rake', '>= 0.9.2'
5
5
 
6
6
  # Specify your gem's dependencies in steering.gemspec
7
7
  gemspec
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
@@ -1,3 +1,3 @@
1
1
  module Steering
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
data/steering.gemspec CHANGED
@@ -19,5 +19,5 @@ Gem::Specification.new do |gem|
19
19
  gem.require_paths = ["lib"]
20
20
 
21
21
  gem.add_runtime_dependency 'execjs', '>= 1.3.0'
22
- gem.add_runtime_dependency 'steering-source', '>= 1.0.beta.6'
22
+ gem.add_runtime_dependency 'steering-source', '>= 1.0.rc.1'
23
23
  end
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.0
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-05-14 00:00:00.000000000 Z
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.beta.6
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.beta.6
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.22
91
+ rubygems_version: 1.8.24
85
92
  signing_key:
86
93
  specification_version: 3
87
94
  summary: Ruby Handlebars.js Compiler