Skip to content

Commit e434f46

Browse files
author
Tom
committed
Rename to bullet-train-client
1 parent e913677 commit e434f46

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Debug Local File",
9+
"type": "Ruby",
10+
"request": "launch",
11+
"cwd": "${workspaceRoot}",
12+
"program": "${workspaceRoot}/lib/bullet-train.rb"
13+
}
14+
]
15+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ These instructions will get you a copy of the project up and running on your loc
1010
## Installing
1111

1212
### VIA gem
13-
```gem install bullet-train```
13+
```gem install bullet-train-client```
1414

1515
## Usage
1616
**Retrieving feature flags for your project**

bullet-train-0.0.1.gem

-6.5 KB
Binary file not shown.

bullet-train-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Gem::Specification.new do |spec|
2-
spec.name = "bullet-train"
2+
spec.name = "bullet-train-client"
33
spec.version = "0.0.1"
44
spec.authors = ["Tom Stuart"]
55
spec.email = ["[email protected]"]

lib/bullet-train.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require "open-uri"
33
require "json"
44

5-
class BulletTrain
5+
class BulletTrainClient
66
@@apiUrl = ""
77
@@environmentKey = ""
88

0 commit comments

Comments
 (0)