nano_template 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d3c645da0d5716d4dd8235fd83bf0d207113c6df
4
- data.tar.gz: 6a3d60f74d1cb75a38fcc67b8968d1b1045d35d4
3
+ metadata.gz: 1a6e6ef2e98fa63846e028d16f5c69a053ee2588
4
+ data.tar.gz: aceaa75dc85896716b34943258678682207c5033
5
5
  SHA512:
6
- metadata.gz: d35499017d9c345d8347b50ebd062721400e597ebcb740056c3415b185bbe2d59503f84056b609c9bdadf2aae24b3cdac9e3896395aa0e56c945f20279f3dea8
7
- data.tar.gz: 8f4dc343996f6198e02d3a2a14a4510d680fb5e8789daa88725e5f5fa87a2c8a07f18d9c5076d92b598f5e3c7af98e3191643cc8f55a4cf38c06e0c59b33bc5f
6
+ metadata.gz: 73cd630f74c150c8079edb1167d6296f14d073e2dca8a92a20e53af58a3c965f5dfc8d3741eb64919d29e58502e0e32733b7b26d36db88576f99dffd13f4f387
7
+ data.tar.gz: 70d17d0a902087fb64fb425d83fea4960be4b09229c113dbb13af899adc5ecc994b3b992eeb41c4a371c2aca366058a1516a21cf242727038752b77a68eb0f0c
data/.travis.yml CHANGED
@@ -1,4 +1,7 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.2
3
+ - 2.2.2
4
+ os:
5
+ - linux
6
+ - osx
4
7
  script: bundle exec rake spec
data/README.md CHANGED
@@ -4,7 +4,8 @@
4
4
  [![Gem](https://img.shields.io/gem/dtv/nano_template.svg)](https://rubygems.org/gems/nano_template)
5
5
  [![Gemnasium](https://gemnasium.com/Narazaka/nano_template.svg)](https://gemnasium.com/Narazaka/nano_template)
6
6
  [![Inch CI](http://inch-ci.org/github/Narazaka/nano_template.svg)](http://inch-ci.org/github/Narazaka/nano_template)
7
- [![Build Status](https://travis-ci.org/Narazaka/nano_template.svg)](https://travis-ci.org/Narazaka/nano_template)
7
+ [![Travis Build Status](https://travis-ci.org/Narazaka/nano_template.svg)](https://travis-ci.org/Narazaka/nano_template)
8
+ [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/Narazaka/nano_template?svg=true)](https://ci.appveyor.com/project/Narazaka/nano-template)
8
9
  [![codecov.io](https://codecov.io/github/Narazaka/nano_template/coverage.svg?branch=master)](https://codecov.io/github/Narazaka/nano_template?branch=master)
9
10
  [![Code Climate](https://codeclimate.com/github/Narazaka/nano_template/badges/gpa.svg)](https://codeclimate.com/github/Narazaka/nano_template)
10
11
 
data/appveyor.yml ADDED
@@ -0,0 +1,20 @@
1
+ version: "{build}"
2
+ branches:
3
+ except:
4
+ - gh-pages
5
+ install:
6
+ - set RUBY_HOME=C:\Ruby%ruby_version%
7
+ - set PATH=%RUBY_HOME%\bin;%PATH%
8
+ - ruby --version
9
+ - gem --version
10
+ - gem install bundler --no-document
11
+ - bundle --version
12
+ - bundle install
13
+ test_script:
14
+ - bundle exec rake spec
15
+ build: off
16
+ deploy: off
17
+ environment:
18
+ matrix:
19
+ - ruby_version: 22
20
+ - ruby_version: 22-x64
@@ -3,13 +3,14 @@ lib = File.expand_path('../lib', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = "nano_template"
6
- spec.version = "0.0.1"
6
+ spec.version = "0.0.2"
7
7
  spec.authors = ["Narazaka"]
8
8
  spec.email = ["info@narazaka.net"]
9
9
 
10
10
  spec.summary = %q{text template like erb that can be used with opal}
11
11
  spec.description = %q{text template like erb that can be used with opal}
12
12
  spec.homepage = "https://github.com/Narazaka/nano_template"
13
+ spec.license = "MIT"
13
14
 
14
15
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
15
16
  spec.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nano_template
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Narazaka
@@ -108,10 +108,12 @@ files:
108
108
  - Gemfile
109
109
  - README.md
110
110
  - Rakefile
111
+ - appveyor.yml
111
112
  - lib/nano_template.rb
112
113
  - nano_template.gemspec
113
114
  homepage: https://github.com/Narazaka/nano_template
114
- licenses: []
115
+ licenses:
116
+ - MIT
115
117
  metadata: {}
116
118
  post_install_message:
117
119
  rdoc_options: []