File tree Expand file tree Collapse file tree 4 files changed +22
-16
lines changed
Expand file tree Collapse file tree 4 files changed +22
-16
lines changed Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- fastcomments-ruby (0.0.1 )
4+ fastcomments (0.1.0 )
5+ typhoeus (~> 1.0 , >= 1.0.1 )
56
67GEM
78 remote: https://rubygems.org/
89 specs:
910 diff-lcs (1.6.2 )
11+ ethon (0.15.0 )
12+ ffi (>= 1.15.0 )
13+ ffi (1.17.2-x86_64-linux-gnu )
1014 rake (13.3.1 )
1115 rspec (3.13.2 )
1216 rspec-core (~> 3.13.0 )
2125 diff-lcs (>= 1.2.0 , < 2.0 )
2226 rspec-support (~> 3.13.0 )
2327 rspec-support (3.13.6 )
28+ typhoeus (1.5.0 )
29+ ethon (>= 0.9.0 , < 0.16.0 )
2430
2531PLATFORMS
2632 x86_64-linux-gnu
2733
2834DEPENDENCIES
29- fastcomments-ruby !
35+ fastcomments !
3036 rake (~> 13.0 )
3137 rspec (~> 3.12 )
3238
Original file line number Diff line number Diff line change 1- # fastcomments-ruby
1+ # fastcomments
22The FastComments Ruby SDK. You can use this to build secure and scalable backend applications that interact with FastComments, or build reactive client applications.
33
44## Installation
55
66Add this line to your application's Gemfile:
77
88``` ruby
9- gem ' fastcomments-ruby '
9+ gem ' fastcomments'
1010```
1111
1212And then execute:
@@ -18,7 +18,7 @@ bundle install
1818Or install it yourself as:
1919
2020``` bash
21- gem install fastcomments-ruby
21+ gem install fastcomments
2222```
2323
2424### Library Contents
Original file line number Diff line number Diff line change 11Gem ::Specification . new do |spec |
2- spec . name = "fastcomments-ruby "
2+ spec . name = "fastcomments"
33 spec . version = "0.1.0"
44 spec . authors = [ "FastComments" ]
55 spec . email = [ "[email protected] " ] 66
77 spec . summary = "FastComments Ruby SDK"
88 spec . description = "A Ruby SDK for interacting with the FastComments API"
9- spec . homepage = "https://github.com/fastcomments/fastcomments-ruby "
9+ spec . homepage = "https://github.com/fastcomments/fastcomments"
1010 spec . license = "MIT"
1111 spec . required_ruby_version = ">= 2.7.0"
1212
1313 spec . metadata = {
14- "bug_tracker_uri" => "https://github.com/fastcomments/fastcomments-ruby /issues" ,
15- "changelog_uri" => "https://github.com/fastcomments/fastcomments-ruby /blob/master/CHANGELOG.md" ,
16- "source_code_uri" => "https://github.com/fastcomments/fastcomments-ruby " ,
17- "documentation_uri" => "https://github.com/fastcomments/fastcomments-ruby /blob/master/README.md"
14+ "bug_tracker_uri" => "https://github.com/fastcomments/fastcomments/issues" ,
15+ "changelog_uri" => "https://github.com/fastcomments/fastcomments/blob/master/CHANGELOG.md" ,
16+ "source_code_uri" => "https://github.com/fastcomments/fastcomments" ,
17+ "documentation_uri" => "https://github.com/fastcomments/fastcomments/blob/master/README.md"
1818 }
1919
2020 spec . files = Dir . glob ( "{lib,client}/**/*" ) + %w[ README.md LICENSE ]
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -e
33
4- echo " Building fastcomments-ruby gem..."
5- gem build fastcomments-ruby .gemspec
4+ echo " Building fastcomments gem..."
5+ gem build fastcomments.gemspec
66
77# Get the version from the gemspec
88VERSION=$( ruby -r ./lib/fastcomments.rb -e " puts FastComments::VERSION" )
9- GEM_FILE=" fastcomments-ruby- ${VERSION} .gem"
9+ GEM_FILE=" fastcomments-${VERSION} .gem"
1010
1111if [ ! -f " $GEM_FILE " ]; then
1212 echo " Error: Gem file $GEM_FILE not found!"
1616echo " Publishing $GEM_FILE to RubyGems..."
1717gem push " $GEM_FILE "
1818
19- echo " Successfully published fastcomments-ruby v${VERSION} !"
20- echo " Users can now install it with: gem install fastcomments-ruby "
19+ echo " Successfully published fastcomments v${VERSION} !"
20+ echo " Users can now install it with: gem install fastcomments"
You can’t perform that action at this time.
0 commit comments