mithril-pipeline 0.2.5
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 +7 -0
- data/.gitignore +1 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +17 -0
- data/LICENSE.md +5 -0
- data/README.md +17 -0
- data/lib/mithril-pipeline/version.rb +3 -0
- data/lib/mithril-pipeline.rb +4 -0
- data/mithril-pipeline.gemspec +22 -0
- data/vendor/assets/javascripts/mithril.js +2233 -0
- metadata +52 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f6851f7c5e5d0d6077bebe49dd8c13a7404e698a
|
4
|
+
data.tar.gz: 59f1ad0c6946910c6cff20d083fd67b394364f0c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e19e9aa1b22d71bab70aee72f53c4c27bace265d875a988d3bd730ca791c823190dc76d1774bcfa44ffde3df32efc1829670b78697176a9265f6d616cb658305
|
7
|
+
data.tar.gz: 2ca106f3c3323e245081b88bed250f883917e8ab0ec071a5cc10f1f3bb4c57703f1d7687fbe6febe38ca90dc40331fd5de87b0a98464eb11b1107471a12921d6
|
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
.idea/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
data/LICENSE.md
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
2
|
+
|
3
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
4
|
+
|
5
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
Mithril.js for rails pipeline
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
Add `gem "mithril-pipeline"` to your Gemfile.
|
6
|
+
|
7
|
+
You can then add Mithril to your asset manifest files with
|
8
|
+
|
9
|
+
`//= require mithril`
|
10
|
+
|
11
|
+
## Versioning
|
12
|
+
|
13
|
+
The gem version corresponds to the version of the Mithril.js library
|
14
|
+
|
15
|
+
## Copyright
|
16
|
+
|
17
|
+
See LICENSE for details.
|
@@ -0,0 +1,22 @@
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require 'mithril-pipeline/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |gem|
|
6
|
+
gem.name = 'mithril-pipeline'
|
7
|
+
gem.version = MithrilPipeline::VERSION
|
8
|
+
gem.homepage = 'https://github.com/Arugin/mithril-pipeline'
|
9
|
+
|
10
|
+
gem.author = 'Valery Mayatsky'
|
11
|
+
gem.email = 'valerymayatsky@gmail.com'
|
12
|
+
gem.description = 'Mithril.js for rails pipeline'
|
13
|
+
gem.summary = 'Mithril Pipeline is the wrapper fir mithril.js library for rails'
|
14
|
+
|
15
|
+
gem.license = 'MIT'
|
16
|
+
|
17
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
|
18
|
+
gem.files = `git ls-files`.split("\n")
|
19
|
+
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
20
|
+
|
21
|
+
gem.require_paths = ['lib']
|
22
|
+
end
|