Skip to content

Commit b52787c

Browse files
committed
cirro-io
1 parent e18688b commit b52787c

File tree

8 files changed

+19
-27
lines changed

8 files changed

+19
-27
lines changed

bin/console

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env ruby
22

33
require "bundler/setup"
4-
require "cirro/ruby/client"
4+
require "cirro_i_o/client"
55

66
# You can add fixtures and/or initialization code here to make experimenting
77
# with your gem easier. You can also use a different console, if you like.

cirro-ruby-client.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
require_relative 'lib/cirro/ruby/client/version'
1+
require_relative 'lib/cirro_i_o/client/version'
22

33
Gem::Specification.new do |spec|
44
spec.name = "cirro-ruby-client"
5-
spec.version = Cirro::Ruby::Client::VERSION
5+
spec.version = CirroIO::Client::VERSION
66
spec.authors = ["Cirro Dev Team"]
77
spec.email = ["[email protected]"]
88

lib/cirro/ruby/client.rb

Lines changed: 0 additions & 10 deletions
This file was deleted.

lib/cirro/ruby/client/version.rb

Lines changed: 0 additions & 7 deletions
This file was deleted.

lib/cirro_i_o/client.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
require "cirro_i_o/client/version"
2+
3+
module CirroIO
4+
module Client
5+
class Error < StandardError; end
6+
# Your code goes here...
7+
end
8+
end

lib/cirro_i_o/client/version.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module CirroIO
2+
module Client
3+
VERSION = "0.1.0"
4+
end
5+
end

spec/cirro/ruby/client_spec.rb

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
RSpec.describe Cirro::Ruby::Client do
1+
RSpec.describe CirroIO::Client do
22
it "has a version number" do
3-
expect(Cirro::Ruby::Client::VERSION).not_to be nil
4-
end
5-
6-
it "does something useful" do
7-
expect(false).to eq(true)
3+
expect(CirroIO::Client::VERSION).not_to be nil
84
end
95
end

spec/spec_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
require "bundler/setup"
2-
require "cirro/ruby/client"
2+
require "cirro_i_o/client"
33

44
RSpec.configure do |config|
55
# Enable flags like --only-failures and --next-failure

0 commit comments

Comments
 (0)