parliament-ruby 0.5.15 → 0.5.16
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/README.md +1 -1
- data/Rakefile +7 -6
- data/lib/parliament/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d75b8eb7ae93901737c0feb555249811fd2550f
|
|
4
|
+
data.tar.gz: 600aa369b1ff5d03a829b555b63922b37ea11a92
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e1c3d16e7d73901ff968f4bcb230d3facd553321a91c7ee6d86d87b7f99c8eb738a6946c07e28601efa94795257f828136eb642746d2fb4602e2abda2c5cf7c
|
|
7
|
+
data.tar.gz: f21f1182e2a7c1ae7a97bba56415546a3a5f240faf13600264f024d45a0b7cb4f1be00832d8afb154fd659f0bcbdebebfa1c5959b9f9be08914769ac95ea834f
|
data/README.md
CHANGED
|
@@ -119,7 +119,7 @@ If you wish to submit a bug fix or feature, you can create a pull request and it
|
|
|
119
119
|
|
|
120
120
|
|
|
121
121
|
## License
|
|
122
|
-
[parliament-ruby][parliament-ruby] is licensed under the [Open Parliament Licence][info-license]
|
|
122
|
+
[parliament-ruby][parliament-ruby] is licensed under the [Open Parliament Licence][info-license]..
|
|
123
123
|
|
|
124
124
|
[ruby]: https://www.ruby-lang.org/en/
|
|
125
125
|
[bundler]: http://bundler.io
|
data/Rakefile
CHANGED
|
@@ -11,25 +11,26 @@ def run_command(cmd)
|
|
|
11
11
|
Open3.popen3(cmd) do |stdin, stdout, stderr, wait_thr|
|
|
12
12
|
exit_status = wait_thr.value
|
|
13
13
|
unless exit_status.success?
|
|
14
|
-
abort "
|
|
14
|
+
abort "#{cmd} FAILED !!!"
|
|
15
15
|
end
|
|
16
16
|
end
|
|
17
|
-
|
|
18
17
|
end
|
|
19
18
|
|
|
20
19
|
task :build do
|
|
21
|
-
p 'build started'
|
|
22
20
|
run_command("gem build parliament-ruby.gemspec")
|
|
23
|
-
#p "parliament-ruby gem successfully built with version #{VERSION}"
|
|
24
21
|
end
|
|
25
22
|
|
|
26
23
|
task :push do
|
|
27
24
|
run_command("gem push parliament-ruby-#{VERSION}.gem")
|
|
28
|
-
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
task :clean do
|
|
28
|
+
run_command("rm parliament-ruby-#{VERSION}.gem")
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
#task default: :build
|
|
32
32
|
task :spec => :build
|
|
33
33
|
task :push => :spec
|
|
34
|
-
task
|
|
34
|
+
task :clean => :push
|
|
35
|
+
task default: :clean
|
|
35
36
|
|
data/lib/parliament/version.rb
CHANGED