Skip to content

Commit 6746beb

Browse files
committed
fix name
1 parent 3794068 commit 6746beb

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
lines changed

Gemfile.lock

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
PATH
22
remote: .
33
specs:
4-
fastcomments-ruby (0.0.1)
4+
fastcomments (0.1.0)
5+
typhoeus (~> 1.0, >= 1.0.1)
56

67
GEM
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)
@@ -21,12 +25,14 @@ GEM
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

2531
PLATFORMS
2632
x86_64-linux-gnu
2733

2834
DEPENDENCIES
29-
fastcomments-ruby!
35+
fastcomments!
3036
rake (~> 13.0)
3137
rspec (~> 3.12)
3238

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# fastcomments-ruby
1+
# fastcomments
22
The 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

66
Add this line to your application's Gemfile:
77

88
```ruby
9-
gem 'fastcomments-ruby'
9+
gem 'fastcomments'
1010
```
1111

1212
And then execute:
@@ -18,7 +18,7 @@ bundle install
1818
Or install it yourself as:
1919

2020
```bash
21-
gem install fastcomments-ruby
21+
gem install fastcomments
2222
```
2323

2424
### Library Contents
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
Gem::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]

publish.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/bin/bash
22
set -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
88
VERSION=$(ruby -r ./lib/fastcomments.rb -e "puts FastComments::VERSION")
9-
GEM_FILE="fastcomments-ruby-${VERSION}.gem"
9+
GEM_FILE="fastcomments-${VERSION}.gem"
1010

1111
if [ ! -f "$GEM_FILE" ]; then
1212
echo "Error: Gem file $GEM_FILE not found!"
@@ -16,5 +16,5 @@ fi
1616
echo "Publishing $GEM_FILE to RubyGems..."
1717
gem 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"

0 commit comments

Comments
 (0)