gripst 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +39 -0
- data/README.md +1 -14
- data/changelog.md +5 -0
- data/contributing.md +15 -0
- data/lib/gripst/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 197a043cf1783c3b0ed6272e242aa4ba05f83827
|
4
|
+
data.tar.gz: ed23ac18b65f24b5779ee31ea2f49416a8ff4060
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6eba9df86055432363d2c62261536063149a7b084e7e4962c0205c403b2c7598ac68f0ee91e08cf101600e27066aaf99b25b02aa2853c6fdb24e9681026c1aac
|
7
|
+
data.tar.gz: 0adb81445e022772c0db59c8dc4c65d2f643d008a6324e4e204392400dbf69e7dbd8fb3515865dcf4b622a6d893d2d2d231555b88b5db1b06781a6f5e3dfc943
|
data/.gitignore
CHANGED
@@ -18,3 +18,42 @@ spec/reports
|
|
18
18
|
test/tmp
|
19
19
|
test/version_tmp
|
20
20
|
tmp
|
21
|
+
# .gitignore for Yeoman-Jekyll projects
|
22
|
+
|
23
|
+
# Ignore hidden folders #
|
24
|
+
# This takes care of .tmp, .sass-cache, and many others #
|
25
|
+
.*/
|
26
|
+
|
27
|
+
# Ignore OS generated files #
|
28
|
+
.DS_Store*
|
29
|
+
ehthumbs.db
|
30
|
+
Icon?
|
31
|
+
Thumbs.db
|
32
|
+
|
33
|
+
# Always-ignore files and folders #
|
34
|
+
*.diff
|
35
|
+
*.err
|
36
|
+
*.log
|
37
|
+
*.orig
|
38
|
+
*.rej
|
39
|
+
*.swn
|
40
|
+
*.swo
|
41
|
+
*.swp
|
42
|
+
._*
|
43
|
+
*~
|
44
|
+
|
45
|
+
# Ignore packages #
|
46
|
+
*.7z
|
47
|
+
*.dmg
|
48
|
+
*.gz
|
49
|
+
*.iso
|
50
|
+
*.jar
|
51
|
+
*.rar
|
52
|
+
*.tar
|
53
|
+
*.zip
|
54
|
+
|
55
|
+
# Ignore for Yeoman-Jekyll projects #
|
56
|
+
/node_modules
|
57
|
+
/vendor/*
|
58
|
+
/dist
|
59
|
+
/.tmp
|
data/README.md
CHANGED
@@ -18,20 +18,7 @@ gripst "(stuff|things)"
|
|
18
18
|
|
19
19
|
## Contributing
|
20
20
|
|
21
|
-
|
22
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
23
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
24
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
25
|
-
5. Create new Pull Request
|
26
|
-
|
27
|
-
|
28
|
-
## Tests
|
29
|
-
|
30
|
-
```
|
31
|
-
git clone git@github.com:maxbeizer/gripst.git
|
32
|
-
rake install
|
33
|
-
rake spec
|
34
|
-
```
|
21
|
+
See [contributing.md](https://github.com/maxbeizer/gripst/blob/master/contributing.md)
|
35
22
|
|
36
23
|
## Credits
|
37
24
|
|
data/changelog.md
ADDED
data/contributing.md
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
## Contributing
|
2
|
+
|
3
|
+
1. Fork it
|
4
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
5
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
6
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
7
|
+
5. Create new Pull Request
|
8
|
+
|
9
|
+
## Tests
|
10
|
+
|
11
|
+
```
|
12
|
+
git clone git@github.com:maxbeizer/gripst.git
|
13
|
+
rake install
|
14
|
+
rake spec
|
15
|
+
```
|
data/lib/gripst/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gripst
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Max Beizer
|
@@ -121,6 +121,8 @@ files:
|
|
121
121
|
- README.md
|
122
122
|
- Rakefile
|
123
123
|
- bin/gripst
|
124
|
+
- changelog.md
|
125
|
+
- contributing.md
|
124
126
|
- gripst.gemspec
|
125
127
|
- lib/gripst.rb
|
126
128
|
- lib/gripst/gripst.rb
|