repo_name stringlengths 6 97 | path stringlengths 3 341 | text stringlengths 8 1.02M |
|---|---|---|
MortarStone/planning_center_online-ruby | examples/helpers/addresses.rb | <gh_stars>0
# frozen_string_literal: true
def print_addresses(list)
print_list('address', 'id', list)
end
def print_address(item)
print_item('address', item)
end
def address_columns
%w[
id
street
city
state
zip
location
primary
]
end
|
MortarStone/planning_center_online-ruby | lib/planning_center/endpoints/addresses.rb | # frozen_string_literal: true
module PlanningCenter
module Endpoints
module Addresses
def address(id, params = {})
get(
"people/v2/addresses/#{id}",
params
)
end
def addresses(params = {})
# We need to order the addresses by a value (created_at being... |
MortarStone/planning_center_online-ruby | lib/planning_center/version.rb | <reponame>MortarStone/planning_center_online-ruby
# frozen_string_literal: true
module PlanningCenter
VERSION = '0.0.1'
end
|
MortarStone/planning_center_online-ruby | lib/planning_center/auto_load.rb | # frozen_string_literal: true
require 'faraday'
require 'json'
require_relative 'endpoints/addresses'
require_relative 'endpoints/campuses'
require_relative 'endpoints/designation_refunds'
require_relative 'endpoints/donations'
require_relative 'endpoints/emails'
require_relative 'endpoints/funds'
require_relative 'e... |
MortarStone/planning_center_online-ruby | lib/planning_center/endpoints/marital_statuses.rb | <gh_stars>0
# frozen_string_literal: true
module PlanningCenter
module Endpoints
module MaritalStatuses
def marital_status(id, params = {})
get(
"people/v2/marital_statuses/#{id}",
params
)
end
def marital_statuses(params = {})
get(
'people... |
MortarStone/planning_center_online-ruby | examples/name_suffix.rb | # frozen_string_literal: true
require_relative 'helper'
name_suffix = @client.name_suffix(296_925)
print_name_suffix(name_suffix)
|
MortarStone/planning_center_online-ruby | lib/planning_center/endpoints/people.rb | # frozen_string_literal: true
module PlanningCenter
module Endpoints
module People
def person(id, params = {})
get(
"people/v2/people/#{id}",
params
)
end
def people(params = {})
# We need to order the people by a value (created_at being the default)... |
MortarStone/planning_center_online-ruby | examples/recurring_donation.rb | <gh_stars>0
# frozen_string_literal: true
require_relative 'helper'
recurring_donation = @client.recurring_donation(362_440)
print_recurring_donation(recurring_donation)
|
MortarStone/planning_center_online-ruby | examples/donations.rb | <gh_stars>0
# frozen_string_literal: true
require_relative 'helper'
donations = @client.donations
print_donations(donations)
|
MortarStone/planning_center_online-ruby | examples/helpers/funds.rb | # frozen_string_literal: true
def print_funds(list)
print_list('fund', 'id', list)
end
def print_fund(item)
print_item('fund', item)
end
def fund_columns
%w[
id
name
]
end
|
MortarStone/planning_center_online-ruby | examples/marital_statuses.rb | # frozen_string_literal: true
require_relative 'helper'
marital_statuses = @client.marital_statuses
print_marital_statuses(marital_statuses)
|
MortarStone/planning_center_online-ruby | spec/planning_center/endpoints/name_suffixes_spec.rb | <reponame>MortarStone/planning_center_online-ruby<filename>spec/planning_center/endpoints/name_suffixes_spec.rb
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe PlanningCenter::Endpoints::NameSuffixes do
let!(:client) { FactoryBot.build(:client) }
describe '#name_suffixes', :vcr do
before d... |
MortarStone/planning_center_online-ruby | spec/planning_center/endpoints/refunds_spec.rb | # frozen_string_literal: true
require 'spec_helper'
RSpec.describe PlanningCenter::Endpoints::Refunds do
let!(:client) { FactoryBot.build(:client) }
describe '#refund', :vcr do
before do
@refund = client.refund(53_134_447)
end
it 'returns a refund object' do
expect(@refund).to be_a(Hash)... |
MortarStone/planning_center_online-ruby | examples/emails.rb | # frozen_string_literal: true
require_relative 'helper'
emails = @client.emails
print_emails(emails)
|
MortarStone/planning_center_online-ruby | examples/helpers/pledge_campaigns.rb | # frozen_string_literal: true
def print_pledge_campaigns(list)
print_list('pledge_campaign', 'id', list)
end
def print_pledge_campaign(item)
print_item('pledge_campaign', item)
end
def pledge_campaign_columns
%w[
id
amount_cents
]
end
|
MortarStone/planning_center_online-ruby | examples/phone_number.rb | # frozen_string_literal: true
require_relative 'helper'
phone_number = @client.phone_number(2_669_139, 60_503_519)
print_phone_number(phone_number)
|
MortarStone/planning_center_online-ruby | lib/planning_center/endpoints/inactive_reasons.rb | # frozen_string_literal: true
module PlanningCenter
module Endpoints
module InactiveReasons
def inactive_reason(id, params = {})
get(
"people/v2/inactive_reasons/#{id}",
params
)
end
def inactive_reasons(params = {})
get(
'people/v2/inactiv... |
MortarStone/planning_center_online-ruby | examples/phone_numbers.rb | <filename>examples/phone_numbers.rb
# frozen_string_literal: true
require_relative 'helper'
phone_numbers = @client.phone_numbers(2_669_139)
print_phone_numbers(phone_numbers)
|
MortarStone/planning_center_online-ruby | lib/planning_center/endpoints/phone_numbers.rb | <gh_stars>0
# frozen_string_literal: true
module PlanningCenter
module Endpoints
module PhoneNumbers
def phone_number(person_id, id, params = {})
get(
"people/v2/people/#{person_id}/phone_numbers/#{id}",
params
)
end
def phone_numbers(person_id, params = {})... |
MortarStone/planning_center_online-ruby | examples/name_suffixes.rb | # frozen_string_literal: true
require_relative 'helper'
name_suffixes = @client.name_suffixes
print_name_suffixes(name_suffixes)
|
MortarStone/planning_center_online-ruby | examples/people.rb | # frozen_string_literal: true
require_relative 'helper'
people = @client.people(
include: %w[
households
marital_status
emails
phone_numbers
inactive_reason
addresses
name_suffix
]
)
print_people(people)
|
MortarStone/planning_center_online-ruby | examples/inactive_reasons.rb | <filename>examples/inactive_reasons.rb
# frozen_string_literal: true
require_relative 'helper'
inactive_reasons = @client.inactive_reasons
print_inactive_reasons(inactive_reasons)
|
MortarStone/planning_center_online-ruby | examples/helper.rb | # frozen_string_literal: true
require 'pry'
require 'active_support/inflector'
require_relative '../lib/planning_center'
require_relative 'helpers/addresses'
require_relative 'helpers/campuses'
require_relative 'helpers/designation_refunds'
require_relative 'helpers/donations'
require_relative 'helpers/emails'
require... |
MortarStone/planning_center_online-ruby | lib/planning_center.rb | <reponame>MortarStone/planning_center_online-ruby
# frozen_string_literal: true
require_relative 'planning_center/client'
require_relative 'planning_center/exceptions'
require_relative 'planning_center/version'
module PlanningCenter
end
|
MortarStone/planning_center_online-ruby | examples/campus.rb | # frozen_string_literal: true
require_relative 'helper'
campus = @client.campus(44_710)
print_campus(campus)
|
MortarStone/planning_center_online-ruby | examples/helpers/people.rb | # frozen_string_literal: true
def print_people(list)
print_list('person', 'id', list)
end
def print_person(item)
print_item('person', item)
end
def person_columns
%w[
id
first_name
last_name
]
end
|
MortarStone/planning_center_online-ruby | lib/planning_center/response_handler.rb | # frozen_string_literal: true
module PlanningCenter
class ResponseHandler
attr_accessor :response
def initialize(response:)
@response = response
end
def call
handle_response
end
private
def handle_response
case response.status
when 200..299
format_respo... |
MortarStone/planning_center_online-ruby | examples/donation.rb | # frozen_string_literal: true
require_relative 'helper'
donation = @client.donation(46_653_783)
print_donation(donation)
|
MortarStone/planning_center_online-ruby | lib/planning_center/endpoints/pledges.rb | <gh_stars>0
# frozen_string_literal: true
module PlanningCenter
module Endpoints
module Pledges
def pledge(id, params = {})
get(
"giving/v2/pledges/#{id}",
params
)
end
def pledges(params = {})
# We need to order the pledges by a value (created_at be... |
MortarStone/planning_center_online-ruby | lib/planning_center/endpoints/campuses.rb | # frozen_string_literal: true
module PlanningCenter
module Endpoints
module Campuses
def campus(id, params = {})
get(
"people/v2/campuses/#{id}",
params
)
end
def campuses(params = {})
# We need to order the campuses by a value (created_at being the ... |
MortarStone/planning_center_online-ruby | examples/addresses.rb | <reponame>MortarStone/planning_center_online-ruby
# frozen_string_literal: true
require_relative 'helper'
addresses = @client.addresses
print_addresses(addresses)
|
MortarStone/planning_center_online-ruby | spec/planning_center/endpoints/campuses_spec.rb | <filename>spec/planning_center/endpoints/campuses_spec.rb
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe PlanningCenter::Endpoints::Campuses do
let!(:client) { FactoryBot.build(:client) }
describe '#campuses', :vcr do
before do
@campuses = client.campuses
end
it 'returns an... |
MortarStone/planning_center_online-ruby | spec/planning_center/endpoints/donations_spec.rb | <reponame>MortarStone/planning_center_online-ruby<gh_stars>0
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe PlanningCenter::Endpoints::Donations do
let!(:client) { FactoryBot.build(:client) }
describe '#donations', :vcr do
before do
@donations = client.donations(per_page: 25)
en... |
MortarStone/planning_center_online-ruby | examples/helpers/pledges.rb | <filename>examples/helpers/pledges.rb
# frozen_string_literal: true
def print_pledges(list)
print_list('pledge', 'id', list)
end
def print_pledge(item)
print_item('pledge', item)
end
def pledge_columns
%w[
id
amount_cents
]
end
|
MortarStone/planning_center_online-ruby | examples/helpers/households.rb | # frozen_string_literal: true
def print_households(list)
print_list('household', 'id', list)
end
def print_household(item)
print_item('household', item)
end
def household_columns
%w[
id
name
member_count
primary_contact_name
primary_contact_id
]
end
|
MortarStone/planning_center_online-ruby | examples/marital_status.rb | # frozen_string_literal: true
require_relative 'helper'
marital_status = @client.marital_status(296_943)
print_marital_status(marital_status)
|
MortarStone/planning_center_online-ruby | spec/planning_center/endpoints/inactive_reasons_spec.rb | <gh_stars>0
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe PlanningCenter::Endpoints::InactiveReasons do
let!(:client) { FactoryBot.build(:client) }
describe '#inactive_reasons', :vcr do
before do
@inactive_reasons = client.inactive_reasons(per_page: 25)
end
it 'returns an ... |
MortarStone/planning_center_online-ruby | examples/helpers/refunds.rb | <filename>examples/helpers/refunds.rb
# frozen_string_literal: true
def print_refunds(list)
print_list('refund', 'id', list)
end
def print_refund(item)
print_item('refund', item)
end
def refund_columns
%w[
id
amount_cents
refunded_at
]
end
|
MortarStone/planning_center_online-ruby | examples/helpers/designation_refunds.rb | <filename>examples/helpers/designation_refunds.rb<gh_stars>0
# frozen_string_literal: true
def print_designation_refunds(list)
print_list('designation_refund', 'id', list)
end
def print_designation_refund(item)
print_item('designation_refund', item)
end
def designation_refund_columns
%w[
id
amount_cent... |
MortarStone/planning_center_online-ruby | lib/planning_center/endpoints/recurring_donations.rb | <gh_stars>0
# frozen_string_literal: true
module PlanningCenter
module Endpoints
module RecurringDonations
def recurring_donation(id, params = {})
get(
"giving/v2/recurring_donations/#{id}",
params
)
end
def recurring_donations(params = {})
get(
... |
MortarStone/planning_center_online-ruby | lib/planning_center/endpoints/funds.rb | <gh_stars>0
# frozen_string_literal: true
module PlanningCenter
module Endpoints
module Funds
def fund(id, params = {})
get(
"giving/v2/funds/#{id}",
params
)
end
def funds(params = {})
get(
'giving/v2/funds',
params
)
... |
MortarStone/planning_center_online-ruby | examples/inactive_reason.rb | # frozen_string_literal: true
require_relative 'helper'
inactive_reason = @client.inactive_reason(296_937)
print_inactive_reason(inactive_reason)
|
MortarStone/planning_center_online-ruby | examples/helpers/inactive_reasons.rb | # frozen_string_literal: true
def print_inactive_reasons(list)
print_list('inactive_reason', 'id', list)
end
def print_inactive_reason(item)
print_item('inactive_reason', item)
end
def inactive_reason_columns
%w[
id
value
]
end
|
MortarStone/planning_center_online-ruby | examples/refund.rb | <gh_stars>0
# frozen_string_literal: true
require_relative 'helper'
refund = @client.refund(53_134_447)
print_refund(refund)
|
MortarStone/planning_center_online-ruby | examples/pledge_campaigns.rb | <filename>examples/pledge_campaigns.rb
# frozen_string_literal: true
require_relative 'helper'
pledge_campaigns = @client.pledge_campaigns
print_pledge_campaigns(pledge_campaigns)
|
MortarStone/planning_center_online-ruby | examples/designation_refunds.rb | <filename>examples/designation_refunds.rb
# frozen_string_literal: true
require_relative 'helper'
designation_refunds = @client.designation_refunds(53_134_447)
print_designation_refunds(designation_refunds)
|
MortarStone/planning_center_online-ruby | examples/helpers/name_suffixes.rb | # frozen_string_literal: true
def print_name_suffixes(list)
print_list('name_suffix', 'id', list)
end
def print_name_suffix(item)
print_item('name_suffix', item)
end
def name_suffix_columns
%w[
id
value
]
end
|
MortarStone/planning_center_online-ruby | spec/planning_center/endpoints/recurring_donations_spec.rb | # frozen_string_literal: true
require 'spec_helper'
RSpec.describe PlanningCenter::Endpoints::RecurringDonations do
let!(:client) { FactoryBot.build(:client) }
describe '#recurring_donations', :vcr do
before do
@recurring_donations = client.recurring_donations
end
it 'returns an array' do
... |
MortarStone/planning_center_online-ruby | examples/campuses.rb | <filename>examples/campuses.rb
# frozen_string_literal: true
require_relative 'helper'
campuses = @client.campuses
print_campuses(campuses)
|
MortarStone/planning_center_online-ruby | examples/recurring_donations.rb | <gh_stars>0
# frozen_string_literal: true
require_relative 'helper'
recurring_donations = @client.recurring_donations
print_recurring_donations(recurring_donations)
|
MortarStone/planning_center_online-ruby | spec/planning_center/endpoints/phone_numbers_spec.rb | <reponame>MortarStone/planning_center_online-ruby<filename>spec/planning_center/endpoints/phone_numbers_spec.rb<gh_stars>0
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe PlanningCenter::Endpoints::PhoneNumbers do
let!(:client) { FactoryBot.build(:client) }
describe '#phone_numbers', :vcr do
... |
MortarStone/planning_center_online-ruby | examples/recurring_donation_designation.rb | # frozen_string_literal: true
require_relative 'helper'
recurring_donation_designation = @client.recurring_donation_designation(358_916, 383_099)
print_recurring_donation_designation(recurring_donation_designation)
|
MortarStone/planning_center_online-ruby | examples/fund.rb | # frozen_string_literal: true
require_relative 'helper'
fund = @client.fund(131_737)
print_fund(fund)
|
MortarStone/planning_center_online-ruby | examples/helpers/marital_statuses.rb | <filename>examples/helpers/marital_statuses.rb
# frozen_string_literal: true
def print_marital_statuses(list)
print_list('marital_status', 'id', list)
end
def print_marital_status(item)
print_item('marital_status', item)
end
def marital_status_columns
%w[
id
value
]
end
|
MortarStone/planning_center_online-ruby | lib/planning_center/endpoints/name_suffixes.rb | <reponame>MortarStone/planning_center_online-ruby
# frozen_string_literal: true
module PlanningCenter
module Endpoints
module NameSuffixes
def name_suffix(id, params = {})
get(
"people/v2/name_suffixes/#{id}",
params
)
end
def name_suffixes(params = {})
... |
coincovemx/localbitcoins | spec/client_spec.rb | require 'spec_helper'
require 'oauth2'
describe 'Client' do
let(:client) { LocalBitcoins::Client.new(
client_id: 'CLIENT_ID',
client_secret: 'CLIENT_SECRET',
oauth_token: 'ACCESS_TOKEN'
)}
describe "#escrows" do
before do
stub_get('/api/escrows/','escrows.json')
stub_post('/api/escro... |
coincovemx/localbitcoins | lib/localbitcoins/version.rb | <gh_stars>1-10
module LocalBitcoins
unless defined?(LocalBitcoins::VERSION)
VERSION = '1.0.0'
end
end
|
coincovemx/localbitcoins | lib/localbitcoins/client.rb | require 'localbitcoins/client'
require 'localbitcoins/client/escrows'
require 'localbitcoins/client/ads'
require 'localbitcoins/client/users'
require 'localbitcoins/client/contacts'
require 'localbitcoins/client/markets'
require 'localbitcoins/client/wallet'
require 'localbitcoins/client/public'
module LocalBitcoins
... |
coincovemx/localbitcoins | lib/localbitcoins/client/contacts.rb | <gh_stars>0
module LocalBitcoins
module Contacts
# Contact interaction endpoints
# contact_id - id number associated with the contact
def mark_contact_as_paid(contact_id)
oauth_request(:post, "/api/contact_mark_as_paid/#{contact_id}/")
end
def messages_from_contact(contact_id)
oauth_... |
coincovemx/localbitcoins | lib/localbitcoins.rb | <filename>lib/localbitcoins.rb
require 'localbitcoins/version'
require 'localbitcoins/errors'
require 'localbitcoins/request'
require 'localbitcoins/client'
module LocalBitcoins
@@options = {}
# Create a new LocalBitcoins::Client instance
#
def self.new(options={})
LocalBitcoins::Client.new(options)
end... |
coincovemx/localbitcoins | lib/localbitcoins/errors.rb | module LocalBitcoins
class Error < StandardError; end
class ConfigurationError < Error; end
class Unauthorized < Error; end
class NotFound < Error; end
end
|
coincovemx/localbitcoins | spec/spec_helper.rb | $:.unshift File.expand_path("../..", __FILE__)
require 'localbitcoins'
require 'rest-client'
require 'webmock'
require 'webmock/rspec'
WebMock.disable_net_connect!(allow_localhost: true)
RSpec.configure do |config|
config.color = true
end
def stub_get(path, fixture_name, params={})
stub_request(:get, api_url(pa... |
coincovemx/localbitcoins | lib/localbitcoins/client/wallet.rb | module LocalBitcoins
module Wallet
# Gets information about the token owner's wallet balance
def wallet
oauth_request(:get, '/api/wallet/').data
end
def wallet_balance
oauth_request(:get, '/api/wallet-balance/').data
end
def wallet_send(address, amount)
oauth_request(:post,... |
coincovemx/localbitcoins | spec/localbitcoins_spec.rb | <gh_stars>10-100
require 'spec_helper'
describe 'LocalBitcoins' do
describe '.new' do
it 'returns a new client instance' do
LocalBitcoins.new.should be_a LocalBitcoins::Client
end
end
describe '.configure' do
it 'sets a global configuration options' do
r = LocalBitcoins.configure(client_... |
coincovemx/localbitcoins | lib/localbitcoins/request.rb | require 'rest-client'
require 'active_support/core_ext'
require 'json'
require 'hashie'
require 'oauth2'
module LocalBitcoins
module Request
API_URL = "https://localbitcoins.com"
protected
# Perform an OAuth API request. The client must be initialized
# with a valid OAuth access token to make requ... |
coincovemx/localbitcoins | lib/localbitcoins/client/markets.rb | <gh_stars>10-100
require 'open-uri'
module LocalBitcoins
module Markets
# LocalBitcoins.com provides public trade data available for market chart services and tickers
# The API is in bitcoincharts.com format
# Currently supported currencies:
# ARS, AUD, BRL, CAD, CHF, CZK, DKK, EUR, GBP, HKD, ILS, IN... |
jeffreybozek/machinist_rails | lib/machinist_rails.rb | <filename>lib/machinist_rails.rb<gh_stars>0
require 'machinist_rails/railtie' |
jeffreybozek/machinist_rails | lib/machinist_rails/railtie.rb | require 'machinist'
require 'rails'
module Machinist
class Railtie < Rails::Railtie
config.generators.fixture_replacement :machinist
config.after_initialize do
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
end
end
end
|
0x07CB/linuxbrew-core | Formula/nestopia-ue.rb | <filename>Formula/nestopia-ue.rb
class NestopiaUe < Formula
desc "NES emulator"
homepage "http://0ldsk00l.ca/nestopia/"
url "https://github.com/0ldsk00l/nestopia/archive/1.51.1.tar.gz"
sha256 "6c2198ed5f885b160bf7e22a777a5e139a7625444ec47625cd07a36627e94b3f"
license "GPL-2.0-or-later"
head "https://github.c... |
0x07CB/linuxbrew-core | Formula/shadowenv.rb | class Shadowenv < Formula
desc "Reversible directory-local environment variable manipulations"
homepage "https://shopify.github.io/shadowenv/"
url "https://github.com/Shopify/shadowenv/archive/2.0.6.tar.gz"
sha256 "d23e8bfa2a251e164b6c1a13583a89f81628728951b49b404c73c0cae461eff9"
license "MIT"
bottle do
... |
0x07CB/linuxbrew-core | Formula/libuvc.rb | <filename>Formula/libuvc.rb
class Libuvc < Formula
desc "Cross-platform library for USB video devices"
homepage "https://github.com/ktossell/libuvc"
url "https://github.com/ktossell/libuvc/archive/v0.0.6.tar.gz"
sha256 "42175a53c1c704365fdc782b44233925e40c9344fbb7f942181c1090f06e2873"
license "BSD-3-Clause"
... |
0x07CB/linuxbrew-core | Formula/vilistextum.rb | class Vilistextum < Formula
desc "HTML to text converter"
homepage "https://bhaak.net/vilistextum/"
url "https://bhaak.net/vilistextum/vilistextum-2.6.9.tar.gz"
sha256 "3a16b4d70bfb144e044a8d584f091b0f9204d86a716997540190100c20aaf88d"
license "GPL-2.0"
livecheck do
url "https://bhaak.net/vilistextum/do... |
0x07CB/linuxbrew-core | Formula/git-standup.rb | <reponame>0x07CB/linuxbrew-core
class GitStandup < Formula
desc "Git extension to generate reports for standup meetings"
homepage "https://github.com/kamranahmedse/git-standup"
url "https://github.com/kamranahmedse/git-standup/archive/2.3.2.tar.gz"
sha256 "48d5aaa3c585037c950fa99dd5be8a7e9af959aacacde9fe94143e4... |
0x07CB/linuxbrew-core | Formula/pcre++.rb | class Pcrexx < Formula
desc "C++ wrapper for the Perl Compatible Regular Expressions"
homepage "https://www.daemon.de/projects/pcrepp/"
url "https://www.daemon.de/idisk/Apps/pcre++/pcre++-0.9.5.tar.gz"
mirror "https://distfiles.openadk.org/pcre++-0.9.5.tar.gz"
sha256 "77ee9fc1afe142e4ba2726416239ced66c3add429... |
0x07CB/linuxbrew-core | Formula/msmtp.rb | class Msmtp < Formula
desc "SMTP client that can be used as an SMTP plugin for Mutt"
homepage "https://marlam.de/msmtp/"
url "https://marlam.de/msmtp/releases/msmtp-1.8.17.tar.xz"
sha256 "0fddbe74c1a9dcf6461b4a1b0db3e4d34266184500c403d7f107ad42db4ec4d3"
license "GPL-3.0-or-later"
livecheck do
url "http... |
0x07CB/linuxbrew-core | Formula/libdap.rb | <filename>Formula/libdap.rb<gh_stars>100-1000
class Libdap < Formula
desc "Framework for scientific data networking"
homepage "https://www.opendap.org/"
url "https://www.opendap.org/pub/source/libdap-3.20.8.tar.gz"
sha256 "65eb5c8f693cf74d58eece5eaa2e7c3c65f368926b1bffab0cf5b207757b94eb"
license "LGPL-2.1-or-... |
0x07CB/linuxbrew-core | Formula/nfcutils.rb | <reponame>0x07CB/linuxbrew-core<filename>Formula/nfcutils.rb
class Nfcutils < Formula
desc "Near Field Communication (NFC) tools under POSIX systems"
homepage "https://github.com/nfc-tools/nfcutils"
url "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/nfc-tools/nfcutils-0.3.2.tar.g... |
0x07CB/linuxbrew-core | Formula/mlogger.rb | <reponame>0x07CB/linuxbrew-core<filename>Formula/mlogger.rb
class Mlogger < Formula
desc "Log to syslog from the command-line"
homepage "https://github.com/nbrownus/mlogger"
url "https://github.com/nbrownus/mlogger/archive/v1.2.0.tar.gz"
sha256 "141bb9af13a8f0e865c8509ac810c10be4e21f14db5256ef5c7a6731b490bf32"
... |
0x07CB/linuxbrew-core | Formula/libsmi.rb | <reponame>0x07CB/linuxbrew-core
class Libsmi < Formula
desc "Library to Access SMI MIB Information"
homepage "https://www.ibr.cs.tu-bs.de/projects/libsmi/"
url "https://www.ibr.cs.tu-bs.de/projects/libsmi/download/libsmi-0.5.0.tar.gz"
mirror "https://www.mirrorservice.org/sites/distfiles.macports.org/libsmi/lib... |
0x07CB/linuxbrew-core | Formula/microsocks.rb | class Microsocks < Formula
desc "Tiny, portable SOCKS5 server with very moderate resource usage"
homepage "https://github.com/rofl0r/microsocks"
url "https://github.com/rofl0r/microsocks/archive/v1.0.2.tar.gz"
sha256 "5ece77c283e71f73b9530da46302fdb4f72a0ae139aa734c07fe532407a6211a"
license "MIT"
head "http... |
0x07CB/linuxbrew-core | Formula/mtools.rb | class Mtools < Formula
desc "Tools for manipulating MSDOS files"
homepage "https://www.gnu.org/software/mtools/"
url "https://ftp.gnu.org/gnu/mtools/mtools-4.0.35.tar.gz"
mirror "https://ftpmirror.gnu.org/mtools/mtools-4.0.35.tar.gz"
sha256 "27af3ebb1b5c6c74ca0b8276bf21b70c3fb497dd8eb1b605d74df7a761aedef5"
... |
0x07CB/linuxbrew-core | Formula/liboil.rb | class Liboil < Formula
desc "C library of simple functions optimized for various CPUs"
homepage "https://wiki.freedesktop.org/liboil/"
url "https://liboil.freedesktop.org/download/liboil-0.3.17.tar.gz"
sha256 "105f02079b0b50034c759db34b473ecb5704ffa20a5486b60a8b7698128bfc69"
livecheck do
url "https://lib... |
0x07CB/linuxbrew-core | Formula/eprover.rb | <filename>Formula/eprover.rb
class Eprover < Formula
desc "Theorem prover for full first-order logic with equality"
homepage "https://eprover.org/"
url "https://wwwlehre.dhbw-stuttgart.de/~sschulz/WORK/E_DOWNLOAD/V_2.6/E.tgz"
sha256 "aa1f3deaa229151e60d607560301a46cd24b06a51009e0a9ba86071e40d73edd"
license an... |
0x07CB/linuxbrew-core | Formula/linklint.rb | <filename>Formula/linklint.rb
class Linklint < Formula
desc "Link checker and web site maintenance tool"
homepage "http://linklint.org"
url "http://linklint.org/download/linklint-2.3.5.tar.gz"
sha256 "ecaee456a3c2d6a3bd18a580d6b09b6b7b825df3e59f900270fe3f84ec3ac9c7"
livecheck do
url "http://linklint.org/... |
0x07CB/linuxbrew-core | Formula/libsvg.rb | <filename>Formula/libsvg.rb
class Libsvg < Formula
desc "Library for SVG files"
homepage "https://cairographics.org/"
url "https://cairographics.org/snapshots/libsvg-0.1.4.tar.gz"
sha256 "4c3bf9292e676a72b12338691be64d0f38cd7f2ea5e8b67fbbf45f1ed404bc8f"
license "LGPL-2.1-or-later"
revision 1
livecheck do... |
0x07CB/linuxbrew-core | Formula/cssembed.rb | class Cssembed < Formula
desc "Automatic data URI embedding in CSS files"
homepage "https://www.nczonline.net/blog/2009/11/03/automatic-data-uri-embedding-in-css-files/"
url "https://github.com/downloads/nzakas/cssembed/cssembed-0.4.5.jar"
sha256 "8955016c0d32de8755d9ee33d365d1ad658a596aba48537a810ce62f3d32a1af... |
0x07CB/linuxbrew-core | Formula/git-annex-remote-rclone.rb | class GitAnnexRemoteRclone < Formula
desc "Use rclone supported cloud storage with git-annex"
homepage "https://github.com/DanielDent/git-annex-remote-rclone"
url "https://github.com/DanielDent/git-annex-remote-rclone/archive/v0.6.tar.gz"
sha256 "fb9bb77c6dd30dad4966926af87f63be92ef442cfeabcfd02202c657f40439d0"... |
0x07CB/linuxbrew-core | Formula/helib.rb | <filename>Formula/helib.rb
class Helib < Formula
desc "Implementation of homomorphic encryption"
homepage "https://github.com/homenc/HElib"
url "https://github.com/homenc/HElib/archive/v2.2.1.tar.gz"
sha256 "cbe030c752c915f1ece09681cadfbe4f140f6752414ab000b4cf076b6c3019e4"
license "Apache-2.0"
bottle do
... |
0x07CB/linuxbrew-core | Formula/gluon.rb | <reponame>0x07CB/linuxbrew-core
class Gluon < Formula
desc "Static, type inferred and embeddable language written in Rust"
homepage "https://gluon-lang.org"
url "https://github.com/gluon-lang/gluon/archive/v0.17.2.tar.gz"
sha256 "8fc8cc2211cff7a3d37a64c0b1f0901767725d3c2c26535cb9aabbfe921ba18e"
license "MIT"
... |
0x07CB/linuxbrew-core | Formula/sdlpop.rb | <reponame>0x07CB/linuxbrew-core
class Sdlpop < Formula
desc "Open-source port of Prince of Persia"
homepage "https://github.com/NagyD/SDLPoP"
url "https://github.com/NagyD/SDLPoP/archive/v1.22.tar.gz"
sha256 "1af170f7f6def61b2ab9c3a9227feca335461d224faa99f3578fc09115ac505c"
license "GPL-3.0-or-later"
bottl... |
0x07CB/linuxbrew-core | Formula/sdl_sound.rb | class SdlSound < Formula
desc "Library to decode several popular sound file formats"
homepage "https://icculus.org/SDL_sound/"
url "https://icculus.org/SDL_sound/downloads/SDL_sound-1.0.3.tar.gz"
mirror "https://deb.debian.org/debian/pool/main/s/sdl-sound1.2/sdl-sound1.2_1.0.3.orig.tar.gz"
sha256 "3999fd0bbb4... |
0x07CB/linuxbrew-core | Formula/monolith.rb | class Monolith < Formula
desc "CLI tool for saving complete web pages as a single HTML file"
homepage "https://github.com/Y2Z/monolith"
url "https://github.com/Y2Z/monolith/archive/v2.6.1.tar.gz"
sha256 "dc08e6fa786c2cdfc7a8f6c307022c368d875c172737b695222c2b2f3bfe2a72"
license "CC0-1.0"
bottle do
sha25... |
0x07CB/linuxbrew-core | Formula/brew-gem.rb | <reponame>0x07CB/linuxbrew-core
class BrewGem < Formula
desc "Install RubyGems as Homebrew formulae"
homepage "https://github.com/sportngin/brew-gem"
url "https://github.com/sportngin/brew-gem/archive/v1.1.1.tar.gz"
sha256 "affa68105dcabc5c8b4832cf70ee2b35c1fbf19496173753645bda496d9b0a34"
license "MIT"
head... |
0x07CB/linuxbrew-core | Formula/surfraw.rb | <reponame>0x07CB/linuxbrew-core<filename>Formula/surfraw.rb
class Surfraw < Formula
desc "Shell Users' Revolutionary Front Rage Against the Web"
homepage "https://packages.debian.org/sid/surfraw"
url "https://ftp.openbsd.org/pub/OpenBSD/distfiles/surfraw-2.3.0.tar.gz"
sha256 "ad0420583c8cdd84a31437e59536f8070f1... |
0x07CB/linuxbrew-core | Formula/optipng.rb | class Optipng < Formula
desc "PNG file optimizer"
homepage "https://optipng.sourceforge.io/"
url "https://downloads.sourceforge.net/project/optipng/OptiPNG/optipng-0.7.7/optipng-0.7.7.tar.gz"
sha256 "4f32f233cef870b3f95d3ad6428bfe4224ef34908f1b42b0badf858216654452"
license "Zlib"
head "http://hg.code.sf.net... |
0x07CB/linuxbrew-core | Formula/gst-editing-services.rb | class GstEditingServices < Formula
desc "GStreamer Editing Services"
homepage "https://gstreamer.freedesktop.org/modules/gst-editing-services.html"
url "https://gstreamer.freedesktop.org/src/gst-editing-services/gst-editing-services-1.18.4.tar.xz"
sha256 "4687b870a7de18aebf50f45ff572ad9e0138020e3479e02a6f056a0c... |
0x07CB/linuxbrew-core | Formula/eralchemy.rb | class Eralchemy < Formula
include Language::Python::Virtualenv
desc "Simple entity relation (ER) diagrams generation"
homepage "https://github.com/Alexis-benoist/eralchemy"
url "https://files.pythonhosted.org/packages/87/40/07b58c29406ad9cc8747e567e3e37dd74c0a8756130ad8fd3a4d71c796e3/ERAlchemy-1.2.10.tar.gz"
... |
0x07CB/linuxbrew-core | Formula/libnfnetlink.rb | <gh_stars>100-1000
class Libnfnetlink < Formula
desc "Low-level library for netfilter related communication"
homepage "https://www.netfilter.org/projects/libnfnetlink"
url "https://www.netfilter.org/projects/libnfnetlink/files/libnfnetlink-1.0.1.tar.bz2"
sha256 "f270e19de9127642d2a11589ef2ec97ef90a649a74f56cf9a... |
0x07CB/linuxbrew-core | Formula/libmng.rb | class Libmng < Formula
desc "MNG/JNG reference library"
homepage "https://libmng.com/"
url "https://downloads.sourceforge.net/project/libmng/libmng-devel/2.0.3/libmng-2.0.3.tar.gz"
sha256 "cf112a1fb02f5b1c0fce5cab11ea8243852c139e669c44014125874b14b7dfaa"
license "Zlib"
bottle do
sha256 cellar: :any, ... |
0x07CB/linuxbrew-core | Formula/joshua.rb | <reponame>0x07CB/linuxbrew-core
class Joshua < Formula
desc "Statistical machine translation decoder"
homepage "https://cwiki.apache.org/confluence/display/JOSHUA/"
url "https://cs.jhu.edu/~post/files/joshua-6.0.5.tgz"
sha256 "972116a74468389e89da018dd985f1ed1005b92401907881a14bdcc1be8bd98a"
revision 1
liv... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.