This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Paul Lesiak
committed
Dec 8, 2015
1 parent
faa712b
commit 06f2477
Showing
15 changed files
with
31 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
require './lib/version' | ||
require './lib/acirb/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'acirb' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
echo 'Generating ruby model' | ||
python genrubyfrompy.py | ||
echo 'Building gem' | ||
gem build acirb.spec | ||
echo "Generating ruby model" | ||
python genrubyfrompy.py || (echo "Failed to generate ruby model"; exit 1) | ||
echo "Building gem" | ||
gem build acirb.spec || (echo "Failed to build gem"; exit 1) | ||
cp -v *.gem gems | ||
echo 'Installing gem' | ||
version=$(ruby -e "require './lib/version'; puts ACIrb::VERSION") | ||
sudo gem install --no-ri --no-rdoc acirb-${version}.gem | ||
version=$(ruby -e "require './lib/acirb/version'; puts ACIrb::VERSION") | ||
echo "Generated gem for $version" | ||
# sudo gem install --no-ri --no-rdoc acirb-${version}.gem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
require 'autoloadmap' | ||
require 'loader' | ||
require 'lookup' | ||
require 'mo' | ||
require 'naming' | ||
require 'restclient' | ||
require 'version' | ||
require 'query' | ||
require 'events' | ||
require 'acirb/autoloadmap' | ||
require 'acirb/loader' | ||
require 'acirb/lookup' | ||
require 'acirb/mo' | ||
require 'acirb/naming' | ||
require 'acirb/restclient' | ||
require 'acirb/version' | ||
require 'acirb/query' | ||
require 'acirb/events' | ||
|
||
module ACIrb | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
require 'restclient' | ||
require 'acirb/restclient' | ||
require 'websocket' | ||
require 'socket' | ||
require 'openssl' | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
require 'restclient' | ||
require 'acirb/restclient' | ||
require 'rexml/document' | ||
require 'json' | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
require 'restclient' | ||
require 'acirb/restclient' | ||
|
||
# rubocop:disable ClassLength | ||
# rubocop:disable FormatString | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters