sawaal 0.0.2 → 0.0.3
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/CHANGELOG.md +15 -0
- data/lib/sawaal.rb +4 -1
- data/lib/sawaal/version.rb +4 -1
- data/spec/spec_helper.rb +39 -0
- data/spec/version_spec.rb +7 -0
- metadata +6 -3
- data/CHANGELOG.md~ +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0bc314370fc85cffecc450c3e924af5e60da5115
|
|
4
|
+
data.tar.gz: 9913428b8f65b7e04269eb0652c73a8cd2eea89b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c142249de7013d8d3ac88d3522c2cdeb864fa18366621f66fb24deece581240d83c632c8969e8a6b3155d1ca128c19dae70c1161a6d116ef0d86578784db0d4e
|
|
7
|
+
data.tar.gz: 0a3b5e9c59a2433acad50ae469bea399200b8a468d8853697c87f15ce67b3936a5cbd9966f9a4b8bfc8868bfbfcc76c0d504ecea11510dc60aa1395693c9849f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
List of changes so far that have been released to ruby gems.
|
|
2
|
+
|
|
3
|
+
<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc/generate-toc again -->
|
|
4
|
+
**Table of Contents**
|
|
5
|
+
|
|
6
|
+
- [0.0.3 / 2015-07-27](#003--2015-07-27)
|
|
7
|
+
- [0.0.2 / 2015-07-27](#002--2015-07-27)
|
|
8
|
+
- [0.0.1 / 2015-07-27](#001--2015-07-27)
|
|
9
|
+
|
|
10
|
+
<!-- markdown-toc end -->
|
|
11
|
+
|
|
12
|
+
0.0.3 / 2015-07-27
|
|
13
|
+
==================
|
|
14
|
+
|
|
15
|
+
Enable rspec and add version test
|
|
1
16
|
|
|
2
17
|
0.0.2 / 2015-07-27
|
|
3
18
|
==================
|
data/lib/sawaal.rb
CHANGED
data/lib/sawaal/version.rb
CHANGED
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
|
|
3
|
+
if ENV['CI']
|
|
4
|
+
# enable code climate
|
|
5
|
+
require 'codeclimate-test-reporter'
|
|
6
|
+
CodeClimate::TestReporter.configure do |config|
|
|
7
|
+
config.logger.level = Logger::WARN
|
|
8
|
+
end
|
|
9
|
+
CodeClimate::TestReporter.start
|
|
10
|
+
|
|
11
|
+
# enable coveralls
|
|
12
|
+
require 'coveralls'
|
|
13
|
+
Coveralls.wear!
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# enable simplecov for code coverage
|
|
17
|
+
if ENV['COVERAGE']
|
|
18
|
+
require 'simplecov'
|
|
19
|
+
SimpleCov.start do
|
|
20
|
+
add_filter '/spec/'
|
|
21
|
+
SimpleCov.minimum_coverage 100
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
require 'bundler/setup'
|
|
26
|
+
Bundler.setup
|
|
27
|
+
|
|
28
|
+
require 'sawaal'
|
|
29
|
+
|
|
30
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
|
31
|
+
RSpec.configure do |config|
|
|
32
|
+
config.expect_with :rspec do |expectations|
|
|
33
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
config.mock_with :rspec do |mocks|
|
|
37
|
+
mocks.verify_partial_doubles = true
|
|
38
|
+
end
|
|
39
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sawaal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anshul Verma
|
|
@@ -34,12 +34,13 @@ extensions: []
|
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
36
|
- CHANGELOG.md
|
|
37
|
-
- CHANGELOG.md~
|
|
38
37
|
- LICENSE.txt
|
|
39
38
|
- README.md
|
|
40
39
|
- Rakefile
|
|
41
40
|
- lib/sawaal.rb
|
|
42
41
|
- lib/sawaal/version.rb
|
|
42
|
+
- spec/spec_helper.rb
|
|
43
|
+
- spec/version_spec.rb
|
|
43
44
|
- tasks/rdoc.rake
|
|
44
45
|
- tasks/rubucop.rake
|
|
45
46
|
- tasks/yard.rake
|
|
@@ -67,5 +68,7 @@ rubygems_version: 2.2.2
|
|
|
67
68
|
signing_key:
|
|
68
69
|
specification_version: 4
|
|
69
70
|
summary: Helper gem for asking questions on terminal
|
|
70
|
-
test_files:
|
|
71
|
+
test_files:
|
|
72
|
+
- spec/spec_helper.rb
|
|
73
|
+
- spec/version_spec.rb
|
|
71
74
|
has_rdoc:
|