angellist_api 0.0.1 → 0.0.2
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.
- data/README.md +16 -0
- data/lib/angellist_api/version.rb +1 -1
- metadata +4 -4
- data/README.rdoc +0 -3
data/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# The AngelList API Ruby Gem
|
|
2
|
+
A Ruby wrapper for the AngelList REST APIs
|
|
3
|
+
|
|
4
|
+
## <a name="installation">Installation</a>
|
|
5
|
+
gem install angellist-api
|
|
6
|
+
|
|
7
|
+
## <a name="pulls">Submitting a Pull Request</a>
|
|
8
|
+
1. Fork the project.
|
|
9
|
+
2. Create a topic branch.
|
|
10
|
+
3. Implement your feature or bug fix.
|
|
11
|
+
4. Add documentation for your feature or bug fix.
|
|
12
|
+
5. Run <tt>bundle exec rake doc:yard</tt>. If your changes are not 100% documented, go back to step 4.
|
|
13
|
+
6. Add specs for your feature or bug fix.
|
|
14
|
+
7. Run <tt>bundle exec rake spec</tt>. If your changes are not 100% covered, go back to step 6.
|
|
15
|
+
8. Commit and push your changes.
|
|
16
|
+
9. Submit a pull request. Please do not include changes to the gemspec, version, or history file. (If you want to create your own version for some reason, please do so in a separate commit.)
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 2
|
|
9
|
+
version: 0.0.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Paul Singh
|
|
@@ -73,9 +73,9 @@ files:
|
|
|
73
73
|
- lib/tasks/angellist_api_tasks.rake
|
|
74
74
|
- MIT-LICENSE
|
|
75
75
|
- Rakefile
|
|
76
|
-
- README.
|
|
76
|
+
- README.md
|
|
77
77
|
has_rdoc: true
|
|
78
|
-
homepage:
|
|
78
|
+
homepage: https://github.com/paulsingh/angellist-api
|
|
79
79
|
licenses: []
|
|
80
80
|
|
|
81
81
|
post_install_message:
|
data/README.rdoc
DELETED