primer-rails 0.2.2 → 0.3.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: 96b7c133a93659a9dceb09c5b28d0f7a96fbb7d9
4
- data.tar.gz: 01e32f23ce09c31b944f9eb8142f70bb55147b6a
3
+ metadata.gz: e98e4364dfd36cb1c6c5f4522b274bcb3c20035c
4
+ data.tar.gz: ec05dfb56150b6bca15937e893682fcc7ad06a6d
5
5
  SHA512:
6
- metadata.gz: 9a03e616b2dd5f3e3b7bf06261564319aa870a4620f0674c2ae45cc17130ac0cb1d12c09f3725ab9c9dcf84c98ebb9692ec88633bd1d86e0e08609456f8800fd
7
- data.tar.gz: ca680442b6011fb71f54c0dc19a9f67ffa5ee9eef352875ef6f2833baaf31d8826664c253f1aabefd5bb75370e49445e179ac03713598ffeb9ead7fa0d2f4fdf
6
+ metadata.gz: 2591e2f8b1292ed981cc520c4baac8d3bb9c7b4c39e1f067dd05f0c005dc0a9e66bbaa4aae9c358c3569d6ec14bfaeb59b7a1c5403835a21ce4602397818d3b5
7
+ data.tar.gz: 6370e0f7ea5e7590bf4aba91df931b8bc12c477deea2e64d83031e6999d17378d23de8a0f3dc96f2f959539e0fb4bdc378b0645c42ed4375e83dd049546f892d
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # Primer::Rails
1
+ # Primer for Rails
2
2
 
3
- Rails implementation of Primer CSS framework - Github's CSS framework.
3
+ Primer (Github's) CSS framework implemenation in Rails.
4
4
 
5
5
  ## Installation
6
6
 
@@ -22,22 +22,15 @@ Or install it yourself as:
22
22
 
23
23
  Add this line to your application.css / application.scss file:
24
24
 
25
- ```ruby
25
+ ```css
26
26
  *= require primer
27
27
  ```
28
28
 
29
- ## Development
30
-
31
- 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.
32
-
33
- 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).
34
-
35
29
  ## Contributing
36
30
 
37
- Bug reports and pull requests are welcome on GitHub at https://github.com/piotrjaworski/primer-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/piotrjaworski/primer-rails.
38
32
 
39
33
 
40
34
  ## License
41
35
 
42
36
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
43
-
@@ -1,5 +1,5 @@
1
1
  module Primer
2
2
  module Rails
3
- VERSION = "0.2.2"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: primer-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Jaworski
@@ -62,7 +62,6 @@ files:
62
62
  - ".gitignore"
63
63
  - ".rspec"
64
64
  - ".travis.yml"
65
- - CODE_OF_CONDUCT.md
66
65
  - Gemfile
67
66
  - LICENSE.txt
68
67
  - README.md
data/CODE_OF_CONDUCT.md DELETED
@@ -1,13 +0,0 @@
1
- # Contributor Code of Conduct
2
-
3
- As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
-
5
- We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
-
7
- Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
-
9
- Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
-
11
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
-
13
- This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)