clojure_jar 1.7.0 → 1.8.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c316ed33aff743ea90ec7a7d92abab415160811e
4
- data.tar.gz: 0d347a35df22946cbff56215c1977a3cbbf157f0
3
+ metadata.gz: 335957bbd16160bab0fa4fb63d9ed292fa0c673c
4
+ data.tar.gz: dc2b1b28c4c2817daa53c6eba202c0599d02fa22
5
5
  SHA512:
6
- metadata.gz: 2a2ff06884d289e62178ce7acff1d050d90bb068fd0b18258bad117a7f5556723d1bef5f962f3adb3a0b424b2b83bb8900eb04263efc80ee4a0e6b9d65812d47
7
- data.tar.gz: ea07500016a04a29a8eb7669c9f2209adc2db9b713bf0de37b8f3fd5e36b7f549a076f436e99ce815a5eee2bad009806e2328bb6bcb6d09e4456381f8b19d395
6
+ metadata.gz: 8f3ccd4574115ba88f863e0fdf2b099291f1a2c63c422551dc7f4f720fd5d9c3118f1c2b3ac5d859e00a13af90ba6b3b5d237952337cac7434744dba9110c7d4
7
+ data.tar.gz: b6f1036f50c9d0ef0076d9d8b6477a7f7d4b4956707e26f94ac1cabd986bca7c90793d019109da631e4073b84d361bbcdd31f1b83a71f102ade896eb7f55ff8b
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at MSNexploder@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "clojure_jar"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
Binary file
@@ -1,4 +1,4 @@
1
1
  module ClojureJar
2
- VERSION = "1.7.0"
3
- CLOJURE_VERSION = "1.7.0"
2
+ VERSION = "1.8.0"
3
+ CLOJURE_VERSION = "1.8.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clojure_jar
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefan Huber
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-15 00:00:00.000000000 Z
11
+ date: 2016-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -41,17 +41,22 @@ dependencies:
41
41
  description: The Clojure jar - nicely packaged as a Ruby gem.
42
42
  email:
43
43
  - MSNexploder@gmail.com
44
- executables: []
44
+ executables:
45
+ - console
46
+ - setup
45
47
  extensions: []
46
48
  extra_rdoc_files: []
47
49
  files:
48
50
  - ".gitignore"
51
+ - CODE_OF_CONDUCT.md
49
52
  - Gemfile
50
53
  - LICENSE.txt
51
54
  - README.md
52
55
  - Rakefile
56
+ - bin/console
57
+ - bin/setup
53
58
  - clojure_jar.gemspec
54
- - lib/clojure-1.7.0.jar
59
+ - lib/clojure-1.8.0.jar
55
60
  - lib/clojure_jar.rb
56
61
  - lib/clojure_jar/version.rb
57
62
  homepage: https://github.com/msnexploder/clojure_jar
@@ -74,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
79
  version: '0'
75
80
  requirements: []
76
81
  rubyforge_project:
77
- rubygems_version: 2.4.8
82
+ rubygems_version: 2.6.4
78
83
  signing_key:
79
84
  specification_version: 4
80
85
  summary: The Clojure jar
Binary file