Skip to content

Commit 76dd26c

Browse files
author
Erik Isaksen
committed
[bundle] fixing initial gem bundle
1 parent b7850ec commit 76dd26c

File tree

33 files changed

+15
-28
lines changed

33 files changed

+15
-28
lines changed

.gitignore

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,15 @@
1-
## MAC OS
21
.DS_Store
32

4-
## TEXTMATE
5-
*.tmproj
6-
tmtags
7-
8-
## EMACS
93
*~
104
\#*
115
.\#*
126

13-
## RUBYMINE
147
.idea
15-
8+
.sass-cache
169
## VIM
1710
*.swp
1811
tags
1912

20-
## PROJECT::GENERAL
21-
coverage
2213
rdoc
2314
pkg
2415
*.log
@@ -29,10 +20,6 @@ tmp
2920
doc
3021
Gemfile.lock
3122
Gemfile.local
32-
cucumber-pro.log
3323

3424
## Ruby versioniser
3525
.ruby-version
36-
37-
# Temp files of yar
38-
.yardoc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$:.push File.expand_path("../lib", __FILE__)
2-
require "atomic_particles/version"
2+
require "ad_particles/version"
33

44
Gem::Specification.new do |s|
55
s.add_development_dependency "css_parser", "~> 1.4.1"
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
1010
s.add_runtime_dependency "thor", "~> 0.19.1"
1111
s.authors = [ "Erik Isaksen" ]
1212
s.description = <<-DESC
13-
atomic_particles is SASS Module that defines a base set of variables that can used as a
13+
ad_particles is SASS Module that defines a base set of variables that can used as a
1414
standard in component styling & consistent theming. Particles, although not
1515
originally discussed by Atomic Design creator Brad Frost, are the abstract &
1616
configuration structures that shape the Atomic design structure from the ground
@@ -19,12 +19,12 @@ Gem::Specification.new do |s|
1919
s.email = "[email protected]"
2020
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
2121
s.files = `git ls-files`.split("\n")
22-
s.homepage = "https://thewebplatform.github.io/atomic_particles"
22+
s.homepage = "https://github.com/thewebplatform/ad-particles"
2323
s.license = "MIT"
24-
s.name = "atomic_particles"
24+
s.name = "ad_particles"
2525
s.platform = Gem::Platform::RUBY
2626
s.require_paths = ["lib"]
2727
s.summary = "A SASS Module that defines a base set of variables"
28-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
29-
s.version = AtomicParticles::VERSION
28+
s.test_files = `git ls-files -- {spec}/*`.split("\n")
29+
s.version = AtomicDesignParticles::VERSION
3030
end

lib/atomic_particles.rb renamed to lib/ad_particles.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require "atomic_particles/generator"
1+
require "ad_particles/generator"
22

33
atomic_path = File.expand_path("../../atomic", __FILE__)
44

lib/atomic_particles/generator.rb renamed to lib/ad_particles/generator.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
require "atomic_particles/version"
1+
require "ad_particles/version"
22
require "fileutils"
33
require "thor"
44
require "pathname"
55

6-
module AtomicParticles
6+
module AtomicDesignParticles
77
class Generator < Thor
88
map ["-v", "--version"] => :version
99

@@ -32,7 +32,7 @@ def update
3232

3333
desc "version", "Show Atomic Particles version"
3434
def version
35-
say "Atomic Particles #{AtomicParticles::VERSION}"
35+
say "Atomic Design Particles #{AtomicDesignParticles::VERSION}"
3636
end
3737

3838
private

lib/ad_particles/version.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module AtomicDesignParticles
2+
VERSION = "0.1.0"
3+
end

lib/atomic_particles/version.rb

-3
This file was deleted.

spec/spec_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
33
$LOAD_PATH.unshift(File.dirname(__FILE__))
44
require "rspec"
5-
require "atomic_particles"
5+
require "ad_particles"
66
require "css_parser"
77
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
88

0 commit comments

Comments
 (0)