├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── backfill.rb ├── clear_registry.rb ├── executive_order.rb ├── executive_order_processor.rb ├── executive_order_registry.rb ├── federal_register.rb ├── process_executive_orders_from_today.rb ├── test.rb └── twitter_account.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/Rakefile -------------------------------------------------------------------------------- /backfill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/backfill.rb -------------------------------------------------------------------------------- /clear_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/clear_registry.rb -------------------------------------------------------------------------------- /executive_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/executive_order.rb -------------------------------------------------------------------------------- /executive_order_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/executive_order_processor.rb -------------------------------------------------------------------------------- /executive_order_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/executive_order_registry.rb -------------------------------------------------------------------------------- /federal_register.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/federal_register.rb -------------------------------------------------------------------------------- /process_executive_orders_from_today.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/process_executive_orders_from_today.rb -------------------------------------------------------------------------------- /test.rb: -------------------------------------------------------------------------------- 1 | puts "Hello! You are running Ruby #{RUBY_VERSION}." 2 | -------------------------------------------------------------------------------- /twitter_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicard/exec_orders/HEAD/twitter_account.rb --------------------------------------------------------------------------------