A Pen by Shailesh Gupta on CodePen.
This file contains hidden or 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
:compileDebugJavaNote: /Users/shaileshgupta/ionic/workplace_user/platforms/android/src/org/apache/cordova/splashscreen/SplashScreen.java uses or overrides a deprecated API. | |
Note: Recompile with -Xlint:deprecation for details. | |
Note: /Users/shaileshgupta/ionic/workplace_user/platforms/android/src/cordova/plugins/Diagnostic.java uses unchecked or unsafe operations. | |
Note: Recompile with -Xlint:unchecked for details. | |
:preDexDebug | |
:dexDebug | |
UNEXPECTED TOP-LEVEL EXCEPTION: | |
com.android.dex.DexException: Multiple dex files define Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl; | |
at com.android.dx.merge.DexMerger.readSortableTypes(DexMerger.java:579) |
POST http://115.112.249.153/EmbibeDemo/service1.asmx
Request
{
"lead":{
"phone_number": "9876543210",
"cin": "4e9580e4572980347598",
"priority": "P1"
}
This file contains hidden or 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
json.(@user, :id, :name, :image_url, :mobile_number, :email, :session_token, :display_currency, :verified) |
This file contains hidden or 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
describe "when transactionable is not present" do | |
before { @transaction.transactionable = "" } | |
it { should_not be_valid } | |
end |
This file contains hidden or 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
class Account < ActiveRecord::Base | |
self.inheritance_column = nil # workaround using type as column type | |
belongs_to :user | |
validates :type, inclusion: { in: Constants::AccountTypes }, allow_nil: true | |
validates :currency, inclusion: { in: Constants::CurrencyCodes }, allow_nil: true | |
validates :user_id, presence: true | |
end |
This file contains hidden or 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
source 'https://rubygems.org' | |
ruby '2.0.0' | |
gem 'rails', '4.0.3' | |
gem 'bcrypt-ruby', '3.1.2' | |
gem 'faker', '1.1.2' | |
gem 'will_paginate', '3.0.4' | |
group :development, :test do | |
gem 'sqlite3', '1.3.8' |
Ruby
bitcoin-ruby: Bitcoin utils and protocol in ruby
buttercoin: Opensource Bitcoin Exchange Software
bitcoin-client: Ruby library to the complete Bitcoin JSON-RPC API.
bitcoin-central: Bitcoin trading platform made in Ruby On Rails. (Documentation)
This file contains hidden or 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
Some of the defaults have changed in Capybara 2.1. If you're experiencing failures, | |
please revert to the old behaviour by setting: | |
Capybara.configure do |config| | |
config.match = :one | |
config.exact_options = true | |
config.ignore_hidden_elements = true | |
config.visible_text_only = true | |
end |