はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    WWDC25

『Railsware Product Studio』

  • 人気
  • 新着
  • すべて
  • Mocking ES6 module import with and without Dependency Injection | Railsware Blog

    3 users

    railsware.com

    ES6 module system is a great addition to JavaScript language, but sometimes it’s at odds with writing tests, because you need to mock imported function. Usual solution is to use Dependency Injection akin to what is used in Angular.JS. You need to wrap the whole module into some function and explicitly pass required dependencies. While such approach works fine, it mangles code and adds an additiona

    • 暮らし
    • 2017/07/02 20:24
    • Creation of pure Swift module | Railsware Blog

      12 users

      railsware.com

      If you have already started playing with swift, you probably thought about how to include third party libraries into your project or how to distribute yours. Apple provides a mechanism to distribute code via frameworks (eventually, for iOS too), so making a custom framework, which will include both ObjC and Swift code is very easy. But let’s dig deeper and create a pure Swift module, like apple do

      • テクノロジー
      • 2014/07/02 08:11
      • swift
      • Library
      • Dependency Injection in Objective-C with BloodMagic | Railsware Blog

        4 users

        railsware.com

        MVC is not sufficientEvery day iOS apps become more cumbersome and bulky, which makes MVC approach not sufficient. We are seeing more and more classes for different purposes: app logic extracts into services, models extends with decorators, view separates into partials and so on. And – what is more important – there are now a lot of dependencies that need to be managed somehow. Singleton is often

        • テクノロジー
        • 2013/12/28 15:42
        • ios
        • API with Ruby on Rails: useful tricks | Railsware Blog

          4 users

          railsware.com

          This article is about gotchas you should be aware of while building your API with Ruby on Rails. Controller tricks: API on MetalSooner or later each Rails developer come to a point when he wants to build his first API. Among the first things you have to take care of are your controllers. If you want your API to be fast (and I bet you do) then you should consider using ActionController::Metal. The

          • テクノロジー
          • 2013/04/09 02:18
          • api
          • rails
          • Blog by Railsware

            3 users

            railsware.com

            Railsware Blogon product management, engineering, design, culture and many more... Over the past 17 years, Railsware has grown from a team of four to over 200 craftspeople. Guided by our values of high-quality craftsmanship, we ditched the initial outsourcing model early to build a product studio instead. And now Railswarians build damn good products both in our offline workspaces in … Autumn is b

            • 暮らし
            • 2013/02/04 13:17
            • blog
            • Rails 3.2.9 through associations issues | Railsware Blog

              3 users

              railsware.com

              Recent 3.2.9 release bugfix has brought an issue for through associations. inverse_of usage can solve the problem only partially (polymorphic associations are still affected). UPDATE: patch that introduced this issue has just been reverted in rails master. Few days ago Rails 3.2.9 was released. Among the bugfixes a fix for through associations is present, and since 3.2.9 join model instances are b

              • テクノロジー
              • 2012/11/22 21:32
              • rails
              • PostgreSQL most useful extensions | Railsware Blog

                10 users

                railsware.com

                Hello my dear friends. Today we will talk about PostgreSQL and most useful modules for this database.PostgreSQL is an object-relational database management system (ORDBMS). The main features of PostgreSQL are: database support of virtually unlimited size; powerful and reliable mechanisms for transactional replication; built-in extensible programming languages; inheritance; easy expandability by ex

                • テクノロジー
                • 2012/09/07 11:33
                • PostgreSQL
                • database
                • *あとで
                • Ruby 2.0 Enumerable::Lazy | Railsware Blog

                  6 users

                  railsware.com

                  My Enumerable::Lazy patch was accepted into ruby trunk few days ago. So, in ruby 2.0, we can go like this: a = [1,2,3,4,2,5].lazy.map { |x| x * 10 }.select { |x| x > 30 } #=> no evaluation a.to_a #=> [40, 50], evaluation performed - no intermediate arrays generated. Why?Ruby is awesome language, and while being an imperative one, still allows us to write an elegant, functional programming style co

                  • テクノロジー
                  • 2012/08/11 14:51
                  • ruby2
                  • ruby
                  • Accessing application session in Capybara | Railsware Blog

                    5 users

                    railsware.com

                    TroubleThere are some cases when you may need to access application session in your tests: User signup or registration flow is too long.Application use another backend and store result into session.In each story you must repeat the same steps. You can actually use some shared code but it does not speed-up tests anyway. Nowadays if you want to access session in cucumber/capybara acceptance test you

                    • テクノロジー
                    • 2012/07/29 10:39
                    • Rails
                    • Advanced server definitions in Capistrano | Railsware Blog

                      11 users

                      railsware.com

                      What if you have several servers with different users, ssh-keys, and even port numbers? How to manage all this stuff flexibly ? This tutorial covers poorly documented Capistrano features for advanced servers and roles configuration. Many of them obtained via digging into Capistrano sources. This article covers following Capistrano topics: roles configurationserver configurationThe way HOSTS, ROLES

                      • テクノロジー
                      • 2012/07/11 23:21
                      • capistrano
                      • Railsware Product Studio

                        3 users

                        railsware.com

                        Products If you’re an investor or Railsware products user, check out Mailtrap, Coupler, and SmartChecklist Services If you're an entrepreneur looking for a tech partner, we will help you to succeed with your product

                        • テクノロジー
                        • 2012/01/06 08:10

                        このページはまだ
                        ブックマークされていません

                        このページを最初にブックマークしてみませんか?

                        『Railsware Product Studio』の新着エントリーを見る

                        キーボードショートカット一覧

                        j次のブックマーク

                        k前のブックマーク

                        lあとで読む

                        eコメント一覧を開く

                        oページを開く

                        はてなブックマーク

                        • 総合
                        • 一般
                        • 世の中
                        • 政治と経済
                        • 暮らし
                        • 学び
                        • テクノロジー
                        • エンタメ
                        • アニメとゲーム
                        • おもしろ
                        • アプリ・拡張機能
                        • 開発ブログ
                        • ヘルプ
                        • お問い合わせ
                        • ガイドライン
                        • 利用規約
                        • プライバシーポリシー
                        • 利用者情報の外部送信について
                        • ガイドライン
                        • 利用規約
                        • プライバシーポリシー
                        • 利用者情報の外部送信について

                        公式Twitter

                        • 公式アカウント
                        • ホットエントリー

                        はてなのサービス

                        • はてなブログ
                        • はてなブログPro
                        • 人力検索はてな
                        • はてなブログ タグ
                        • はてなニュース
                        • ソレドコ
                        • App Storeからダウンロード
                        • Google Playで手に入れよう
                        Copyright © 2005-2025 Hatena. All Rights Reserved.
                        設定を変更しましたx