tilt-fs 0.0.3 → 0.0.4

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NjIzODAxNDRmN2YzMmQyNjBlNDdkMDEzNDllN2NkY2EzY2Y4ODQ2Yg==
4
+ NWU4YWMxMTc3OTY4NjRhMWRlYWE1MmZiNGU1YmM1OTU0NTgwZGU5Yw==
5
5
  data.tar.gz: !binary |-
6
- NDIxOTdlYzYzOWI3NDgyM2RiNzUzNTI0ZWIzYTk4NGY3ZjkwMzA4YQ==
6
+ MDQ3ZTk1MGNiOTBlN2ZiNTljMWU5Y2I5MmQyYzkyYWRjYmVhZGRiOA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MzUwZWI0M2U3MzQxZThmNDQ0ZTBmMjI3YTE2ZTg1NmQ0NTBhMmZiYmVmZGQ1
10
- MjA4ZTkxY2UzYjE3OTM3MzZiMTVjMmRhOGNlMjBjMjhmMzFiOGM5MmM0MmYy
11
- M2Y0MjQ3MDBkMGVmN2U2NjhiNDUwYTdjMGQ1MTA4MGYzOWM5ODQ=
9
+ Yjg5MWM1MWNhY2I4ZjAxZWY3MTQzYmMwOTEwZmJlNWI4NDY5YmExYjhkOTIz
10
+ MWZjYWRjNzVlMjcxNDliZGE3MDc3NDFkYjZkYjgzZjgyZGIzZmZmNzIxOWMx
11
+ YTU2ZmI2MmYwYWY2MjJmZGMwY2QyNTAyYmNiNmE4ZTVmZGQ2MzU=
12
12
  data.tar.gz: !binary |-
13
- ODg0NGM2OTZlYWJlNzUyMGQwNzYzNjdhYzE0YzViM2U2NzA5Yzg1Yjk4MGE3
14
- ZGZlMjYyN2U3YzY3Y2Y3YjE5ODQ1M2E0ZmNmZTFkODQ1NTBlNGM0MGU2NjQ2
15
- MjRjZWI4ZDg0MTFkOTMzNWQ0YTM2Y2IxNzYzMzI5ZDBmZDg2MjQ=
13
+ NmJhZTMwMmQ3Y2U4NzQ5M2Q3NjNiOTI2ZDc2MzU5Yzc4ZWYyNTZkMzc3N2Uz
14
+ MTQ4OTM5ZWI4MGUxZTIxMjgyZTUxMzg3MTUxNTFhMTg3Mzk5MWVjYzc4MTM4
15
+ MjQwOWQ4NWQxOWFkZmYzOTA2ZjQyNGQ2YmZlZDUxMGNkNTE5NTk=
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # TiltFS
1
+ # TiltFs
2
+
3
+ [![Build Status](https://travis-ci.org/sh19910711/ruby-tilt-fs.svg?branch=master)](https://travis-ci.org/sh19910711/ruby-tilt-fs)
2
4
 
3
5
  The user space file system based on [Tilt](https://github.com/rtomayko/tilt).
4
6
 
@@ -27,11 +29,12 @@ $ cat mnt/hello.txt
27
29
  Hello, <%= name %>
28
30
  $
29
31
  $ mv _template/hello.txt _template/hello.txt.erb
30
- $ ruby -r yaml -e "puts({name: "world"}.to_yaml)" > .data.yaml
32
+ $ ruby -r yaml -e 'puts({name: "world"}.to_yaml)' > .data.yaml
33
+ - you can pass the data through ".data.yaml"
31
34
  $ cat mnt/hello.txt
32
35
  Hello, world
33
36
  $
34
- $ ruby -r yaml -e "puts({name: "NEW WORLD"}.to_yaml)" > .data.yaml
37
+ $ ruby -r yaml -e 'puts({name: "NEW WORLD"}.to_yaml)' > .data.yaml
35
38
  $ cat mnt/hello.txt
36
39
  Hello, NEW WORLD
37
40
  ```
@@ -2,8 +2,8 @@ module Tilt
2
2
 
3
3
  module Fs
4
4
 
5
- VERSION = "0.0.3"
5
+ VERSION = "0.0.4"
6
6
 
7
7
  end
8
8
 
9
- end
9
+ end
data/tilt-fs.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Tilt::Fs::VERSION
9
9
  spec.authors = ["Hiroyuki Sano"]
10
10
  spec.email = ["sh19910711@gmail.com"]
11
- spec.summary = %q{The user space file system based on Tilt.}
12
- spec.description = %q{The user space file system based on Tilt.}
11
+ spec.summary = %q{The userspace file system based on Tilt.}
12
+ spec.description = %q{The userspace file system based on Tilt.}
13
13
  spec.homepage = "https://github.com/sh19910711/ruby-tilt-fs"
14
14
  spec.license = "MIT"
15
15
 
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.required_ruby_version = ">= 2.0.0"
22
22
 
23
23
  spec.add_dependency "tilt", "~> 2.0"
24
- spec.add_dependency "rfuse", "~> 1.1.0.RC0"
24
+ spec.add_dependency "rfuse", "~> 1.1.0"
25
25
 
26
26
  spec.add_development_dependency "bundler", "~> 1.7.0"
27
27
  spec.add_development_dependency "rake", "~> 10.4.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tilt-fs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroyuki Sano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-21 00:00:00.000000000 Z
11
+ date: 2015-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tilt
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: 1.1.0.RC0
33
+ version: 1.1.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ~>
39
39
  - !ruby/object:Gem::Version
40
- version: 1.1.0.RC0
40
+ version: 1.1.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -108,7 +108,7 @@ dependencies:
108
108
  - - ~>
109
109
  - !ruby/object:Gem::Version
110
110
  version: 2.0.0
111
- description: The user space file system based on Tilt.
111
+ description: The userspace file system based on Tilt.
112
112
  email:
113
113
  - sh19910711@gmail.com
114
114
  executables:
@@ -157,7 +157,7 @@ rubyforge_project:
157
157
  rubygems_version: 2.4.5
158
158
  signing_key:
159
159
  specification_version: 4
160
- summary: The user space file system based on Tilt.
160
+ summary: The userspace file system based on Tilt.
161
161
  test_files:
162
162
  - test/run_test.rb
163
163
  - test/test_dir.rb