committee-rails 0.1.0 → 0.1.1
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/.gitignore +1 -0
- data/README.md +7 -4
- data/Rakefile +5 -9
- data/committee-rails.gemspec +1 -1
- data/lib/committee/rails/version.rb +1 -1
- metadata +7 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a4a2263a61bd5a5f7c2d8bff36a09af540921266
|
|
4
|
+
data.tar.gz: e2eaab13de294adc2d25e384d71987c0520fba74
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f46e87c5c1c8081b48f16fe48ccb83b2dc1f32c3cb3227ec7fa2a24dbdbf15745ead93be66ab44e14f94a825205a27e049b38c748d616bb13392b2efb9a00ad
|
|
7
|
+
data.tar.gz: 23c169a420bd3f2eeae9eed570b2978bafad5ec37b0f162374696540e0c03bffed1f34d95c4b037ef73ef87876971740e67f793a5695017f673b795db651870b
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Committee::Rails
|
|
2
2
|
|
|
3
|
+
[](https://travis-ci.org/willnet/committee-rails)
|
|
4
|
+
[](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 '
|
|
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
|
|
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/
|
|
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
|
|
2
|
-
|
|
1
|
+
require 'bundler/gem_tasks'
|
|
2
|
+
Bundler.setup
|
|
3
|
+
require 'rspec/core/rake_task'
|
|
3
4
|
|
|
4
|
-
|
|
5
|
-
|
|
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
|
data/committee-rails.gemspec
CHANGED
|
@@ -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'
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|