committee-rails 0.1.0 → 0.1.1

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: 0be8b9f92d2dc91c46c8319ad3776c88c0cdf4c8
4
- data.tar.gz: ea5d75b0da996f031cc48117bbbb11b143a1931c
3
+ metadata.gz: a4a2263a61bd5a5f7c2d8bff36a09af540921266
4
+ data.tar.gz: e2eaab13de294adc2d25e384d71987c0520fba74
5
5
  SHA512:
6
- metadata.gz: 3996ebffd235fe31c806a7432231568c18c27a81b896de768f76e32e85396b09cf21dc19a0c0ac0335dfefe02195aad2765693372ed9067a056e424dd3145150
7
- data.tar.gz: 5490038e6c03e74c20b43653fa0b0996450eaf9105edc440673d4930ff5c58f512c160f4a0e12208609806d06efca6aaf8e7d13be9dd1b5f64c204e6d57657f0
6
+ metadata.gz: 7f46e87c5c1c8081b48f16fe48ccb83b2dc1f32c3cb3227ec7fa2a24dbdbf15745ead93be66ab44e14f94a825205a27e049b38c748d616bb13392b2efb9a00ad
7
+ data.tar.gz: 23c169a420bd3f2eeae9eed570b2978bafad5ec37b0f162374696540e0c03bffed1f34d95c4b037ef73ef87876971740e67f793a5695017f673b795db651870b
data/.gitignore CHANGED
@@ -7,3 +7,4 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+ /spec/fake_app/log/
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Committee::Rails
2
2
 
3
+ [![Build Status](https://travis-ci.org/willnet/committee-rails.svg?branch=master)](https://travis-ci.org/willnet/committee-rails)
4
+ [![Gem Version](https://badge.fury.io/rb/committee-rails.svg)](https://badge.fury.io/rb/committee-rails)
5
+
3
6
  You can use `assert_schema_conform` in rails.
4
7
 
5
8
  ## Installation
@@ -26,10 +29,10 @@ describe 'request spec' do
26
29
 
27
30
  def schema_path
28
31
  Rails.root.join('path', 'to', 'schema.json') # default to docs/schema/schema.json
29
- end
32
+ end
30
33
 
31
34
  describe 'GET /' do
32
- it 'confirm json schema' do
35
+ it 'conform json schema' do
33
36
  get '/'
34
37
  assert_schema_conform
35
38
  end
@@ -39,13 +42,13 @@ end
39
42
 
40
43
  ## Development
41
44
 
42
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
45
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
43
46
 
44
47
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
45
48
 
46
49
  ## Contributing
47
50
 
48
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/committee-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
51
+ Bug reports and pull requests are welcome on GitHub at https://github.com/willnet/committee-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
49
52
 
50
53
 
51
54
  ## License
data/Rakefile CHANGED
@@ -1,10 +1,6 @@
1
- require "bundler/gem_tasks"
2
- require "rake/testtask"
1
+ require 'bundler/gem_tasks'
2
+ Bundler.setup
3
+ require 'rspec/core/rake_task'
3
4
 
4
- Rake::TestTask.new(:test) do |t|
5
- t.libs << "test"
6
- t.libs << "lib"
7
- t.test_files = FileList['test/**/*_test.rb']
8
- end
9
-
10
- task :default => :test
5
+ RSpec::Core::RakeTask.new('spec')
6
+ task default: :spec
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.bindir = 'exe'
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ['lib']
21
- spec.add_dependency 'committee'
21
+ spec.add_dependency 'committee', '< 2.0.0'
22
22
  spec.add_dependency 'activesupport'
23
23
  spec.add_dependency 'actionpack'
24
24
  spec.add_dependency 'railties'
@@ -1,5 +1,5 @@
1
1
  module Committee
2
2
  module Rails
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: committee-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - willnet
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-09-09 00:00:00.000000000 Z
11
+ date: 2017-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: committee
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "<"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: 2.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "<"
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: 2.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: activesupport
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -176,9 +176,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
176
176
  version: '0'
177
177
  requirements: []
178
178
  rubyforge_project:
179
- rubygems_version: 2.6.6
179
+ rubygems_version: 2.6.8
180
180
  signing_key:
181
181
  specification_version: 4
182
182
  summary: Committee for rails
183
183
  test_files: []
184
- has_rdoc: