nano_template 0.0.1 → 0.0.2
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/.travis.yml +4 -1
- data/README.md +2 -1
- data/appveyor.yml +20 -0
- data/nano_template.gemspec +2 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a6e6ef2e98fa63846e028d16f5c69a053ee2588
|
|
4
|
+
data.tar.gz: aceaa75dc85896716b34943258678682207c5033
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73cd630f74c150c8079edb1167d6296f14d073e2dca8a92a20e53af58a3c965f5dfc8d3741eb64919d29e58502e0e32733b7b26d36db88576f99dffd13f4f387
|
|
7
|
+
data.tar.gz: 70d17d0a902087fb64fb425d83fea4960be4b09229c113dbb13af899adc5ecc994b3b992eeb41c4a371c2aca366058a1516a21cf242727038752b77a68eb0f0c
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/nano_template)
|
|
5
5
|
[](https://gemnasium.com/Narazaka/nano_template)
|
|
6
6
|
[](http://inch-ci.org/github/Narazaka/nano_template)
|
|
7
|
-
[](https://travis-ci.org/Narazaka/nano_template)
|
|
7
|
+
[](https://travis-ci.org/Narazaka/nano_template)
|
|
8
|
+
[](https://ci.appveyor.com/project/Narazaka/nano-template)
|
|
8
9
|
[](https://codecov.io/github/Narazaka/nano_template?branch=master)
|
|
9
10
|
[](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
|
data/nano_template.gemspec
CHANGED
|
@@ -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.
|
|
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.
|
|
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: []
|