formie 0.9.11 → 0.9.12

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
- SHA1:
3
- metadata.gz: d0ecea9d4cb08edcb6d0835029d4bdb4435a4a66
4
- data.tar.gz: 75d419e1df16150b5acfc7a2a5e2eb4f00766ed2
2
+ SHA256:
3
+ metadata.gz: d9b18a27d211ff1c4a9873d3fa07ffcc7f18e2df54ccb03172e3d04f376a13b1
4
+ data.tar.gz: d45d131209ec95f5c6029db46133eccc09cb1d81c32d268edc1380c73e75b702
5
5
  SHA512:
6
- metadata.gz: b1ce8683076ee6b8acf30c8b3e6cea38af76e83fac9f48a82884c11c1f5b6a132948422db57f8e84c89d675e0a7ee5010a821fc8f068f36f04a09365ffbceb27
7
- data.tar.gz: 8706ba87d94d19a89d21301b9ea4114a9751c58636f3ffdaaac6a36a65c31868d4835051666226212f85dfd6cc449522011544b9b31d4b4a540f08881004540c
6
+ metadata.gz: '0066930930c11e9ed963df012338083532b002f7451ac7cc3662917c6afb640e5c06f1a43090475f1b8c2aa339543f2dad9c804b8e2b8ccd490ce221bf7f2465'
7
+ data.tar.gz: db9b8fe63fb70392a0e12787ce068a640b20f2872902b07b367dab76c656486e4cd7648dd8edb80a79730d479d1c4a24c17b42f92c0a34c4debb4fc331ccb1fb
data/.gitignore CHANGED
@@ -1,12 +1,9 @@
1
+ test/internal/db/*.sqlite3
2
+
1
3
  .bundle/
2
4
  coverage/
3
- pkg/
4
- test/internal/db/*.sqlite3
5
5
 
6
6
  *.gem
7
7
  *.log
8
8
  *.lock
9
- **/*.gem
10
- **/*.log
11
- **/*.lock
12
9
  test/internal/tmp/
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-2.4.1
1
+ ruby-2.5.0
data/.travis.yml CHANGED
@@ -6,8 +6,9 @@ before_install: gem update bundler --no-document
6
6
  script: 'bundle exec rake test'
7
7
 
8
8
  rvm:
9
+ - 2.5.0
9
10
  - 2.4.1
10
- - 2.4.0
11
+ # - 2.4.0 # tested
11
12
  # - 2.3.3 # tested
12
13
  # - 2.2.6 # tested
13
14
 
@@ -25,4 +26,3 @@ matrix:
25
26
 
26
27
  notifications:
27
28
  email: false
28
- fast_finish: true
data/Gemfile CHANGED
@@ -1,8 +1,8 @@
1
1
  source 'https://rubygems.org'
2
-
3
2
  gemspec
4
3
 
5
4
  gem 'rails'
5
+ gem 'dryer-config'
6
6
 
7
7
  group :test do
8
8
  gem 'observr'
data/Rakefile CHANGED
@@ -1,4 +1,22 @@
1
1
  require 'bundler/setup'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+
5
+ =begin
6
+ ## in particular, make db task available, but in vane
7
+ # https://github.com/pat/combustion/issues/13
8
+ require "rails"
9
+ require "combustion"
10
+ require "active_record/railtie"
11
+ #Bundler.require :default, Rails.env
12
+
13
+
14
+ Bundler.require
15
+ #require "combustion"
16
+ #Combustion.initialize!
17
+ Combustion::Application.load_tasks
18
+ =end
19
+
2
20
 
3
21
  require 'rake/testtask'
4
22
 
data/lib/formie/engine.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  module Formie
2
2
  class Engine < Rails::Engine
3
- require 'slim'
4
3
  end
5
4
  end
@@ -1,3 +1,3 @@
1
1
  module Formie
2
- VERSION = '0.9.11'
2
+ VERSION = '0.9.12'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: formie
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.11
4
+ version: 0.9.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-20 00:00:00.000000000 Z
11
+ date: 2018-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  version: '0'
140
140
  requirements: []
141
141
  rubyforge_project:
142
- rubygems_version: 2.6.12
142
+ rubygems_version: 2.7.3
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: Formie is like a Rails helper, but uses the notation of a partial.