enforce_mysql_version 1.1 → 1.2

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: 4e9f94786b4e7a21cc520410bf91b4f9be416320
4
- data.tar.gz: f00fddfc917464b42c8e4b11e85ccbacb4d7a834
3
+ metadata.gz: 4d38c1893aea49e71c3e6eb94e9a1f9137bf2a46
4
+ data.tar.gz: 4d203b0455a8348dfe60867fdd2125c0f8ed5f86
5
5
  SHA512:
6
- metadata.gz: e39b243d657fa52f6aeddadac59b09e597f49bb013a3ed5b1f0bb3dec3aa97ca2156a8f9ad3e9afc51aea9080247ddf02c32ee0d17dd64452222725990643c8e
7
- data.tar.gz: bc98c5792b82378f1b8369b44e63d1625764ba897a0609bf16e1d6edb4396616c6ccbebd5f06382f9ed1a72ad86cbed7f9a53d5fb5094ffb7c8c46a8f1222726
6
+ metadata.gz: 2198d15749c57dacae0754e620c70f7b25c09ce1b8cea2804e7286b8700193f34f350c3810929874e59cb5771fc2e8f290ae83e7402fb2f8cbbde73738eddd2a
7
+ data.tar.gz: 7925dd46ee3d9826e949910bd804d7ca85f72b7b3881a1763de6042a91b0c917c967210123bd4f95bb4dcc4f2be85477246d295662d9c350be676ef0147945c5
data/README.md CHANGED
@@ -39,8 +39,9 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
39
39
 
40
40
  ## Contributing
41
41
 
42
- Bug reports and pull requests are welcome on GitHub at https://github.com/pipt/enforce_mysql_version.
42
+ Please note that this project is released with a [Contributor Code of Conduct](code_of_conduct.md). By participating in this project you agree to abide by its terms.
43
43
 
44
+ Bug reports and pull requests are welcome on GitHub at https://github.com/pipt/enforce_mysql_version.
44
45
 
45
46
  ## License
46
47
 
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at git@evilgeek.co.uk. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
@@ -5,6 +5,8 @@ module EnforceMysqlVersion
5
5
 
6
6
  unless mysql_version.start_with?(EnforceMysqlVersion::REQUIRED_VERSION)
7
7
  puts "App startup was prevented by the gem enforce_mysql_version. This app won't start unless the MySQL major/minor version is #{EnforceMysqlVersion::REQUIRED_VERSION}"
8
+ puts "Your MySQL version is #{mysql_version}"
9
+ puts "To get the app running without changing your MySQL version, comment out the enforce_mysql_version gem in your Gemfile"
8
10
  exit(false)
9
11
  end
10
12
  end
@@ -1,3 +1,3 @@
1
1
  module EnforceMysqlVersion
2
- VERSION = "1.1"
2
+ VERSION = "1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enforce_mysql_version
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.1'
4
+ version: '1.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pip Taylor
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-24 00:00:00.000000000 Z
11
+ date: 2016-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,6 +66,7 @@ files:
66
66
  - LICENSE.txt
67
67
  - README.md
68
68
  - Rakefile
69
+ - code_of_conduct.md
69
70
  - docker-compose.yml
70
71
  - enforce_mysql_version.gemspec
71
72
  - lib/5.5.rb