Skip to content

Commit ad5762b

Browse files
committed
Rename gem as next_rails to be shipped ASAP
I really need to have some of the changes that have been submitted to https://github.com/clio/ten_years_rails, so I've decided to launch a gem so that I can use it in an upcoming workshop
1 parent 00774bd commit ad5762b

File tree

12 files changed

+22
-22
lines changed

12 files changed

+22
-22
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ source "https://rubygems.org"
22

33
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
44

5-
# Specify your gem's dependencies in ten_years_rails.gemspec
5+
# Specify your gem's dependencies in next_rails.gemspec
66
gemspec

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
ten_years_rails (0.2.0)
4+
next_rails (0.2.0)
55
actionview
66
colorize (>= 0.8.1)
77

@@ -63,9 +63,9 @@ PLATFORMS
6363

6464
DEPENDENCIES
6565
bundler (~> 1.16)
66+
next_rails!
6667
rake (~> 10.0)
6768
rspec (~> 3.0)
68-
ten_years_rails!
6969
timecop (~> 0.9.1)
7070

7171
BUNDLED WITH

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ next rails s # Start server using Gemfile.next
8080
Add this line to your application's Gemfile:
8181

8282
```ruby
83-
gem 'ten_years_rails'
83+
gem 'next_rails'
8484
```
8585

8686
And then execute:
@@ -89,7 +89,7 @@ And then execute:
8989

9090
Or install it yourself as:
9191

92-
$ gem install ten_years_rails
92+
$ gem install next_rails
9393

9494
## License
9595

bin/console

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env ruby
22

33
require "bundler/setup"
4-
require "ten_years_rails"
4+
require "next_rails"
55

66
# You can add fixtures and/or initialization code here to make experimenting
77
# with your gem easier. You can also use a different console, if you like.

exe/bundle_report

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
at_exit do
77
require "optparse"
8-
require "ten_years_rails"
8+
require "next_rails"
99

1010
options = {}
1111
option_parser = OptionParser.new do |opts|

lib/next_rails.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
require "next_rails/gem_info"
2+
require "next_rails/version"
3+
require "next_rails/bundle_report"
4+
require "deprecation_tracker"
5+
6+
module TenYearsRails
7+
# Your code goes here...
8+
end
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module TenYearsRails
2-
VERSION = "0.2.0"
2+
VERSION = "1.0.0"
33
end

lib/ten_years_rails.rb

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)